部门版本控制写入逻辑
parent
73dbaf75ac
commit
13ae136872
@ -0,0 +1,24 @@
|
|||||||
|
package com.engine.organization.entity.version;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class HrmDepartmentVersion {
|
||||||
|
|
||||||
|
int id;
|
||||||
|
int departmentId;
|
||||||
|
String departmentMark;
|
||||||
|
String departmentCode;
|
||||||
|
String departmentName;
|
||||||
|
int subCompanyId1;
|
||||||
|
int supDepId;
|
||||||
|
int bmfzr;
|
||||||
|
int showOrder;
|
||||||
|
int canceled;
|
||||||
|
String description;
|
||||||
|
String operator;
|
||||||
|
Double version;
|
||||||
|
Date operateTime;
|
||||||
|
}
|
@ -0,0 +1,162 @@
|
|||||||
|
package com.engine.organization.entity.version;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class HrmResourceVersion {
|
||||||
|
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
private Integer resourceid;
|
||||||
|
|
||||||
|
private Date companystartdate;
|
||||||
|
|
||||||
|
private Integer companyworkyear;
|
||||||
|
|
||||||
|
private Date workstartdate;
|
||||||
|
|
||||||
|
private Integer workyear;
|
||||||
|
|
||||||
|
private Integer usekind;
|
||||||
|
|
||||||
|
private Integer jobcall;
|
||||||
|
|
||||||
|
private String accumfundaccount;
|
||||||
|
|
||||||
|
private String birthplace;
|
||||||
|
|
||||||
|
private String folk;
|
||||||
|
|
||||||
|
private String residentphone;
|
||||||
|
|
||||||
|
private String residentpostcode;
|
||||||
|
|
||||||
|
private String extphone;
|
||||||
|
|
||||||
|
private String managerstr;
|
||||||
|
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
private String fax;
|
||||||
|
|
||||||
|
private String islabouunion;
|
||||||
|
|
||||||
|
private Integer weight;
|
||||||
|
|
||||||
|
private String tempresidentnumber;
|
||||||
|
|
||||||
|
private Date probationenddate;
|
||||||
|
|
||||||
|
private Integer countryid;
|
||||||
|
|
||||||
|
private Date passwdchgdate;
|
||||||
|
|
||||||
|
private String lloginid;
|
||||||
|
|
||||||
|
private Integer dsporder;
|
||||||
|
|
||||||
|
private Integer passwordstate;
|
||||||
|
|
||||||
|
private Integer accounttype;
|
||||||
|
|
||||||
|
private Integer belongto;
|
||||||
|
|
||||||
|
private String messagerurl;
|
||||||
|
|
||||||
|
private String accountname;
|
||||||
|
|
||||||
|
private String loginid;
|
||||||
|
|
||||||
|
private String password;
|
||||||
|
|
||||||
|
private String lastname;
|
||||||
|
|
||||||
|
private String sex;
|
||||||
|
|
||||||
|
private String birthday;
|
||||||
|
|
||||||
|
private Integer nationality;
|
||||||
|
|
||||||
|
private String maritalstatus;
|
||||||
|
|
||||||
|
private String telephone;
|
||||||
|
|
||||||
|
private String mobile;
|
||||||
|
|
||||||
|
private String mobilecall;
|
||||||
|
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
private Integer locationid;
|
||||||
|
|
||||||
|
private String workroom;
|
||||||
|
|
||||||
|
private String homeaddress;
|
||||||
|
|
||||||
|
private String resourcetype;
|
||||||
|
|
||||||
|
private Date startdate;
|
||||||
|
|
||||||
|
private Date enddate;
|
||||||
|
|
||||||
|
private Integer jobtitle;
|
||||||
|
|
||||||
|
private String jobactivitydesc;
|
||||||
|
|
||||||
|
private Integer joblevel;
|
||||||
|
|
||||||
|
private Integer seclevel;
|
||||||
|
|
||||||
|
private Integer departmentid;
|
||||||
|
|
||||||
|
private Integer subcompanyid1;
|
||||||
|
|
||||||
|
private Integer costcenterid;
|
||||||
|
|
||||||
|
private Integer managerid;
|
||||||
|
|
||||||
|
private Integer assistantid;
|
||||||
|
|
||||||
|
private Integer bankid1;
|
||||||
|
|
||||||
|
private String accountid1;
|
||||||
|
|
||||||
|
private Integer resourceimageid;
|
||||||
|
|
||||||
|
private String certificatenum;
|
||||||
|
|
||||||
|
private String nativeplace;
|
||||||
|
|
||||||
|
private Integer educationlevel;
|
||||||
|
|
||||||
|
private Date bememberdate;
|
||||||
|
|
||||||
|
private Date bepartydate;
|
||||||
|
|
||||||
|
private String workcode;
|
||||||
|
|
||||||
|
private String regresidentplace;
|
||||||
|
|
||||||
|
private String healthinfo;
|
||||||
|
|
||||||
|
private String residentplace;
|
||||||
|
|
||||||
|
private String policy;
|
||||||
|
|
||||||
|
private String degree;
|
||||||
|
|
||||||
|
private String height;
|
||||||
|
|
||||||
|
private String classification;
|
||||||
|
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
private String operator;
|
||||||
|
|
||||||
|
private Double version;
|
||||||
|
|
||||||
|
private Date operateTime;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue