add 委员会成员 照片

This commit is contained in:
lijiarao
2024-06-06 17:18:54 +08:00
parent 400fe4ce92
commit a0d8ab8f82
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -80,6 +80,7 @@ create table pay_committee_member_info
province_of_work_unit varchar(100) null comment '工作单位所属省_直辖市_自治区_特区',
document_type varchar(100) null comment '证件类型',
birth_date varchar(100) null comment '出生年月',
photo varchar(100) null comment '个人证件照',
constraint Index_1
unique (id)
)
@@ -280,4 +280,10 @@ public class PayCommitteeMemberInfo {
@TableField(value = "birth_date")
@ApiModelProperty(value = "出生年月")
private String birthDate;
/**
* 个人证件照
*/
@TableField(value = "photo")
@ApiModelProperty(value = "个人证件照")
private String photo;
}