库位子表管理添加层字段

This commit is contained in:
aikai 2024-08-09 15:24:04 +08:00
parent fb56f2093a
commit 5d05355f12
4 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,6 @@
package cn.iocoder.yudao.module.wms.controller.admin.depotlocationitem.vo; package cn.iocoder.yudao.module.wms.controller.admin.depotlocationitem.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.*; import lombok.*;
import java.util.*; import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
@ -24,6 +25,10 @@ public class DepotLocationItemPageReqVO extends PageParam {
@Schema(description = "") @Schema(description = "")
private Integer rowNum; private Integer rowNum;
@Schema(description = "")
private Integer layerNum;
@Schema(description = "上边框json{routeCheck: true,type: top}") @Schema(description = "上边框json{routeCheck: true,type: top}")
private String top; private String top;

View File

@ -29,6 +29,11 @@ public class DepotLocationItemRespVO {
@ExcelProperty("") @ExcelProperty("")
private Integer rowNum; private Integer rowNum;
@ExcelProperty("")
@Schema(description = "")
private Integer layerNum;
@Schema(description = "上边框json{routeCheck: true,type: top}") @Schema(description = "上边框json{routeCheck: true,type: top}")
@ExcelProperty("上边框json{routeCheck: true,type: top}") @ExcelProperty("上边框json{routeCheck: true,type: top}")
private String top; private String top;

View File

@ -22,6 +22,9 @@ public class DepotLocationItemSaveReqVO {
@Schema(description = "") @Schema(description = "")
private Integer rowNum; private Integer rowNum;
@Schema(description = "")
private Integer layerNum;
@Schema(description = "上边框json{routeCheck: true,type: top}") @Schema(description = "上边框json{routeCheck: true,type: top}")
private String top; private String top;

View File

@ -1,5 +1,6 @@
package cn.iocoder.yudao.module.wms.dal.dataobject.depotlocationitem; package cn.iocoder.yudao.module.wms.dal.dataobject.depotlocationitem;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*; import lombok.*;
import java.util.*; import java.util.*;
import java.time.LocalDateTime; import java.time.LocalDateTime;
@ -39,6 +40,10 @@ public class DepotLocationItemDO extends BaseDO {
* *
*/ */
private Integer rowNum; private Integer rowNum;
/**
*
*/
private Integer layerNum;
/** /**
* 上边框json{routeCheck: true,type:"top"} * 上边框json{routeCheck: true,type:"top"}
*/ */
@ -60,4 +65,4 @@ public class DepotLocationItemDO extends BaseDO {
*/ */
private String coordinate; private String coordinate;
} }