订单添加分享佣金.sql
8.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
ALTER TABLE `im_order_refund`
ADD COLUMN `deduction_product_vb` INT(11) NULL COMMENT '退还抵扣V币' AFTER `receive_goods_dt`;
ALTER TABLE `im_order_refund`
ADD COLUMN `refund_freight` DECIMAL(18,2) NULL COMMENT '退还外加运费' ,
ADD COLUMN `refund_to_account_type` TINYINT(4) NULL COMMENT '退款客户收款账号类型:1:支付宝,2:银行账号' ,
ADD COLUMN `refund_alipay_account` VARCHAR(64) NULL COMMENT '退还支付宝账号' ,
ADD COLUMN `refund_alipay_account_real_name` VARCHAR(16) NULL COMMENT '退还支付宝账号实名' ,
ADD COLUMN `refund_bank_account` VARCHAR(64) NULL COMMENT '退还银行账号' ,
ADD COLUMN `refund_bank_account_real_name` VARCHAR(16) NULL COMMENT '退还银行账号实名' ,
ADD COLUMN `refund_bank_branch_full_name` VARCHAR(64) NULL COMMENT '退还支行银行全称';
ALTER TABLE `t_member_info`
ADD COLUMN `withdraw_password` VARCHAR(36) NULL COMMENT '提现密码,加密算法与password列一样' AFTER `password`,
ADD COLUMN `withdraw_password_salt` VARCHAR(36) NULL COMMENT '提现密码盐' AFTER `withdraw_password`,
ADD COLUMN `id_card_audit_status` TINYINT NOT NULL DEFAULT 0 COMMENT '身份证认证状态:0-未认证,1-待审核,2-认证失败,100-认证成功' AFTER `id_card`,
ADD COLUMN `id_card_img_front` VARCHAR(254) NULL COMMENT '身份证前面图片' AFTER `id_card_audit_status`,
ADD COLUMN `id_card_img_back` VARCHAR(254) NULL COMMENT '身份证背面图片' AFTER `id_card_img_front`;
# 在订单表中添加分享佣金
alter table im_doing_order_00 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_01 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_02 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_03 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_04 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_05 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_06 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_07 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_08 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_09 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_10 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_11 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_12 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_13 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_14 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_15 add share_member_id varchar(36) DEFAULT NULL comment '分享人ID';
alter table im_doing_order_00 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_01 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_02 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_03 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_04 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_05 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_06 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_07 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_08 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_09 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_10 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_11 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_12 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_13 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_14 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_15 add share_order_money decimal(10,2) DEFAULT '0.00' COMMENT '订单分享佣金';
alter table im_doing_order_00 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_01 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_02 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_03 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_04 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_05 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_06 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_07 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_08 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_09 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_10 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_11 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_12 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_13 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_14 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
alter table im_doing_order_15 add gift_coupon_id varchar(36) DEFAULT NULL comment '赠送的优惠券';
# 在子订单添加商品分享佣金
alter table im_doing_order1_00 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_01 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_02 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_03 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_04 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_05 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_06 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_07 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_08 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_09 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_10 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_11 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_12 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_13 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_14 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';
alter table im_doing_order1_15 add product_share_percentage decimal(10,2) DEFAULT NULL COMMENT '商品分享佣金';