diff --git a/db/24年6月变更.sql b/db/24年6月变更.sql index d41ab1af..d78feedc 100644 --- a/db/24年6月变更.sql +++ b/db/24年6月变更.sql @@ -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) ) diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/committee/entity/PayCommitteeMemberInfo.java b/jero-boot-incoming-payment/src/main/java/com/jero/committee/entity/PayCommitteeMemberInfo.java index 975fe759..6def9297 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/committee/entity/PayCommitteeMemberInfo.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/committee/entity/PayCommitteeMemberInfo.java @@ -280,4 +280,10 @@ public class PayCommitteeMemberInfo { @TableField(value = "birth_date") @ApiModelProperty(value = "出生年月") private String birthDate; + /** + * 个人证件照 + */ + @TableField(value = "photo") + @ApiModelProperty(value = "个人证件照") + private String photo; } \ No newline at end of file