From 7737c1a11778a236592ff3677d54a44776fd440f Mon Sep 17 00:00:00 2001 From: skyouc <958836976@qq.com> Date: 星期六, 11 十月 2025 15:15:46 +0800 Subject: [PATCH] 容器管理初始化功能 --- rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java index 1ea353c..65ac662 100644 --- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java +++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java @@ -8,6 +8,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.vincent.rsf.server.system.entity.DictData; import com.vincent.rsf.server.system.service.DictDataService; +import lombok.experimental.Accessors; import org.springframework.format.annotation.DateTimeFormat; import java.text.SimpleDateFormat; import java.util.Date; @@ -24,6 +25,7 @@ import java.util.Date; @Data +@Accessors(chain = true) @TableName("man_bas_container") public class BasContainer implements Serializable { @@ -35,6 +37,10 @@ @ApiModelProperty(value= "id") @TableId(value = "id", type = IdType.AUTO) private Long id; + + + @ApiModelProperty("鍞竴缂栫爜") + private String code; /** * 瀹瑰櫒绫诲瀷 @@ -58,7 +64,6 @@ * 鏄惁鍒犻櫎 1: 鏄� 0: 鍚� */ @ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄� 0: 鍚� ") - @TableLogic private Integer deleted; /** -- Gitblit v1.9.1