1
zhang
10 天以前 24f6766a113090fb97f9dd399586b61a364702ae
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
80
81
82
83
package com.zy.acs.manager.manager.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("man_func_task")
public class FuncTask {
 
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value= "编号")
    private String uuid;
 
    @ApiModelProperty(value= "任务id")
    private Long taskId;
 
 
    @ApiModelProperty(value= "任务进度")
    private Long funcTaskSts;
 
    //@ApiModelProperty(value= "任务类型")
    //private Long taskType;
 
    @ApiModelProperty(value= "AGV")
    private Long agvId;
 
    @ApiModelProperty(value= "功能站id")
    private Long funcStaId;
 
 
 
 
    @ApiModelProperty(value= "状态 1: 正常  0: 冻结  ")
    private Integer status;
 
    @ApiModelProperty(value= "是否删除 1: 是  0: 否  ")
    private Integer deleted;
 
    @ApiModelProperty(value= "租户")
    private Long tenantId;
 
    @ApiModelProperty(value= "添加人员")
    private Long createBy;
 
    @ApiModelProperty(value= "添加时间")
    private Date createTime;
 
    @ApiModelProperty(value= "修改人员")
    private Long updateBy;
 
    @ApiModelProperty(value= "修改时间")
    private Date updateTime;
 
    @ApiModelProperty(value= "备注")
    private String memo;
 
    public FuncTask() {
    }
 
    public FuncTask(String uuid, Long taskId, Long funcTaskSts, Long agvId, Long funcStaId, Integer status, Integer deleted, Long tenantId, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) {
        this.uuid = uuid;
        this.taskId = taskId;
        this.funcTaskSts = funcTaskSts;
        this.agvId = agvId;
        this.funcStaId = funcStaId;
        this.status = status;
        this.deleted = deleted;
        this.tenantId = tenantId;
        this.createBy = createBy;
        this.createTime = createTime;
        this.updateBy = updateBy;
        this.updateTime = updateTime;
        this.memo = memo;
    }
}