自动化立体仓库 - WMS系统
zhangc
2024-12-20 2f6502b1ac9e1a979a8e01c9c9763d9c327e522b
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
87
88
89
90
91
92
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
/**
 * 商品同步接口,参数
 * Created on 2022/6/22
 */
@Data
public class MatSyncParam {
 
    //存货编码
    String cInvCode;
    //存货名称
    String cInvName;
    //单位组类型编码/名称
    String iGroupType;
    //存货大类编码
    String cInvCCode;
    //规格型号
    String cInvStd;
    //是否批次管理
    String bInvBatch;
    //主计量单位编码/名称
    String cComUnitCode;
    //采购单位编码/采购单位名称
    String cComUnitName;
    //采购单位编码
    String PuCote;
    //生产计量单位名称
    String proname;
    //生产计量单位编码
    String procode;
    //自由项1(规格)
    String bFree1;
    //状态
    Integer states;
 
    public void setcInvCode(String cInvCode) {
        this.cInvCode = cInvCode;
    }
 
    public void setcInvName(String cInvName) {
        this.cInvName = cInvName;
    }
 
    public void setiGroupType(String iGroupType) {
        this.iGroupType = iGroupType;
    }
 
    public void setcInvCCode(String cInvCCode) {
        this.cInvCCode = cInvCCode;
    }
 
    public void setcInvStd(String cInvStd) {
        this.cInvStd = cInvStd;
    }
 
    public void setbInvBatch(String bInvBatch) {
        this.bInvBatch = bInvBatch;
    }
 
    public void setcComUnitCode(String cComUnitCode) {
        this.cComUnitCode = cComUnitCode;
    }
 
    public void setcComUnitName(String cComUnitName) {
        this.cComUnitName = cComUnitName;
    }
 
    public void setPuCote(String puCote) {
        PuCote = puCote;
    }
 
    public void setProname(String proname) {
        this.proname = proname;
    }
 
    public void setProcode(String procode) {
        this.procode = procode;
    }
 
    public void setbFree1(String bFree1) {
        this.bFree1 = bFree1;
    }
 
    public void setStates(Integer states) {
        this.states = states == 0 ? 1 : 0;
    }
 
 
}