354 lines
7.9 KiB
Java
354 lines
7.9 KiB
Java
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;
|
|
}
|
|
}
|