|
|
@@ -0,0 +1,326 @@
|
|
|
+package com.uas.platform.b2b.mobile.model;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+import javax.persistence.Column;
|
|
|
+import javax.persistence.Entity;
|
|
|
+import javax.persistence.GeneratedValue;
|
|
|
+import javax.persistence.GenerationType;
|
|
|
+import javax.persistence.Id;
|
|
|
+import javax.persistence.SequenceGenerator;
|
|
|
+import javax.persistence.Table;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 设置员工班次表
|
|
|
+ *
|
|
|
+ * @author hejq
|
|
|
+ * @time 创建时间:2017年2月21日
|
|
|
+ */
|
|
|
+@Entity
|
|
|
+@Table(name = "mobile$workdata")
|
|
|
+public class WorkData implements Serializable {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 序号
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @Id
|
|
|
+ @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "mobile$workdata_gen")
|
|
|
+ @SequenceGenerator(name = "mobile$workdata_gen", sequenceName = "mobile$workdata_seq", allocationSize = 1)
|
|
|
+ @Column(name = "wd_id")
|
|
|
+ private Long wd_id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 班次编号
|
|
|
+ */
|
|
|
+ @Column(name = "wd_code")
|
|
|
+ private String wd_code;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 班次名称
|
|
|
+ */
|
|
|
+ @Column(name = "wd_name")
|
|
|
+ private String wd_name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 录入人
|
|
|
+ */
|
|
|
+ @Column(name = "wd_recorder")
|
|
|
+ private String wd_recorder;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 录入日期
|
|
|
+ */
|
|
|
+ @Column(name = "wd_recorddate")
|
|
|
+ private Date wd_recorddate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 工作时间
|
|
|
+ */
|
|
|
+ @Column(name = "wd_hours")
|
|
|
+ private Integer wd_hours;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 班段数量
|
|
|
+ */
|
|
|
+ @Column(name = "wd_degree")
|
|
|
+ private Integer wd_degree;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 工作时间1
|
|
|
+ */
|
|
|
+ @Column(name = "wd_ondutyone")
|
|
|
+ private String wd_ondutyOne;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下班时间1
|
|
|
+ */
|
|
|
+ @Column(name = "wd_offdutyone")
|
|
|
+ private String wd_offdutyOne;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 工作时间2
|
|
|
+ */
|
|
|
+ @Column(name = "wd_ondutytwo")
|
|
|
+ private String wd_ondutyTwo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下班时间2
|
|
|
+ */
|
|
|
+ @Column(name = "wd_offdutytwo")
|
|
|
+ private String wd_offdutyTwo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 工作时间3
|
|
|
+ */
|
|
|
+ @Column(name = "wd_ondutythree")
|
|
|
+ private String wd_ondutyThree;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下班时间3
|
|
|
+ */
|
|
|
+ @Column(name = "wd_offdutythree")
|
|
|
+ private String wd_offdutyThree;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 员工编码
|
|
|
+ */
|
|
|
+ @Column(name = "wd_emcode")
|
|
|
+ private String wd_emcode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 员工姓名
|
|
|
+ */
|
|
|
+ @Column(name = "wd_man")
|
|
|
+ private String wd_man;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参与部门编号
|
|
|
+ */
|
|
|
+ @Column(name = "wd_defaultorcode")
|
|
|
+ private String wd_defaultorCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参与部门
|
|
|
+ */
|
|
|
+ @Column(name = "wd_defaultor")
|
|
|
+ private String wd_defaultor;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 考勤星期
|
|
|
+ */
|
|
|
+ @Column(name = "wd_day")
|
|
|
+ private String wd_day;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参与人数
|
|
|
+ */
|
|
|
+ @Column(name = "wd_pcount")
|
|
|
+ private Integer wd_pcount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提前打卡时间
|
|
|
+ */
|
|
|
+ @Column(name = "wd_earlytime")
|
|
|
+ private Integer wd_earlytime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 企业uu
|
|
|
+ */
|
|
|
+ @Column(name = "wd_enuu")
|
|
|
+ private Long enuu;
|
|
|
+
|
|
|
+ public Long getWd_id() {
|
|
|
+ return wd_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_id(Long wd_id) {
|
|
|
+ this.wd_id = wd_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_code() {
|
|
|
+ return wd_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_code(String wd_code) {
|
|
|
+ this.wd_code = wd_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_name() {
|
|
|
+ return wd_name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_name(String wd_name) {
|
|
|
+ this.wd_name = wd_name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_recorder() {
|
|
|
+ return wd_recorder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_recorder(String wd_recorder) {
|
|
|
+ this.wd_recorder = wd_recorder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getWd_recorddate() {
|
|
|
+ return wd_recorddate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_recorddate(Date wd_recorddate) {
|
|
|
+ this.wd_recorddate = wd_recorddate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getWd_hours() {
|
|
|
+ return wd_hours;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_hours(Integer wd_hours) {
|
|
|
+ this.wd_hours = wd_hours;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getWd_degree() {
|
|
|
+ return wd_degree;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_degree(Integer wd_degree) {
|
|
|
+ this.wd_degree = wd_degree;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_ondutyOne() {
|
|
|
+ return wd_ondutyOne;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_ondutyOne(String wd_ondutyOne) {
|
|
|
+ this.wd_ondutyOne = wd_ondutyOne;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_offdutyOne() {
|
|
|
+ return wd_offdutyOne;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_offdutyOne(String wd_offdutyOne) {
|
|
|
+ this.wd_offdutyOne = wd_offdutyOne;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_ondutyTwo() {
|
|
|
+ return wd_ondutyTwo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_ondutyTwo(String wd_ondutyTwo) {
|
|
|
+ this.wd_ondutyTwo = wd_ondutyTwo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_offdutyTwo() {
|
|
|
+ return wd_offdutyTwo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_offdutyTwo(String wd_offdutyTwo) {
|
|
|
+ this.wd_offdutyTwo = wd_offdutyTwo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_ondutyThree() {
|
|
|
+ return wd_ondutyThree;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_ondutyThree(String wd_ondutyThree) {
|
|
|
+ this.wd_ondutyThree = wd_ondutyThree;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_offdutyThree() {
|
|
|
+ return wd_offdutyThree;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_offdutyThree(String wd_offdutyThree) {
|
|
|
+ this.wd_offdutyThree = wd_offdutyThree;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_emcode() {
|
|
|
+ return wd_emcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_emcode(String wd_emcode) {
|
|
|
+ this.wd_emcode = wd_emcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_man() {
|
|
|
+ return wd_man;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_man(String wd_man) {
|
|
|
+ this.wd_man = wd_man;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_defaultorCode() {
|
|
|
+ return wd_defaultorCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_defaultorCode(String wd_defaultorCode) {
|
|
|
+ this.wd_defaultorCode = wd_defaultorCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_defaultor() {
|
|
|
+ return wd_defaultor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_defaultor(String wd_defaultor) {
|
|
|
+ this.wd_defaultor = wd_defaultor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWd_day() {
|
|
|
+ return wd_day;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_day(String wd_day) {
|
|
|
+ this.wd_day = wd_day;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getWd_pcount() {
|
|
|
+ return wd_pcount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_pcount(Integer wd_pcount) {
|
|
|
+ this.wd_pcount = wd_pcount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getWd_earlytime() {
|
|
|
+ return wd_earlytime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWd_earlytime(Integer wd_earlytime) {
|
|
|
+ this.wd_earlytime = wd_earlytime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getEnuu() {
|
|
|
+ return enuu;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnuu(Long enuu) {
|
|
|
+ this.enuu = enuu;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|