hjg
2024-10-28 b5fbd89107c49777ff92a5b81797c56583949ca6
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package com.mandi.fendan.persist;
 
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
 
@Entity
@Table(name="SalesReturn")
public class SalesReturn implements Serializable {
 
    @Id
    private String itemId; // 物料编号
    private String batchNum; // 批次号
    private String materialName; // 物料名称
    private String specsName; // 规格名称
    private String jzfmName; // 夹纸覆膜名称
    private String materialSize; // 尺寸
    private String outerPackingSize; // 外包装尺寸
    private Double grossWeight; // 毛重
    private Double netWeight; // 净重
    private String backTypeName; // 退货类型
    private String backReason; // 退货原因
    private String alloyStateName; // 合金状态名称
    private String itemRemark; // 备注
    private String operState; // 处理操作
 
 
    public String getItemId() {
        return itemId;
    }
 
    public void setItemId(String itemId) {
        this.itemId = itemId;
    }
 
    public String getBatchNum() {
        return batchNum;
    }
 
    public void setBatchNum(String batchNum) {
        this.batchNum = batchNum;
    }
 
    public String getMaterialName() {
        return materialName;
    }
 
    public void setMaterialName(String materialName) {
        this.materialName = materialName;
    }
 
    public String getSpecsName() {
        return specsName;
    }
 
    public void setSpecsName(String specsName) {
        this.specsName = specsName;
    }
 
    public String getJzfmName() {
        return jzfmName;
    }
 
    public void setJzfmName(String jzfmName) {
        this.jzfmName = jzfmName;
    }
 
    public String getMaterialSize() {
        return materialSize;
    }
 
    public void setMaterialSize(String materialSize) {
        this.materialSize = materialSize;
    }
 
    public String getOuterPackingSize() {
        return outerPackingSize;
    }
 
    public void setOuterPackingSize(String outerPackingSize) {
        this.outerPackingSize = outerPackingSize;
    }
 
    public Double getGrossWeight() {
        return grossWeight;
    }
 
    public void setGrossWeight(Double grossWeight) {
        this.grossWeight = grossWeight;
    }
 
    public Double getNetWeight() {
        return netWeight;
    }
 
    public void setNetWeight(Double netWeight) {
        this.netWeight = netWeight;
    }
 
    public String getBackTypeName() {
        return backTypeName;
    }
 
    public void setBackTypeName(String backTypeName) {
        this.backTypeName = backTypeName;
    }
 
    public String getBackReason() {
        return backReason;
    }
 
    public void setBackReason(String backReason) {
        this.backReason = backReason;
    }
 
    public String getAlloyStateName() {
        return alloyStateName;
    }
 
    public void setAlloyStateName(String alloyStateName) {
        this.alloyStateName = alloyStateName;
    }
 
    public String getItemRemark() {
        return itemRemark;
    }
 
    public void setItemRemark(String itemRemark) {
        this.itemRemark = itemRemark;
    }
 
    public String getOperState() {
        return operState;
    }
 
    public void setOperState(String operState) {
        this.operState = operState;
    }
}