|
|
package com.agent.entity.system;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
|
/**
|
|
|
* @author shenhailong
|
|
|
* <p>
|
|
|
* 2021/5/19/15:13
|
|
|
*/
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
public class UserData {
|
|
|
|
|
|
@JsonProperty(value = "USER_ID")
|
|
|
private String USER_ID;
|
|
|
@JsonProperty(value = "USER_NAME")
|
|
|
private String USER_NAME;
|
|
|
@JsonProperty(value = "USER_NO")
|
|
|
private String USER_NO;
|
|
|
@JsonProperty(value = "MOBILE")
|
|
|
private String MOBILE;
|
|
|
@JsonProperty(value = "IDCARD_NO")
|
|
|
private String IDCARD_NO;
|
|
|
@JsonProperty(value = "COUNTRY")
|
|
|
private String COUNTRY;
|
|
|
@JsonProperty(value = "SEX")
|
|
|
private String SEX;
|
|
|
@JsonProperty(value = "NATIONALITY")
|
|
|
private String NATIONALITY;
|
|
|
@JsonProperty(value = "OFFICE_PHONE")
|
|
|
private String OFFICE_PHONE;
|
|
|
@JsonProperty(value = "OFFICE_ADDRESS")
|
|
|
private String OFFICE_ADDRESS;
|
|
|
@JsonProperty(value = "EMAIL")
|
|
|
private String EMAIL;
|
|
|
@JsonProperty(value = "JOB_LEVEL")
|
|
|
private String JOB_LEVEL;
|
|
|
@JsonProperty(value = "JOB_TITLE")
|
|
|
private String JOB_TITLE;
|
|
|
@JsonProperty(value = "JOB_TYPE")
|
|
|
private String JOB_TYPE;
|
|
|
@JsonProperty(value = "JOB_STATUS")
|
|
|
private String JOB_STATUS;
|
|
|
@JsonProperty(value = "JOB_POSITION")
|
|
|
private String JOB_POSITION;
|
|
|
@JsonProperty(value = "SECRET_LEVEL")
|
|
|
private String SECRET_LEVEL;
|
|
|
@JsonProperty(value = "USER_POST")
|
|
|
private String USER_POST;
|
|
|
@JsonProperty(value = "USER_JOB_ID")
|
|
|
private String USER_JOB_ID;
|
|
|
@JsonProperty(value = "ORG_ID")
|
|
|
private String ORG_ID;
|
|
|
@JsonProperty(value = "USER_TITLE")
|
|
|
private String USER_TITLE;
|
|
|
@JsonProperty(value = "LOGIN_NAME")
|
|
|
private String LOGIN_NAME;
|
|
|
@JsonProperty(value = "SHOW_ORDER")
|
|
|
private String SHOW_ORDER;
|
|
|
@JsonProperty(value = "REMARK")
|
|
|
private String REMARK;
|
|
|
@JsonProperty(value = "NAIL_ID")
|
|
|
private String NAIL_ID;
|
|
|
@JsonProperty(value = "PK_PSNDOC")
|
|
|
private String PK_PSNDOC;
|
|
|
@JsonProperty(value = "PWD")
|
|
|
private String PWD;
|
|
|
@JsonProperty(value = "PWD_ENCRYPT")
|
|
|
private String PWD_ENCRYPT;
|
|
|
@JsonProperty(value = "UPDATE_TIME")
|
|
|
private String UPDATE_TIME;
|
|
|
|
|
|
public String getUSER_ID() {
|
|
|
return USER_ID;
|
|
|
}
|
|
|
|
|
|
public void setUSER_ID(String USER_ID) {
|
|
|
this.USER_ID = USER_ID;
|
|
|
}
|
|
|
|
|
|
public String getUSER_NAME() {
|
|
|
return USER_NAME;
|
|
|
}
|
|
|
|
|
|
public void setUSER_NAME(String USER_NAME) {
|
|
|
this.USER_NAME = USER_NAME;
|
|
|
}
|
|
|
|
|
|
public String getUSER_NO() {
|
|
|
return USER_NO;
|
|
|
}
|
|
|
|
|
|
public void setUSER_NO(String USER_NO) {
|
|
|
this.USER_NO = USER_NO;
|
|
|
}
|
|
|
|
|
|
public String getMOBILE() {
|
|
|
return MOBILE;
|
|
|
}
|
|
|
|
|
|
public void setMOBILE(String MOBILE) {
|
|
|
this.MOBILE = MOBILE;
|
|
|
}
|
|
|
|
|
|
public String getIDCARD_NO() {
|
|
|
return IDCARD_NO;
|
|
|
}
|
|
|
|
|
|
public void setIDCARD_NO(String IDCARD_NO) {
|
|
|
this.IDCARD_NO = IDCARD_NO;
|
|
|
}
|
|
|
|
|
|
public String getCOUNTRY() {
|
|
|
return COUNTRY;
|
|
|
}
|
|
|
|
|
|
public void setCOUNTRY(String COUNTRY) {
|
|
|
this.COUNTRY = COUNTRY;
|
|
|
}
|
|
|
|
|
|
public String getSEX() {
|
|
|
return SEX;
|
|
|
}
|
|
|
|
|
|
public void setSEX(String SEX) {
|
|
|
this.SEX = SEX;
|
|
|
}
|
|
|
|
|
|
public String getNATIONALITY() {
|
|
|
return NATIONALITY;
|
|
|
}
|
|
|
|
|
|
public void setNATIONALITY(String NATIONALITY) {
|
|
|
this.NATIONALITY = NATIONALITY;
|
|
|
}
|
|
|
|
|
|
public String getOFFICE_PHONE() {
|
|
|
return OFFICE_PHONE;
|
|
|
}
|
|
|
|
|
|
public void setOFFICE_PHONE(String OFFICE_PHONE) {
|
|
|
this.OFFICE_PHONE = OFFICE_PHONE;
|
|
|
}
|
|
|
|
|
|
public String getOFFICE_ADDRESS() {
|
|
|
return OFFICE_ADDRESS;
|
|
|
}
|
|
|
|
|
|
public void setOFFICE_ADDRESS(String OFFICE_ADDRESS) {
|
|
|
this.OFFICE_ADDRESS = OFFICE_ADDRESS;
|
|
|
}
|
|
|
|
|
|
public String getEMAIL() {
|
|
|
return EMAIL;
|
|
|
}
|
|
|
|
|
|
public void setEMAIL(String EMAIL) {
|
|
|
this.EMAIL = EMAIL;
|
|
|
}
|
|
|
|
|
|
public String getJOB_LEVEL() {
|
|
|
return JOB_LEVEL;
|
|
|
}
|
|
|
|
|
|
public void setJOB_LEVEL(String JOB_LEVEL) {
|
|
|
this.JOB_LEVEL = JOB_LEVEL;
|
|
|
}
|
|
|
|
|
|
public String getJOB_TITLE() {
|
|
|
return JOB_TITLE;
|
|
|
}
|
|
|
|
|
|
public void setJOB_TITLE(String JOB_TITLE) {
|
|
|
this.JOB_TITLE = JOB_TITLE;
|
|
|
}
|
|
|
|
|
|
public String getJOB_TYPE() {
|
|
|
return JOB_TYPE;
|
|
|
}
|
|
|
|
|
|
public void setJOB_TYPE(String JOB_TYPE) {
|
|
|
this.JOB_TYPE = JOB_TYPE;
|
|
|
}
|
|
|
|
|
|
public String getJOB_STATUS() {
|
|
|
return JOB_STATUS;
|
|
|
}
|
|
|
|
|
|
public void setJOB_STATUS(String JOB_STATUS) {
|
|
|
this.JOB_STATUS = JOB_STATUS;
|
|
|
}
|
|
|
|
|
|
public String getJOB_POSITION() {
|
|
|
return JOB_POSITION;
|
|
|
}
|
|
|
|
|
|
public void setJOB_POSITION(String JOB_POSITION) {
|
|
|
this.JOB_POSITION = JOB_POSITION;
|
|
|
}
|
|
|
|
|
|
public String getSECRET_LEVEL() {
|
|
|
return SECRET_LEVEL;
|
|
|
}
|
|
|
|
|
|
public void setSECRET_LEVEL(String SECRET_LEVEL) {
|
|
|
this.SECRET_LEVEL = SECRET_LEVEL;
|
|
|
}
|
|
|
|
|
|
public String getUSER_POST() {
|
|
|
return USER_POST;
|
|
|
}
|
|
|
|
|
|
public void setUSER_POST(String USER_POST) {
|
|
|
this.USER_POST = USER_POST;
|
|
|
}
|
|
|
|
|
|
public String getUSER_JOB_ID() {
|
|
|
return USER_JOB_ID;
|
|
|
}
|
|
|
|
|
|
public void setUSER_JOB_ID(String USER_JOB_ID) {
|
|
|
this.USER_JOB_ID = USER_JOB_ID;
|
|
|
}
|
|
|
|
|
|
public String getORG_ID() {
|
|
|
return ORG_ID;
|
|
|
}
|
|
|
|
|
|
public void setORG_ID(String ORG_ID) {
|
|
|
this.ORG_ID = ORG_ID;
|
|
|
}
|
|
|
|
|
|
public String getUSER_TITLE() {
|
|
|
return USER_TITLE;
|
|
|
}
|
|
|
|
|
|
public void setUSER_TITLE(String USER_TITLE) {
|
|
|
this.USER_TITLE = USER_TITLE;
|
|
|
}
|
|
|
|
|
|
public String getLOGIN_NAME() {
|
|
|
return LOGIN_NAME;
|
|
|
}
|
|
|
|
|
|
public void setLOGIN_NAME(String LOGIN_NAME) {
|
|
|
this.LOGIN_NAME = LOGIN_NAME;
|
|
|
}
|
|
|
|
|
|
public String getSHOW_ORDER() {
|
|
|
return SHOW_ORDER;
|
|
|
}
|
|
|
|
|
|
public void setSHOW_ORDER(String SHOW_ORDER) {
|
|
|
this.SHOW_ORDER = SHOW_ORDER;
|
|
|
}
|
|
|
|
|
|
public String getREMARK() {
|
|
|
return REMARK;
|
|
|
}
|
|
|
|
|
|
public void setREMARK(String REMARK) {
|
|
|
this.REMARK = REMARK;
|
|
|
}
|
|
|
|
|
|
public String getNAIL_ID() {
|
|
|
return NAIL_ID;
|
|
|
}
|
|
|
|
|
|
public void setNAIL_ID(String NAIL_ID) {
|
|
|
this.NAIL_ID = NAIL_ID;
|
|
|
}
|
|
|
|
|
|
public String getPK_PSNDOC() {
|
|
|
return PK_PSNDOC;
|
|
|
}
|
|
|
|
|
|
public void setPK_PSNDOC(String PK_PSNDOC) {
|
|
|
this.PK_PSNDOC = PK_PSNDOC;
|
|
|
}
|
|
|
|
|
|
public String getPWD() {
|
|
|
return PWD;
|
|
|
}
|
|
|
|
|
|
public void setPWD(String PWD) {
|
|
|
this.PWD = PWD;
|
|
|
}
|
|
|
|
|
|
public String getPWD_ENCRYPT() {
|
|
|
return PWD_ENCRYPT;
|
|
|
}
|
|
|
|
|
|
public void setPWD_ENCRYPT(String PWD_ENCRYPT) {
|
|
|
this.PWD_ENCRYPT = PWD_ENCRYPT;
|
|
|
}
|
|
|
|
|
|
public String getUPDATE_TIME() {
|
|
|
return UPDATE_TIME;
|
|
|
}
|
|
|
|
|
|
public void setUPDATE_TIME(String UPDATE_TIME) {
|
|
|
this.UPDATE_TIME = UPDATE_TIME;
|
|
|
}
|
|
|
} |
...
|
...
|
|