王飞
2025-01-23 2de56e472a41b7feb90be29a54a2d6f5a6c8762e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.hxzkappboot.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wangfei
 * @since 2024-11-26
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_task_scheduling")
@ApiModel(value="TbTaskScheduling对象", description="")
public class TbTaskScheduling implements Serializable {
 
    private static final long serialVersionUID=1L;
 
      @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "任务名称")
    @TableField("taskname")
    private String taskname;
 
    @ApiModelProperty(value = "任务内容")
    @TableField("taskcontent")
    private String taskcontent;
 
    @ApiModelProperty(value = "任务区域")
    @TableField("fencename")
    private String fencename;
 
    @ApiModelProperty(value = "绑定部门")
    @TableField("department")
    private String department;
 
    @ApiModelProperty(value = "任务开始时间")
    @TableField("begtime")
    private String begtime;
 
    @ApiModelProperty(value = "任务结束时间")
    @TableField("endtime")
    private String endtime;
 
    @ApiModelProperty(value = "预警时间")
    @TableField("yjtime")
    private String yjtime;
 
    @ApiModelProperty(value = "预警内容")
    @TableField("yjcontent")
    private String yjcontent;
 
    @ApiModelProperty(value = "任务状态")
    @TableField("taskstatus")
    private String taskstatus;
 
    @ApiModelProperty(value = "查看任务区域")
    @TableField("checktask")
    private String checktask;
 
    @TableField(exist = false)
    private List<TbPerson> personList;
 
}