zhoushihao
2 天以前 4e3b8155722b66e25df3c6fd42cc586b68dea391
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java
@@ -1,5 +1,9 @@
package com.mes.edgglasstask.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -20,20 +24,65 @@
    private static final long serialVersionUID = 1L;
    /**
     * 磨边任务id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 玻璃id
     */
    @ApiModelProperty(value = "玻璃id", position = 2)
    private String glassId;
    /**
     * 宽
     */
    @ApiModelProperty(value = "宽", position = 3)
    private Integer width;
    /**
     * 高
     */
    @ApiModelProperty(value = "高", position = 4)
    private Integer height;
    /**
     * 厚度
     */
    @ApiModelProperty(value = "厚度", position = 5)
    private Integer thickness;
    private Integer glassType;
    /**
     * 膜系
     */
    @ApiModelProperty(value = "膜系", position = 6)
    private String filmsid;
    private Integer status;
    /**
     * 状态
     */
    @ApiModelProperty(value = "状态", position = 7)
    private Integer state;
    /**
     * 线路
     */
    @ApiModelProperty(value = "线路", position = 8)
    private Integer line;
    private Date time;
    /**
     * 线路
     */
    @ApiModelProperty(value = "开始时间", position = 9)
    private Date createTime;
    /**
     * 线路
     */
    @ApiModelProperty(value = "更新时间", position = 10)
    private Date updateTime;
    @TableLogic
    private int deleted;
}