ZengTao
2024-09-20 34a5775085f5db40dfc80250e5185f5485eecfc2
hangzhoumesParent/moduleService/GlassStorageModule/src/main/java/com/mes/rawglasstask/entity/RawGlassStorageTask.java
@@ -20,14 +20,35 @@
public class RawGlassStorageTask implements Serializable {
    private static final long serialVersionUID = 1L;
//    public Object getEndTime;
      @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 任务ID
     */
    private Integer enableId;
    /**
     * 起始格子
     */
    private Integer originateSlot;
    /**
     * 目标格子
     */
    private Integer endSlot;
    /**
     * 原片数量
     */
    private String patternQuantity;
    /**
     * 任务类型
     */
    private Integer enableType;
    /**
     * 任务状态
@@ -37,7 +58,8 @@
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
    private String createTime;
}