This commit is contained in:
hejinbo
2023-10-18 10:22:10 +08:00
parent 163b99c7b1
commit 953410c5df
2 changed files with 14 additions and 9 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,7 @@ public class CaseAffiliate extends BaseEntity {
/**
* 被申请人出生年月日
*/
private String responBirth;
private Date responBirth;
public String getCompLegalPerson() {
return compLegalPerson;
@@ -65,11 +67,11 @@ public class CaseAffiliate extends BaseEntity {
this.responSex = responSex;
}
public String getResponBirth() {
public Date getResponBirth() {
return responBirth;
}
public void setResponBirth(String responBirth) {
public void setResponBirth(Date responBirth) {
this.responBirth = responBirth;
}