From f68d3c71819feb59e7a227a5d992b059b900916c Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期五, 28 三月 2025 08:28:26 +0800 Subject: [PATCH] 修改报表,界面添加查询流程卡个数,调整推送数据到前端的间隔 --- hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/entity/BigStorageCage.java | 40 ++++++++++++++++++++++++++++++++++++---- 1 files changed, 36 insertions(+), 4 deletions(-) diff --git a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/entity/BigStorageCage.java b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/entity/BigStorageCage.java index 76fcb26..503017b 100644 --- a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/entity/BigStorageCage.java +++ b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/entity/BigStorageCage.java @@ -1,19 +1,25 @@ package com.mes.bigstorage.entity; import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; -import java.io.Serializable; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; +import java.io.Serializable; +import java.util.List; + /** * <p> - * + * * </p> * * @author zhoush * @since 2024-03-27 */ +@Api(description = "澶х悊鐗囩") @Data @EqualsAndHashCode(callSuper = false) public class BigStorageCage implements Serializable { @@ -23,28 +29,54 @@ /** * 澶х悊鐗囩琛╥d */ - @TableId(value = "id", type = IdType.AUTO) + @ApiModelProperty(value = "澶х悊鐗囩琛╥d", position = 2) + @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 璁惧id */ + @ApiModelProperty(value = "璁惧id", position = 3) private Integer deviceId; /** * 鏍呮牸鍙� */ + @ApiModelProperty(value = "鏍呮牸鍙�", position = 4) private Integer slot; + + /** + * 鏍呮牸鍙� + */ + @ApiModelProperty(value = "鏈�灏忓帤搴�", position = 5) + private Integer minThickness; + /** + * 鏍呮牸鍙� + */ + @ApiModelProperty(value = "鏈�澶у帤搴�", position = 6) + private Integer maxThickness; /** * 鍚敤鐘舵�� */ - private String enableState; + @ApiModelProperty(value = "鍚敤鐘舵��", position = 7) + private Integer enableState; /** * 鍓╀綑瀹藉害 */ + @ApiModelProperty(value = "鍓╀綑瀹藉害", position = 8) private Integer remainWidth; + /** + * 鏍煎瓙楂樺害 + */ + @ApiModelProperty(value = "鏍煎瓙楂樺害", position = 9) + private Integer slotHeight; + + @ApiModelProperty(hidden = true) + @TableField(exist = false) + private List<BigStorageCageDetails> bigStorageCageDetails; + } -- Gitblit v1.8.0