dupengyue
2017-03-10 b3635dde3e5ca9485212aa67dbb6ceb96cba873a
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
167
168
169
170
171
172
173
package cn.com.basic.face.discern.baseApi.entity.checking;
 
import java.io.Serializable;
import java.util.Date;
 
public class Checking implements Serializable {
    /**
     * 考勤ID
     */
    private String checkingid;
 
    /**
     * 考勤类型
     */
    private String checkingtype;
 
    /**
     * 考勤地点ID
     */
    private String checkingposition;
 
    /**
     * 考勤时间
     */
    private Date checkingtime;
 
    /**
     * 用户ID
     */
    private String userid;
 
    /**
     * 考勤公司ID
     */
    private String companyid;
 
    /**
     * 数据状态:1有效,0无效
     */
    private Byte datastatus;
 
    /**
     * 创建该记录时间
     */
    private Date createtime;
 
    /**
     * 数据创建人
     */
    private String creator;
 
    /**
     * 更新时间
     */
    private Date updatetime;
 
    /**
     * 数据更新人
     */
    private String updator;
 
    private static final long serialVersionUID = 1L;
 
    public String getCheckingid() {
        return checkingid;
    }
 
    public void setCheckingid(String checkingid) {
        this.checkingid = checkingid == null ? null : checkingid.trim();
    }
 
    public String getCheckingtype() {
        return checkingtype;
    }
 
    public void setCheckingtype(String checkingtype) {
        this.checkingtype = checkingtype == null ? null : checkingtype.trim();
    }
 
    public String getCheckingposition() {
        return checkingposition;
    }
 
    public void setCheckingposition(String checkingposition) {
        this.checkingposition = checkingposition == null ? null : checkingposition.trim();
    }
 
    public Date getCheckingtime() {
        return checkingtime;
    }
 
    public void setCheckingtime(Date checkingtime) {
        this.checkingtime = checkingtime;
    }
 
    public String getUserid() {
        return userid;
    }
 
    public void setUserid(String userid) {
        this.userid = userid == null ? null : userid.trim();
    }
 
    public String getCompanyid() {
        return companyid;
    }
 
    public void setCompanyid(String companyid) {
        this.companyid = companyid == null ? null : companyid.trim();
    }
 
    public Byte getDatastatus() {
        return datastatus;
    }
 
    public void setDatastatus(Byte datastatus) {
        this.datastatus = datastatus;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    public String getCreator() {
        return creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator == null ? null : creator.trim();
    }
 
    public Date getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
 
    public String getUpdator() {
        return updator;
    }
 
    public void setUpdator(String updator) {
        this.updator = updator == null ? null : updator.trim();
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", checkingid=").append(checkingid);
        sb.append(", checkingtype=").append(checkingtype);
        sb.append(", checkingposition=").append(checkingposition);
        sb.append(", checkingtime=").append(checkingtime);
        sb.append(", userid=").append(userid);
        sb.append(", companyid=").append(companyid);
        sb.append(", datastatus=").append(datastatus);
        sb.append(", createtime=").append(createtime);
        sb.append(", creator=").append(creator);
        sb.append(", updatetime=").append(updatetime);
        sb.append(", updator=").append(updator);
        sb.append(", serialVersionUID=").append(serialVersionUID);
        sb.append("]");
        return sb.toString();
    }
}