xingzilong
2017-08-18 9e5babf9db52e64bdae60137be7696e56241fca6
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
package cn.com.basic.face.discern.baseApi.entity.checking;
 
import java.io.Serializable;
import java.util.Date;
 
public class CheckingType implements Serializable {
    /**
     * 考勤类型ID
     */
    private String checkingtypeid;
 
    /**
     * 考勤类型
     */
    private String checkingtype;
 
    /**
     * 所属公司ID
     */
    private String companyid;
 
    /**
     * 是否通用
     */
    private Byte common;
 
    /**
     * 数据状态: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 getCheckingtypeid() {
        return checkingtypeid;
    }
 
    public void setCheckingtypeid(String checkingtypeid) {
        this.checkingtypeid = checkingtypeid == null ? null : checkingtypeid.trim();
    }
 
    public String getCheckingtype() {
        return checkingtype;
    }
 
    public void setCheckingtype(String checkingtype) {
        this.checkingtype = checkingtype == null ? null : checkingtype.trim();
    }
 
    public String getCompanyid() {
        return companyid;
    }
 
    public void setCompanyid(String companyid) {
        this.companyid = companyid == null ? null : companyid.trim();
    }
 
    public Byte getCommon() {
        return common;
    }
 
    public void setCommon(Byte common) {
        this.common = common;
    }
 
    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(", checkingtypeid=").append(checkingtypeid);
        sb.append(", checkingtype=").append(checkingtype);
        sb.append(", companyid=").append(companyid);
        sb.append(", common=").append(common);
        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();
    }
}