9240078b
xiejianpeng
生成数据库
|
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
package com.zteits.oa.report.domain;
import java.util.Date;
public class AsraDaily {
/**主键*/
private Long id;
/**所属项目ID*/
private Long projectId;
/**所属员工ID*/
private Long asarOpId;
/**操作员姓名*/
private String asarOpName;
/**年:2018*/
private Integer years;
/**周:1-54周*/
private Integer weeks;
/**星期:1-7*/
private Integer weeksNum;
/**工时填写日期*/
private Date dailyDate;
/**数据状态:1有效,0无效,2:锁定*/
private Integer dataState;
/**创建人ID*/
private String createEmpid;
/**创建人*/
private String createEmpName;
/**创建时间*/
private Date createDate;
/**修改人*/
private String modfiyEmpid;
/**修改人*/
private String modfiyEmpName;
/**修改时间*/
private Date modfiyDate;
/**工时内容*/
private String dailyContent;
/**获取主键*/
public Long getId() {
return id;
}
/**设置主键*/
public void setId(Long id) {
this.id = id;
}
/**获取所属项目ID*/
public Long getProjectId() {
return projectId;
}
/**设置所属项目ID*/
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
/**获取所属员工ID*/
public Long getAsarOpId() {
return asarOpId;
}
/**设置所属员工ID*/
public void setAsarOpId(Long asarOpId) {
this.asarOpId = asarOpId;
}
/**获取操作员姓名*/
public String getAsarOpName() {
return asarOpName;
}
/**设置操作员姓名*/
public void setAsarOpName(String asarOpName) {
this.asarOpName = asarOpName == null ? null : asarOpName.trim();
}
/**获取年:2018*/
public Integer getYears() {
return years;
}
/**设置年:2018*/
public void setYears(Integer years) {
this.years = years;
}
/**获取周:1-54周*/
public Integer getWeeks() {
return weeks;
}
/**设置周:1-54周*/
public void setWeeks(Integer weeks) {
this.weeks = weeks;
}
/**获取星期:1-7*/
public Integer getWeeksNum() {
return weeksNum;
}
/**设置星期:1-7*/
public void setWeeksNum(Integer weeksNum) {
this.weeksNum = weeksNum;
}
/**获取工时填写日期*/
public Date getDailyDate() {
return dailyDate;
}
/**设置工时填写日期*/
public void setDailyDate(Date dailyDate) {
this.dailyDate = dailyDate;
}
/**获取数据状态:1有效,0无效,2:锁定*/
public Integer getDataState() {
return dataState;
}
/**设置数据状态:1有效,0无效,2:锁定*/
public void setDataState(Integer dataState) {
this.dataState = dataState;
}
/**获取创建人ID*/
public String getCreateEmpid() {
return createEmpid;
}
/**设置创建人ID*/
public void setCreateEmpid(String createEmpid) {
this.createEmpid = createEmpid == null ? null : createEmpid.trim();
}
/**获取创建人*/
public String getCreateEmpName() {
return createEmpName;
}
/**设置创建人*/
public void setCreateEmpName(String createEmpName) {
this.createEmpName = createEmpName == null ? null : createEmpName.trim();
}
/**获取创建时间*/
public Date getCreateDate() {
return createDate;
}
/**设置创建时间*/
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
/**获取修改人*/
public String getModfiyEmpid() {
return modfiyEmpid;
}
/**设置修改人*/
public void setModfiyEmpid(String modfiyEmpid) {
this.modfiyEmpid = modfiyEmpid == null ? null : modfiyEmpid.trim();
}
/**获取修改人*/
public String getModfiyEmpName() {
return modfiyEmpName;
}
/**设置修改人*/
public void setModfiyEmpName(String modfiyEmpName) {
this.modfiyEmpName = modfiyEmpName == null ? null : modfiyEmpName.trim();
}
/**获取修改时间*/
public Date getModfiyDate() {
return modfiyDate;
}
/**设置修改时间*/
public void setModfiyDate(Date modfiyDate) {
this.modfiyDate = modfiyDate;
}
/**获取工时内容*/
public String getDailyContent() {
return dailyContent;
}
/**设置工时内容*/
public void setDailyContent(String dailyContent) {
this.dailyContent = dailyContent == null ? null : dailyContent.trim();
}
}
|