From cd04de994d4fb860d92be7afbb4fd3e500d7d8c3 Mon Sep 17 00:00:00 2001 From: zhoushihao <zsh19950802@163.com> Date: 星期一, 29 七月 2024 14:45:25 +0800 Subject: [PATCH] 大理片笼进出片任务:出片/调度失败 将钢化小片表的状态置为破损,调度任务因为钢化小片表不存在,空更新 --- hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstoragetask/entity/BigStorageCageFeedTask.java | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 50 insertions(+), 4 deletions(-) diff --git a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstoragetask/entity/BigStorageCageFeedTask.java b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstoragetask/entity/BigStorageCageFeedTask.java index a9f3743..d539f7c 100644 --- a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstoragetask/entity/BigStorageCageFeedTask.java +++ b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstoragetask/entity/BigStorageCageFeedTask.java @@ -2,9 +2,13 @@ import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; -import java.io.Serializable; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.Date; /** * <p> @@ -14,22 +18,64 @@ * @author zhoush * @since 2024-04-16 */ +@ApiModel(description = "<p> 鐞嗙墖杩涚浠诲姟 </p>") @Data @EqualsAndHashCode(callSuper = false) public class BigStorageCageFeedTask implements Serializable { private static final long serialVersionUID = 1L; - @TableId(value = "id", type = IdType.AUTO) + /** + * 涓婚敭id + */ + @ApiModelProperty(value = "涓婚敭id", position = 2) + @TableId(value = "id", type = IdType.AUTO) private Long id; - private Integer tragetSlot; + /** + * 鐜荤拑id + */ + @ApiModelProperty(value = "鐜荤拑id", position = 3) + private String glassId; + /** + * 鐩爣浣嶇疆 + */ + @ApiModelProperty(value = "鐩爣浣嶇疆", position = 4) + private int targetSlot; + + /** + * 鐜荤拑绫诲瀷 + */ + @ApiModelProperty(value = "鐜荤拑绫诲瀷", position = 5) private Integer taskType; + /** + * 浠诲姟绫诲瀷 + */ + @ApiModelProperty(value = "浠诲姟绫诲瀷", position = 6) private Integer taskState; - private Integer line; + /** + * 绾胯矾 + */ + @ApiModelProperty(value = "绾胯矾", position = 7) + private int line; + /** + * 瀹藉害 + */ + @ApiModelProperty(value = "瀹藉害", position = 8) + private Integer width; + /** + * 楂樺害 + */ + @ApiModelProperty(value = "楂樺害", position = 8) + private Integer height; + /** + * 鍒涘缓鏃堕棿 + */ + @ApiModelProperty(value = "鍒涘缓鏃堕棿", position = 8) + private Date createTime; } -- Gitblit v1.8.0