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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package com.shlanbao.tzsc.base.mapping;
 
 
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * QmMassExcipient entity. @author MyEclipse Persistence Tools
 */
 
@SuppressWarnings("serial")
public class QmMassExcipient implements java.io.Serializable {
    private String qmExcipientId;
    private QmMassCheck qmMassCheck;
    private String addUserId;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date addUserTime;
    private String modifyUserId;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date modifyTime;
    private String isDelete;
    private String checkItem;
    private String checkRate;
    private String isError;
    private String subStandard;
    private Integer orderNumber;//排序号
    private String checkTime;//检查时间
 
    // Constructors
 
    /** default constructor */
    public QmMassExcipient() {
    }
 
    /** full constructor */
    public QmMassExcipient(QmMassCheck qmMassCheck, String addUserId,
            Date addUserTime, String modifyUserId, Date modifyTime,
            String isDelete, String checkItem, String checkRate,
            String isError, String subStandard,Integer orderNumber,String checkTime) {
        this.qmMassCheck = qmMassCheck;
        this.addUserId = addUserId;
        this.addUserTime = addUserTime;
        this.modifyUserId = modifyUserId;
        this.modifyTime = modifyTime;
        this.isDelete = isDelete;
        this.checkItem = checkItem;
        this.checkRate = checkRate;
        this.isError = isError;
        this.subStandard = subStandard;
        this.orderNumber = orderNumber;
        this.checkTime = checkTime;
    }
 
    // Property accessors
 
    
    
    public String getQmExcipientId() {
        return this.qmExcipientId;
    }
 
    public String getCheckTime() {
        return checkTime;
    }
 
    public void setCheckTime(String checkTime) {
        this.checkTime = checkTime;
    }
 
    public void setQmExcipientId(String qmExcipientId) {
        this.qmExcipientId = qmExcipientId;
    }
 
    public QmMassCheck getQmMassCheck() {
        return this.qmMassCheck;
    }
 
    public void setQmMassCheck(QmMassCheck qmMassCheck) {
        this.qmMassCheck = qmMassCheck;
    }
 
    public String getAddUserId() {
        return this.addUserId;
    }
 
    public void setAddUserId(String addUserId) {
        this.addUserId = addUserId;
    }
 
    
 
    public String getModifyUserId() {
        return this.modifyUserId;
    }
 
    public void setModifyUserId(String modifyUserId) {
        this.modifyUserId = modifyUserId;
    }
 
    
    public Date getAddUserTime() {
        return addUserTime;
    }
 
    public void setAddUserTime(Date addUserTime) {
        this.addUserTime = addUserTime;
    }
 
    public Date getModifyTime() {
        return modifyTime;
    }
 
    public void setModifyTime(Date modifyTime) {
        this.modifyTime = modifyTime;
    }
 
    public String getIsDelete() {
        return this.isDelete;
    }
 
    public void setIsDelete(String isDelete) {
        this.isDelete = isDelete;
    }
 
    public String getCheckItem() {
        return this.checkItem;
    }
 
    public void setCheckItem(String checkItem) {
        this.checkItem = checkItem;
    }
 
    public String getCheckRate() {
        return this.checkRate;
    }
 
    public void setCheckRate(String checkRate) {
        this.checkRate = checkRate;
    }
 
    public String getIsError() {
        return this.isError;
    }
 
    public void setIsError(String isError) {
        this.isError = isError;
    }
 
    public String getSubStandard() {
        return this.subStandard;
    }
 
    public void setSubStandard(String subStandard) {
        this.subStandard = subStandard;
    }
 
    public Integer getOrderNumber() {
        return orderNumber;
    }
 
    public void setOrderNumber(Integer orderNumber) {
        this.orderNumber = orderNumber;
    }
 
}