[update] -增加会员管理-证书缴费后sql的增加

This commit is contained in:
fengchenchen
2021-12-24 16:37:37 +08:00
parent 94bc11674d
commit f33194398c
+16
View File
@@ -54,3 +54,19 @@ create table tb_certificate_payment
)
comment '标协会员证书缴费表' charset = utf8;
-- 证书维护 增加的sql
-- 证书缴费状态 数据字典的增加
INSERT INTO `sys_dict`(`id`, `dict_name`, `dict_code`, `description`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `type`) VALUES ('1344104518873272322', '证书缴费状态', 'certificate_payment_status', '已提交:会员提交了缴费信息,可核对,查看 已驳回:未核对通过的,可以进行查看 已核对:以核对通过,可以进行查看', 0, 'zxx', '2020-12-30 10:14:24', NULL, NULL, 0);
-- 证书缴费类型 数据字典的增加
INSERT INTO `sys_dict`(`id`, `dict_name`, `dict_code`, `description`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `type`) VALUES ('1344105936812265473', '证书缴费类型', 'certificate_payment_type', '新增/续费', 0, 'zxx', '2020-12-30 10:20:02', NULL, NULL, 0);
-- 证书缴费模块增加的数据字典
INSERT INTO `sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1344104623458242561', '1344104518873272322', '已支付', '1', '', 1.00, 1, 'zxx', '2020-12-30 10:14:49', 'BXGLZ', '2021-01-25 18:12:42');
INSERT INTO `sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1344104730870173698', '1344104518873272322', '已确认', '3', '', 3.00, 1, 'zxx', '2020-12-30 10:15:15', 'BXGLZ', '2021-01-25 18:12:52');
INSERT INTO `sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1344104790831943682', '1344104518873272322', '已驳回', '2', '', 2.00, 1, 'zxx', '2020-12-30 10:15:29', 'zxx', '2020-12-31 14:15:07');
INSERT INTO `sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1344105993636696065', '1344105936812265473', '新增', '0', '', 1.00, 1, 'zxx', '2020-12-30 10:20:16', 'zxx', '2020-12-30 16:12:38');
INSERT INTO `sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1344106032173961218', '1344105936812265473', '续费', '1', '', 2.00, 1, 'zxx', '2020-12-30 10:20:25', 'zxx', '2020-12-30 16:12:41');