From a0d8ab8f822b7c589d7b4f0ec2b11609c4951b29 Mon Sep 17 00:00:00 2001 From: lijiarao Date: Thu, 6 Jun 2024 17:18:54 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E5=A7=94=E5=91=98=E4=BC=9A=E6=88=90?= =?UTF-8?q?=E5=91=98=20=E7=85=A7=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/24年6月变更.sql | 1 + .../com/jero/committee/entity/PayCommitteeMemberInfo.java | 6 ++++++ 2 files changed, 7 insertions(+) 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