| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- package com.ruoyi.wisdomarbitrate.domain;
-
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
-
- import java.util.Date;
-
- public class CaseAffiliate extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /** ID */
- @Excel(name = "ID", cellType = Excel.ColumnType.NUMERIC, prompt = "ID")
- private Long id;
- /** 案件申请id */
- private Long caseAppliId;
- /**
- * 案件申请日志id
- */
- private Long caseAppliLogId;
- /** 身份类型 */
- private int identityType;
- /** 姓名 */
- @Excel(name = "姓名")
- private String name;
- /**
- * 申请机构id
- */
- private String applicationOrganId;
- /**
- * 申请机构名称
- */
- private String applicationOrganName;
-
- /**
- * 法定代表人
- */
- private String compLegalPerson;
- /**
- * 邮箱
- */
- private String email;
- /**
- * 法定代表人职位
- */
- private String compLegalperPost;
- /**
- * 被申请人性别
- */
- private String responSex;
- /**
- * 被申请人出生年月日
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date responBirth;
- /**
- * 版本号
- */
- private Integer version;
- /**
- * 改变的字段
- */
- private String changeColumn;
-
- /**
- * 代理人邮箱
- */
- private String agentEmail;
-
- public String getAgentEmail() {
- return agentEmail;
- }
-
- public void setAgentEmail(String agentEmail) {
- this.agentEmail = agentEmail;
- }
-
- public String getChangeColumn() {
- return changeColumn;
- }
-
- public void setChangeColumn(String changeColumn) {
- this.changeColumn = changeColumn;
- }
-
- public Long getCaseAppliLogId() {
- return caseAppliLogId;
- }
-
- public void setCaseAppliLogId(Long caseAppliLogId) {
- this.caseAppliLogId = caseAppliLogId;
- }
-
- public Integer getVersion() {
- return version;
- }
-
- public void setVersion(Integer version) {
- this.version = version;
- }
-
- public String getEmail() {
- return email;
- }
-
- public void setEmail(String email) {
- this.email = email;
- }
-
- public Date getResponBirth() {
- return responBirth;
- }
-
- public void setResponBirth(Date responBirth) {
- this.responBirth = responBirth;
- }
-
-
- public String getCompLegalPerson() {
- return compLegalPerson;
- }
-
- public void setCompLegalPerson(String compLegalPerson) {
- this.compLegalPerson = compLegalPerson;
- }
-
- public String getCompLegalperPost() {
- return compLegalperPost;
- }
-
- public void setCompLegalperPost(String compLegalperPost) {
- this.compLegalperPost = compLegalperPost;
- }
-
- public String getResponSex() {
- return responSex;
- }
-
- public void setResponSex(String responSex) {
- this.responSex = responSex;
- }
-
- /** 身份证号 */
- @Excel(name = "身份证号")
- private String identityNum;
- /** 单位电话 */
- @Excel(name = "单位电话")
- private String workTelphone;
- /** 联系电话 */
- @Excel(name = "联系电话")
- private String contactTelphone;
- /** 联系地址 */
- @Excel(name = "联系地址")
- private String contactAddress;
- /** 住所 */
- @Excel(name = "住所")
- private String residenAffili;
- /** 申请人代理人职称 */
- @Excel(name = "申请人代理人职称")
- private String appliAgentTitle;
-
- public String getResidenAffili() {
- return residenAffili;
- }
-
- public void setResidenAffili(String residenAffili) {
- this.residenAffili = residenAffili;
- }
-
- public String getAppliAgentTitle() {
- return appliAgentTitle;
- }
-
- public void setAppliAgentTitle(String appliAgentTitle) {
- this.appliAgentTitle = appliAgentTitle;
- }
-
- /** 单位地址 */
- @Excel(name = "单位地址")
- private String workAddress;
-
- /** 代理人姓名 */
- @Excel(name = "代理人姓名")
- private String nameAgent;
- /** 身份证号 */
- @Excel(name = "代理人身份证号")
- private String identityNumAgent;
- /** 联系电话 */
- @Excel(name = "代理人联系电话")
- private String contactTelphoneAgent;
- /** 联系地址 */
- @Excel(name = "代理人联系地址")
- private String contactAddressAgent;
-
- /** 送达电子邮件 */
- private String sendEmail;
- private String userId;
- private String applicantAgentUserId;
-
- public String getUserId() {
- return userId;
- }
-
- public void setUserId(String userId) {
- this.userId = userId;
- }
-
- public String getApplicantAgentUserId() {
- return applicantAgentUserId;
- }
-
- public void setApplicantAgentUserId(String applicantAgentUserId) {
- this.applicantAgentUserId = applicantAgentUserId;
- }
-
- /** 快递单号 */
- private String trackNum;
-
- public String getApplicationOrganId() {
- return applicationOrganId;
- }
-
- public void setApplicationOrganId(String applicationOrganId) {
- this.applicationOrganId = applicationOrganId;
- }
-
- public String getApplicationOrganName() {
- return applicationOrganName;
- }
-
- public void setApplicationOrganName(String applicationOrganName) {
- this.applicationOrganName = applicationOrganName;
- }
-
- public String getSendEmail() {
- return sendEmail;
- }
-
- public void setSendEmail(String sendEmail) {
- this.sendEmail = sendEmail;
- }
-
- public String getTrackNum() {
- return trackNum;
- }
-
- public void setTrackNum(String trackNum) {
- this.trackNum = trackNum;
- }
-
- public String getNameAgent() {
- return nameAgent;
- }
-
- public void setNameAgent(String nameAgent) {
- this.nameAgent = nameAgent;
- }
-
- public String getIdentityNumAgent() {
- return identityNumAgent;
- }
-
- public void setIdentityNumAgent(String identityNumAgent) {
- this.identityNumAgent = identityNumAgent;
- }
-
- public String getContactTelphoneAgent() {
- return contactTelphoneAgent;
- }
-
- public void setContactTelphoneAgent(String contactTelphoneAgent) {
- this.contactTelphoneAgent = contactTelphoneAgent;
- }
-
- public String getContactAddressAgent() {
- return contactAddressAgent;
- }
-
- public void setContactAddressAgent(String contactAddressAgent) {
- this.contactAddressAgent = contactAddressAgent;
- }
-
- public Long getId() {
- return id;
- }
-
- public void setId(Long id) {
- this.id = id;
- }
-
- public Long getCaseAppliId() {
- return caseAppliId;
- }
-
- public void setCaseAppliId(Long caseAppliId) {
- this.caseAppliId = caseAppliId;
- }
-
- public int getIdentityType() {
- return identityType;
- }
-
- public void setIdentityType(int identityType) {
- this.identityType = identityType;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getIdentityNum() {
- return identityNum;
- }
-
- public void setIdentityNum(String identityNum) {
- this.identityNum = identityNum;
- }
-
- public String getWorkTelphone() {
- return workTelphone;
- }
-
- public void setWorkTelphone(String workTelphone) {
- this.workTelphone = workTelphone;
- }
-
- public String getContactTelphone() {
- return contactTelphone;
- }
-
- public void setContactTelphone(String contactTelphone) {
- this.contactTelphone = contactTelphone;
- }
-
- public String getContactAddress() {
- return contactAddress;
- }
-
- public void setContactAddress(String contactAddress) {
- this.contactAddress = contactAddress;
- }
-
- public String getWorkAddress() {
- return workAddress;
- }
-
- public void setWorkAddress(String workAddress) {
- this.workAddress = workAddress;
- }
- }
|