From 093579c99049bf09ecf8e5d0f80179fde1ddc776 Mon Sep 17 00:00:00 2001 From: zhoushihao <zsh19950802@163.com> Date: 星期三, 10 七月 2024 09:49:31 +0800 Subject: [PATCH] 下片:下片任务状态字段名称修改 大理片:1、扫码任务新增确认字校验:确认字为0,请求有id的情况不处理 2、新增定时任务处理进出片任务执行过程中出现破损玻璃的情况 待完成:破损表新增功能未实现 --- 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