优化生成裁决书功能

This commit is contained in:
qitz
2023-10-17 22:20:38 +08:00
parent 5d2fdedfcf
commit 5b46ee97b1
3 changed files with 54 additions and 35 deletions
@@ -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 = "身份证号")