diff --git a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemPageReqVO.java b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemPageReqVO.java index 50ea5e05..6806a08d 100644 --- a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemPageReqVO.java +++ b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemPageReqVO.java @@ -1,5 +1,6 @@ package cn.iocoder.yudao.module.wms.controller.admin.depotlocationitem.vo; +import com.alibaba.excel.annotation.ExcelProperty; import lombok.*; import java.util.*; import io.swagger.v3.oas.annotations.media.Schema; @@ -24,6 +25,10 @@ public class DepotLocationItemPageReqVO extends PageParam { @Schema(description = "行") private Integer rowNum; + @Schema(description = "层") + private Integer layerNum; + + @Schema(description = "上边框json{routeCheck: true,type: top}") private String top; diff --git a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemRespVO.java b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemRespVO.java index e4e3e431..d9822cfc 100644 --- a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemRespVO.java +++ b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemRespVO.java @@ -29,6 +29,11 @@ public class DepotLocationItemRespVO { @ExcelProperty("行") private Integer rowNum; + @ExcelProperty("层") + @Schema(description = "层") + private Integer layerNum; + + @Schema(description = "上边框json{routeCheck: true,type: top}") @ExcelProperty("上边框json{routeCheck: true,type: top}") private String top; diff --git a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemSaveReqVO.java b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemSaveReqVO.java index 0ca39485..59b7f721 100644 --- a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemSaveReqVO.java +++ b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/controller/admin/depotlocationitem/vo/DepotLocationItemSaveReqVO.java @@ -22,6 +22,9 @@ public class DepotLocationItemSaveReqVO { @Schema(description = "行") private Integer rowNum; + @Schema(description = "层") + private Integer layerNum; + @Schema(description = "上边框json{routeCheck: true,type: top}") private String top; diff --git a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/dal/dataobject/depotlocationitem/DepotLocationItemDO.java b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/dal/dataobject/depotlocationitem/DepotLocationItemDO.java index 550001ab..134fc0f8 100644 --- a/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/dal/dataobject/depotlocationitem/DepotLocationItemDO.java +++ b/yudao-module-wms/yudao-module-wms-biz/src/main/java/cn/iocoder/yudao/module/wms/dal/dataobject/depotlocationitem/DepotLocationItemDO.java @@ -1,5 +1,6 @@ package cn.iocoder.yudao.module.wms.dal.dataobject.depotlocationitem; +import io.swagger.v3.oas.annotations.media.Schema; import lombok.*; import java.util.*; import java.time.LocalDateTime; @@ -39,6 +40,10 @@ public class DepotLocationItemDO extends BaseDO { * 行 */ private Integer rowNum; + /** + * 层 + */ + private Integer layerNum; /** * 上边框json{routeCheck: true,type:"top"} */ @@ -60,4 +65,4 @@ public class DepotLocationItemDO extends BaseDO { */ private String coordinate; -} \ No newline at end of file +}