diff --git a/db/22年7月变更.sql b/db/22年7月变更.sql index da3250db..78e9ba13 100644 --- a/db/22年7月变更.sql +++ b/db/22年7月变更.sql @@ -41,3 +41,12 @@ ALTER TABLE `pay_case_committee` add COLUMN `principal_name_b` varchar (50) CHAR INSERT INTO sys_dict ( id, dict_name, dict_code, description, del_flag, create_by, create_time ) VALUES ( '1547479075568955393', '问题征集状态', 'questionStatue', '问题征集状态', 0, 'LKGLZ', '2022-07-14 15:12:17' ); INSERT INTO sys_dict_item ( id, dict_id, item_text, item_value, description, sort_order, status, create_by, create_time ) VALUES ( '1547479215562240001', '1547479075568955393', '已结束', '0', '已结束', 1, 1, 'LKGLZ', '2022-07-14 15:12:50' ); INSERT INTO sys_dict_item ( id, dict_id, item_text, item_value, description, sort_order, status, create_by, create_time ) VALUES ( '1547479261783470082', '1547479075568955393', '征集中', '1', '', 1, 1, 'LKGLZ', '2022-07-14 15:13:01' ); + +alter table tb_member_project_subitem + add column member_payment_amount decimal(12, 2) null comment '会员缴费金额', + add column certificate_payment_amount decimal(12, 2) null comment '证书缴费金额', + add column other_payment_amount decimal(12, 2) null comment '其他缴费金额'; +alter table tb_certificate_payment + add column member_payment_amount decimal(12, 2) null comment '会员缴费金额', + add column certificate_payment_amount decimal(12, 2) null comment '证书缴费金额', + add column other_payment_amount decimal(12, 2) null comment '其他缴费金额'; \ No newline at end of file diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbCertificatePayment.java b/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbCertificatePayment.java index 79263095..fc65a610 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbCertificatePayment.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbCertificatePayment.java @@ -286,4 +286,14 @@ public class TbCertificatePayment implements Serializable { @ApiModelProperty(value = "银行账户") private String bankAccount; + /**会员缴费金额*/ + @ApiModelProperty(value = "会员缴费金额") + private BigDecimal memberPaymentAmount; + /**证书缴费金额*/ + @ApiModelProperty(value = "证书缴费金额") + private BigDecimal certificatePaymentAmount; + /**其他缴费金额*/ + @ApiModelProperty(value = "其他缴费金额") + private BigDecimal otherPaymentAmount; + } diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbMemberProjectSubitem.java b/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbMemberProjectSubitem.java index f3028ea7..a3a4f357 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbMemberProjectSubitem.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/member/entity/TbMemberProjectSubitem.java @@ -258,4 +258,13 @@ public class TbMemberProjectSubitem implements Serializable { /**入会申请表文件id*/ @ApiModelProperty(value = "银行账户") private String bankAccount; + /**会员缴费金额*/ + @ApiModelProperty(value = "会员缴费金额") + private BigDecimal memberPaymentAmount; + /**证书缴费金额*/ + @ApiModelProperty(value = "证书缴费金额") + private BigDecimal certificatePaymentAmount; + /**其他缴费金额*/ + @ApiModelProperty(value = "其他缴费金额") + private BigDecimal otherPaymentAmount; }