前后端修改
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.klp.domain.vo;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 实际库区/库位导入模板
|
||||
*/
|
||||
@Data
|
||||
@ExcelIgnoreUnannotated
|
||||
public class WmsActualWarehouseImportVo {
|
||||
|
||||
@ExcelProperty("一级编码")
|
||||
private String levelOneCode;
|
||||
|
||||
@ExcelProperty("一级名称")
|
||||
private String levelOneName;
|
||||
|
||||
@ExcelProperty("一级排序号")
|
||||
private Long levelOneSort;
|
||||
|
||||
@ExcelProperty("二级编码")
|
||||
private String levelTwoCode;
|
||||
|
||||
@ExcelProperty("二级名称")
|
||||
private String levelTwoName;
|
||||
|
||||
@ExcelProperty("二级排序号")
|
||||
private Long levelTwoSort;
|
||||
|
||||
@ExcelProperty("三级编码")
|
||||
private String levelThreeCode;
|
||||
|
||||
@ExcelProperty("三级名称")
|
||||
private String levelThreeName;
|
||||
|
||||
@ExcelProperty("三级排序号")
|
||||
private Long levelThreeSort;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.klp.domain.vo;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 树形结构视图对象,用于一次性返回三级目录
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class WmsActualWarehouseTreeVo extends WmsActualWarehouseVo {
|
||||
|
||||
private List<WmsActualWarehouseTreeVo> children = new ArrayList<>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user