From e299835e5ccd7aba40c8d8f8e4bf190caad50afa Mon Sep 17 00:00:00 2001 From: zhoushihao <zsh19950802@163.com> Date: 星期五, 24 五月 2024 12:24:39 +0800 Subject: [PATCH] 更改调用基础类方法小写 --- hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/entity/BigStorageCage.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 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 f145de5..5c89cc9 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 @@ -3,6 +3,8 @@ import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; @@ -17,6 +19,7 @@ * @author zhoush * @since 2024-03-27 */ +@Api(description = "澶х悊鐗囩") @Data @EqualsAndHashCode(callSuper = false) public class BigStorageCage implements Serializable { @@ -26,29 +29,35 @@ /** * 澶х悊鐗囩琛╥d */ + @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 String enableState; /** * 鍓╀綑瀹藉害 */ + @ApiModelProperty(value = "鍓╀綑瀹藉害", position = 6) private Integer remainWidth; + @ApiModelProperty(hidden = true) @TableField(exist = false) private List<BigStorageCageDetails> bigStorageCageDetails; -- Gitblit v1.8.0