zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * 封箱机手动追加-------
 * @author renguojin
 * 
 * 
 */
 
public class EqmQtyRecords implements java.io.Serializable {
 
    private String id;
    private String oid;
    private String eqp;
    private String shift;
    private Double qty;
    private String type;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    private String createUserName;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
    private String updateUserName;
    private String del;
    
    
    
    
    public EqmQtyRecords() {
        super();
    }
    public EqmQtyRecords(String id, String oid, String eqp, String shift, Double qty, String type, Date createTime,
            String createUserName, Date updateTime, String updateUserName, String del) {
        this.oid = oid;
        this.eqp = eqp;
        this.shift = shift;
        this.qty = qty;
        this.type = type;
        this.createTime = createTime;
        this.createUserName = createUserName;
        this.updateTime = updateTime;
        this.updateUserName = updateUserName;
        this.del = del;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getOid() {
        return oid;
    }
    public void setOid(String oid) {
        this.oid = oid;
    }
    public String getEqp() {
        return eqp;
    }
    public void setEqp(String eqp) {
        this.eqp = eqp;
    }
    public String getShift() {
        return shift;
    }
    public void setShift(String shift) {
        this.shift = shift;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public String getCreateUserName() {
        return createUserName;
    }
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    public String getUpdateUserName() {
        return updateUserName;
    }
    public void setUpdateUserName(String updateUserName) {
        this.updateUserName = updateUserName;
    }
    public String getDel() {
        return del;
    }
    public void setDel(String del) {
        this.del = del;
    }
    
 
    
 
}