172 lines
4.0 KiB
Java
172 lines
4.0 KiB
Java
package com.ruoyi.wisdomarbitrate.domain;
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
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;
|
|
/** 身份类型 */
|
|
private int identityType;
|
|
/** 姓名 */
|
|
@Excel(name = "姓名")
|
|
private String name;
|
|
/** 身份证号 */
|
|
@Excel(name = "身份证号")
|
|
private String identityNum;
|
|
/** 单位电话 */
|
|
@Excel(name = "单位电话")
|
|
private String workTelphone;
|
|
/** 联系电话 */
|
|
@Excel(name = "联系电话")
|
|
private String contactTelphone;
|
|
/** 联系地址 */
|
|
@Excel(name = "联系地址")
|
|
private String contactAddress;
|
|
/** 单位地址 */
|
|
@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 trackNum;
|
|
|
|
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;
|
|
}
|
|
}
|