|
@ -0,0 +1,360 @@
|
|
|
|
package com.yihu.wlyy.service.third.ylz.model;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by chenweida on 2018/5/16 0016.
|
|
|
|
*/
|
|
|
|
public class YLZUser {
|
|
|
|
@JSONField(name = "empi_user_id")
|
|
|
|
private String empiUserId;//用户主索引
|
|
|
|
@JSONField(name = "name")
|
|
|
|
private String name;//姓名
|
|
|
|
@JSONField(name = "sex")
|
|
|
|
private String sex;//性别 0未知性别 1男 2女 9未说明性别
|
|
|
|
@JSONField(name = "birth_day")
|
|
|
|
private String birthDay;//出生日期 yyyyMMddHH
|
|
|
|
@JSONField(name = "birth_addr")
|
|
|
|
private String birthAddr;//出生地
|
|
|
|
@JSONField(name = "id_type")
|
|
|
|
private String idType;//证件类型 01 居民身份证 02 居民户口簿 03 护照 04 军官证 05 驾驶证 06 港澳居民来往内地通行证 07 台湾居民来往内地通行证 99 其他法定有效证件
|
|
|
|
@JSONField(name = "id_no")
|
|
|
|
private String idNo;//证件号码
|
|
|
|
|
|
|
|
@JSONField(name = "native")
|
|
|
|
private String native_;//国籍
|
|
|
|
@JSONField(name = "address")
|
|
|
|
private String address;//所在地, 通讯地址
|
|
|
|
@JSONField(name = "origin")
|
|
|
|
private String origin;//籍贯
|
|
|
|
@JSONField(name = "company")
|
|
|
|
private String company;//作单位
|
|
|
|
@JSONField(name = "company_phone")
|
|
|
|
private String companyPhone;//单位电话
|
|
|
|
@JSONField(name = "contacts_relationship")
|
|
|
|
private String contactsRelationship;//与联系人关系 参考国家互联互通标准GB/T 4761-2008
|
|
|
|
@JSONField(name = "contacts_phone")
|
|
|
|
private String contactsPhone;//联系人电话
|
|
|
|
@JSONField(name = "contacts_addr")
|
|
|
|
private String contactsAddr;//联系人地址
|
|
|
|
@JSONField(name = "is_certified")
|
|
|
|
private String isCertified;//安全认证 0否,1 是
|
|
|
|
@JSONField(name = "certificate_authority")
|
|
|
|
private String certificateAuthority;//认证机构 1经信局 2公安 等
|
|
|
|
@JSONField(name = "telephone")
|
|
|
|
private String telephone;//联系方式
|
|
|
|
@JSONField(name = "email")
|
|
|
|
private String email;//邮箱地址
|
|
|
|
@JSONField(name = "post")
|
|
|
|
private String post;//邮编
|
|
|
|
@JSONField(name = "work")
|
|
|
|
private String work;//职业
|
|
|
|
@JSONField(name = "home_phone")
|
|
|
|
private String homePhone;//家庭电话
|
|
|
|
@JSONField(name = "avatar_photo_id")
|
|
|
|
private String avatarPhotoId;//照片
|
|
|
|
@JSONField(name = "marital_status")
|
|
|
|
private String maritalStatus;//婚姻状态 10未婚 20已婚 21初婚 22再婚 23复婚 30丧偶 40离婚 90未说明的婚姻状况
|
|
|
|
@JSONField(name = "state")
|
|
|
|
private String state;//状态 normal 正常 freeze 冻结 logout 注销 lossed 挂失
|
|
|
|
@JSONField(name = "domain_id")
|
|
|
|
private String domainId;//标识域编码
|
|
|
|
@JSONField(name = "domain_name")
|
|
|
|
private String domainName;//标识域名称
|
|
|
|
@JSONField(name = "term_id")
|
|
|
|
private String termId;//终端号
|
|
|
|
@JSONField(name = "oper_id")
|
|
|
|
private String operId;//操作员编号
|
|
|
|
@JSONField(name = "oper_name")
|
|
|
|
private String operName;//操作员姓名
|
|
|
|
@JSONField(name = "crt_date")
|
|
|
|
private String crtDate;//创建日期
|
|
|
|
@JSONField(name = "crt_time")
|
|
|
|
private String crtTime;//创建时间
|
|
|
|
@JSONField(name = "nation")
|
|
|
|
private String nation;//民族
|
|
|
|
@JSONField(name = "contacts_name")
|
|
|
|
private String contactsName;//联系人姓名
|
|
|
|
|
|
|
|
private YLZUserCard ylzUserCard;
|
|
|
|
|
|
|
|
public String getEmpiUserId() {
|
|
|
|
return empiUserId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEmpiUserId(String empiUserId) {
|
|
|
|
this.empiUserId = empiUserId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSex() {
|
|
|
|
return sex;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSex(String sex) {
|
|
|
|
this.sex = sex;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBirthDay() {
|
|
|
|
return birthDay;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBirthDay(String birthDay) {
|
|
|
|
this.birthDay = birthDay;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBirthAddr() {
|
|
|
|
return birthAddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBirthAddr(String birthAddr) {
|
|
|
|
this.birthAddr = birthAddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getIdType() {
|
|
|
|
return idType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIdType(String idType) {
|
|
|
|
this.idType = idType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getIdNo() {
|
|
|
|
return idNo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIdNo(String idNo) {
|
|
|
|
this.idNo = idNo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getNative_() {
|
|
|
|
return native_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setNative_(String native_) {
|
|
|
|
this.native_ = native_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAddress() {
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAddress(String address) {
|
|
|
|
this.address = address;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOrigin() {
|
|
|
|
return origin;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOrigin(String origin) {
|
|
|
|
this.origin = origin;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCompany() {
|
|
|
|
return company;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCompany(String company) {
|
|
|
|
this.company = company;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCompanyPhone() {
|
|
|
|
return companyPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCompanyPhone(String companyPhone) {
|
|
|
|
this.companyPhone = companyPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactsRelationship() {
|
|
|
|
return contactsRelationship;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactsRelationship(String contactsRelationship) {
|
|
|
|
this.contactsRelationship = contactsRelationship;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactsPhone() {
|
|
|
|
return contactsPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactsPhone(String contactsPhone) {
|
|
|
|
this.contactsPhone = contactsPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactsAddr() {
|
|
|
|
return contactsAddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactsAddr(String contactsAddr) {
|
|
|
|
this.contactsAddr = contactsAddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getIsCertified() {
|
|
|
|
return isCertified;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIsCertified(String isCertified) {
|
|
|
|
this.isCertified = isCertified;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCertificateAuthority() {
|
|
|
|
return certificateAuthority;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCertificateAuthority(String certificateAuthority) {
|
|
|
|
this.certificateAuthority = certificateAuthority;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTelephone() {
|
|
|
|
return telephone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTelephone(String telephone) {
|
|
|
|
this.telephone = telephone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEmail() {
|
|
|
|
return email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEmail(String email) {
|
|
|
|
this.email = email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPost() {
|
|
|
|
return post;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPost(String post) {
|
|
|
|
this.post = post;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWork() {
|
|
|
|
return work;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWork(String work) {
|
|
|
|
this.work = work;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getHomePhone() {
|
|
|
|
return homePhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHomePhone(String homePhone) {
|
|
|
|
this.homePhone = homePhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAvatarPhotoId() {
|
|
|
|
return avatarPhotoId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAvatarPhotoId(String avatarPhotoId) {
|
|
|
|
this.avatarPhotoId = avatarPhotoId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMaritalStatus() {
|
|
|
|
return maritalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMaritalStatus(String maritalStatus) {
|
|
|
|
this.maritalStatus = maritalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getState() {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setState(String state) {
|
|
|
|
this.state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDomainId() {
|
|
|
|
return domainId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDomainId(String domainId) {
|
|
|
|
this.domainId = domainId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDomainName() {
|
|
|
|
return domainName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDomainName(String domainName) {
|
|
|
|
this.domainName = domainName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTermId() {
|
|
|
|
return termId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTermId(String termId) {
|
|
|
|
this.termId = termId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOperId() {
|
|
|
|
return operId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOperId(String operId) {
|
|
|
|
this.operId = operId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOperName() {
|
|
|
|
return operName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOperName(String operName) {
|
|
|
|
this.operName = operName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCrtDate() {
|
|
|
|
return crtDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCrtDate(String crtDate) {
|
|
|
|
this.crtDate = crtDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCrtTime() {
|
|
|
|
return crtTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCrtTime(String crtTime) {
|
|
|
|
this.crtTime = crtTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getNation() {
|
|
|
|
return nation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setNation(String nation) {
|
|
|
|
this.nation = nation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactsName() {
|
|
|
|
return contactsName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactsName(String contactsName) {
|
|
|
|
this.contactsName = contactsName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public YLZUserCard getYlzUserCard() {
|
|
|
|
return ylzUserCard;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setYlzUserCard(YLZUserCard ylzUserCard) {
|
|
|
|
this.ylzUserCard = ylzUserCard;
|
|
|
|
}
|
|
|
|
}
|