From c6cb57f307b0c62a05cac78cfd828c313f10e611 Mon Sep 17 00:00:00 2001 From: zhoushihao <zsh19950802@163.com> Date: 星期二, 15 四月 2025 10:58:25 +0800 Subject: [PATCH] 1、卧式理片笼新增任务逻辑 2、入参时间加入时区 --- hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java | 48 +++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 45 insertions(+), 3 deletions(-) diff --git a/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java b/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java index 3f6aabf..3d5c70c 100644 --- a/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java +++ b/hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java @@ -24,21 +24,63 @@ 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; -- Gitblit v1.8.0