add 会员系统组合缴费的三种金额

This commit is contained in:
lijiarao
2022-07-18 09:58:36 +08:00
parent 147d4d66b3
commit 14eb361600
3 changed files with 28 additions and 0 deletions
+9
View File
@@ -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 '其他缴费金额';
@@ -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;
}
@@ -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;
}