优化生成裁决书功能
This commit is contained in:
@@ -3,6 +3,8 @@ package com.ruoyi.wisdomarbitrate.domain;
|
||||
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 */
|
||||
@@ -39,7 +41,15 @@ public class CaseAffiliate extends BaseEntity {
|
||||
/**
|
||||
* 被申请人出生年月日
|
||||
*/
|
||||
private String responBirth;
|
||||
private Date responBirth;
|
||||
|
||||
public Date getResponBirth() {
|
||||
return responBirth;
|
||||
}
|
||||
|
||||
public void setResponBirth(Date responBirth) {
|
||||
this.responBirth = responBirth;
|
||||
}
|
||||
|
||||
public String getCompLegalPerson() {
|
||||
return compLegalPerson;
|
||||
@@ -65,13 +75,13 @@ public class CaseAffiliate extends BaseEntity {
|
||||
this.responSex = responSex;
|
||||
}
|
||||
|
||||
public String getResponBirth() {
|
||||
return responBirth;
|
||||
}
|
||||
|
||||
public void setResponBirth(String responBirth) {
|
||||
this.responBirth = responBirth;
|
||||
}
|
||||
// public String getResponBirth() {
|
||||
// return responBirth;
|
||||
// }
|
||||
//
|
||||
// public void setResponBirth(String responBirth) {
|
||||
// this.responBirth = responBirth;
|
||||
// }
|
||||
|
||||
/** 身份证号 */
|
||||
@Excel(name = "身份证号")
|
||||
|
||||
Reference in New Issue
Block a user