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; } }