huminmin
4 天以前 5af23a1b205787b50abdfbb3835619efa3911d60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package cn.iocoder.yudao.module.mdm.controller.admin.item.vo;
 
import cn.idev.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.math.BigDecimal;
 
/**
 * MDM 物料导入 Excel VO
 */
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class MdmItemImportExcelVO {
 
    @ExcelProperty("物料编码")
    private String code;
 
    @ExcelProperty("物料名称")
    private String name;
 
    @ExcelProperty("条码")
    private String barCode;
 
    @ExcelProperty("规格型号")
    private String specification;
 
    @ExcelProperty("物料分类编码")
    private String categoryCode;
 
    @ExcelProperty("计量单位编码")
    private String unitMeasureCode;
 
    @ExcelProperty("辅单位1编码")
    private String unitMeasureCode2;
 
    @ExcelProperty("辅单位1换算比率")
    private BigDecimal unitMeasureRate1;
 
    @ExcelProperty("辅单位2编码")
    private String unitMeasureCode3;
 
    @ExcelProperty("辅单位2换算比率")
    private BigDecimal unitMeasureRate2;
 
    @ExcelProperty("默认仓库编码")
    private String warehouseCode;
 
    @ExcelProperty("采购价")
    private BigDecimal purchasePrice;
 
    @ExcelProperty("销售价")
    private BigDecimal salesPrice;
 
    @ExcelProperty("成本价")
    private BigDecimal costPrice;
 
    @ExcelProperty("安全库存")
    private BigDecimal safetyStock;
 
    @ExcelProperty("最低库存")
    private BigDecimal minStock;
 
    @ExcelProperty("最高库存")
    private BigDecimal maxStock;
 
    @ExcelProperty("是否批次管理")
    private Boolean isBatchManaged;
 
    @ExcelProperty("保质期(天)")
    private Integer expiryDay;
 
    @ExcelProperty("状态")
    private Integer status;
 
    @ExcelProperty("是否同步到MES")
    private Boolean syncMes;
 
    @ExcelProperty("备注")
    private String remark;
 
}