库位子表管理添加层字段
This commit is contained in:
parent
fb56f2093a
commit
5d05355f12
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user