邮箱完善

This commit is contained in:
18792927508
2023-11-16 12:09:36 +08:00
parent d8c09d6dff
commit 5287c031bc
9 changed files with 110 additions and 7 deletions
@@ -31,6 +31,10 @@ public class CaseAffiliate extends BaseEntity {
* 法定代表人
*/
private String compLegalPerson;
/**
* 邮箱
*/
private String email;
/**
* 法定代表人职位
*/
@@ -45,6 +49,14 @@ public class CaseAffiliate extends BaseEntity {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date responBirth;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Date getResponBirth() {
return responBirth;
}