xiaoyong931011
2021-11-10 66b02aac92f89c9d5df3e75d6d342634092f0dd4
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
/**
 * @author 周碧
 * @Title: WeighInfo
 * @ProjectName weigh
 * @date 2019/10/2210:25
 */
public class WeightInfo {
    private String batchNo;
    private String weight;
    private Short successFlag;
    private String createTime;
    private String userId;
    private String devCode;
    private String reason;
    private transient Short timeFlag;
 
 
    public Short getTimeFlag() {
        return timeFlag;
    }
 
    public void setTimeFlag(Short timeFlag) {
        this.timeFlag = timeFlag;
    }
 
    public String getReason() {
        return reason;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
 
    public String getBatchNo() {
        return batchNo;
    }
 
    public void setBatchNo(String batchNo) {
        this.batchNo = batchNo;
    }
 
    public String getWeight() {
        return weight;
    }
 
    public void setWeight(String weight) {
        this.weight = weight;
    }
 
    public Short getSuccessFlag() {
        return successFlag;
    }
 
    public void setSuccessFlag(Short successFlag) {
        this.successFlag = successFlag;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getDevCode() {
        return devCode;
    }
 
    public void setDevCode(String devCode) {
        this.devCode = devCode;
    }
}