-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql.sql
2384 lines (2048 loc) · 88.4 KB
/
sql.sql
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- 数据库: `dxch_dev`
--
-- --------------------------------------------------------
--
-- 表的结构 `dxch_act`
--
CREATE TABLE `dxch_act` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`name` varchar(20) NOT NULL COMMENT '名称',
`title` varchar(20) NOT NULL COMMENT '标题',
`type` int(4) DEFAULT '0' COMMENT '类型 0:优惠券 1:满赠 2:满减 3:限时秒杀 4:活动弹窗',
`can_union` int(4) DEFAULT '0' COMMENT '是否可重叠使用 0:否',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '链接',
`content` varchar(255) NOT NULL DEFAULT '' COMMENT '内容',
`rule_id` int(4) DEFAULT '0' COMMENT '规则ID',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='活动主表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_act_rule`
--
CREATE TABLE `dxch_act_rule` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`act_id` int(4) DEFAULT '0' COMMENT '活动ID',
`num` int(4) DEFAULT '0' COMMENT '数量:折扣:N%金额 满赠N件SKU 满减N元 秒杀:N元价格',
`type` int(4) DEFAULT '0' COMMENT '0:金额 1:件数',
`start_at` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
`end_at` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='活动规则表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_act_spu`
--
CREATE TABLE `dxch_act_spu` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`act_id` int(4) DEFAULT '0' COMMENT '活动ID',
`is_all` int(4) DEFAULT '0' COMMENT '是否全部商品参加活动',
`brand_id` int(4) DEFAULT '0' COMMENT '商品品牌',
`cat_id` int(4) DEFAULT '0' COMMENT '商品分类',
`spu_id` varchar(255) DEFAULT '' COMMENT '商品ID',
`sku_id` varchar(255) DEFAULT '' COMMENT 'skuID',
`stock` int(4) DEFAULT '0' COMMENT '活动库存',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='活动商品表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_act_user`
--
CREATE TABLE `dxch_act_user` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`act_id` int(4) DEFAULT '0' COMMENT '活动ID',
`is_all` int(4) DEFAULT '0' COMMENT '是否全部参加活动',
`level` int(4) DEFAULT '0' COMMENT '用户等级',
`user_id` varchar(255) DEFAULT '' COMMENT '用户ID',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='活动用户表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_area`
--
CREATE TABLE `dxch_area` (
`id` int(11) NOT NULL,
`country_id` int(11) DEFAULT NULL,
`code` int(11) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`cname` varchar(255) DEFAULT NULL,
`lower_name` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- 表的结构 `dxch_article`
--
CREATE TABLE `dxch_article` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`name` varchar(100) NOT NULL COMMENT '文章名',
`title` varchar(100) NOT NULL COMMENT '文章标题',
`main_img` varchar(255) NOT NULL COMMENT '封面图',
`type` int(4) DEFAULT '0' COMMENT '文章类型 0:默认 1:关于我们 2:产品预定协议 3:隐私协议',
`cat_id` int(4) DEFAULT '0' COMMENT '分类ID',
`group_id` varchar(255) DEFAULT '' COMMENT '分组ID',
`content` mediumtext COMMENT '文章内容',
`is_new` int(4) DEFAULT '0' COMMENT '是否最新',
`sort` int(4) DEFAULT '1' COMMENT '排序',
`status` int(4) DEFAULT '1' COMMENT '状态 1:上架 0:下架',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='文章表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_attr`
--
CREATE TABLE `dxch_attr` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) NOT NULL COMMENT '名称',
`title` varchar(20) NOT NULL DEFAULT '' COMMENT '标题',
`content` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='产品属性表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_balance_details`
--
CREATE TABLE `dxch_balance_details` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`balance_change` int(4) DEFAULT '0' COMMENT '变更金额',
`balance` int(4) DEFAULT '0' COMMENT '变更后金额',
`change_at` timestamp NULL DEFAULT NULL COMMENT '变更时间',
`pay_type` int(4) DEFAULT '0' COMMENT '支付方式',
`note` varchar(50) DEFAULT '' COMMENT '备注',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='余额明细表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_balance_withdraw`
--
CREATE TABLE `dxch_balance_withdraw` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`withdraw_balance` int(4) DEFAULT '0' COMMENT '提现金额',
`pay_balance` int(4) DEFAULT '0' COMMENT '打款金额',
`withdraw_type` int(4) DEFAULT '0' COMMENT '提现方式',
`account` varchar(50) NOT NULL COMMENT '收款账号',
`identity` varchar(50) NOT NULL COMMENT '身份信息',
`withdraw_at` timestamp NULL DEFAULT NULL COMMENT '提现时间',
`status` int(4) DEFAULT '0' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='余额提现表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_bonus_records`
--
CREATE TABLE `dxch_bonus_records` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`bonus_balance` int(4) DEFAULT '0' COMMENT '分红金额',
`settlement_at` timestamp NULL DEFAULT NULL COMMENT '结算时间',
`note` varchar(50) DEFAULT '' COMMENT '备注',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='分红记录表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_brand`
--
CREATE TABLE `dxch_brand` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) NOT NULL COMMENT '名称',
`title` varchar(20) NOT NULL DEFAULT '' COMMENT '标题',
`content` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='产品品牌表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_cart`
--
CREATE TABLE `dxch_cart` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`mem_id` int(4) DEFAULT '0' COMMENT 'mem_id',
`old_price` int(4) DEFAULT '0' COMMENT '原价',
`price` int(4) DEFAULT '0' COMMENT '价格',
`num` int(4) DEFAULT '0' COMMENT '数量',
`num_unit` int(4) DEFAULT '0' COMMENT '单位',
`attr_id` varchar(255) DEFAULT '' COMMENT '属性ID',
`tag_id` varchar(255) DEFAULT '' COMMENT '标签ID',
`content` varchar(255) NOT NULL COMMENT '详情页',
`act_id` int(4) DEFAULT '0' COMMENT '活动ID',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='购物车表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_cat`
--
CREATE TABLE `dxch_cat` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) NOT NULL COMMENT '名称',
`title` varchar(20) DEFAULT '' COMMENT '标题',
`main_img` varchar(255) DEFAULT '' COMMENT '封面图',
`content` varchar(255) DEFAULT '' COMMENT '描述',
`fid` int(4) DEFAULT '0' COMMENT '父ID',
`cid` int(4) DEFAULT '0' COMMENT '子ID',
`level` int(4) DEFAULT '0' COMMENT '层级',
`sort` int(4) DEFAULT '0' COMMENT '序号',
`icon` varchar(255) DEFAULT '' COMMENT 'icon',
`type` int(4) DEFAULT '0' COMMENT '类型 1:出行 2:基础服务',
`url` varchar(255) DEFAULT '' COMMENT '跳转链接',
`status` int(4) DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='产品分类表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_cities`
--
CREATE TABLE `dxch_cities` (
`id` smallint(5) UNSIGNED NOT NULL,
`state_id` smallint(6) NOT NULL COMMENT '所属州省代码',
`code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lower_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code_full` char(9) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '地区代码',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- 表的结构 `dxch_commission_agent`
--
CREATE TABLE `dxch_commission_agent` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(11) NOT NULL COMMENT '用户',
`level` int(11) NOT NULL COMMENT '分销商等级',
`apply_info` text COMMENT '申请信息',
`total_income` int(11) NOT NULL DEFAULT '0' COMMENT '总收益',
`child_order_money_0` int(11) NOT NULL DEFAULT '0' COMMENT '自购/直推分销订单金额',
`child_order_money_1` int(11) NOT NULL DEFAULT '0' COMMENT '一级分销订单总金额',
`child_order_money_2` int(11) NOT NULL DEFAULT '0' COMMENT '二级分销订单总金额',
`child_order_money_all` int(11) NOT NULL DEFAULT '0' COMMENT '团队分销订单总金额',
`child_order_count_0` int(11) NOT NULL DEFAULT '0' COMMENT '自购/直推分销订单数量',
`child_order_count_1` int(11) NOT NULL DEFAULT '0' COMMENT '一级分销订单数量',
`child_order_count_2` int(11) NOT NULL DEFAULT '0' COMMENT '二级分销订单数量',
`child_order_count_all` int(11) NOT NULL DEFAULT '0' COMMENT '团队分销订单数量',
`child_agent_count_1` int(11) NOT NULL DEFAULT '0' COMMENT '直推分销商人数',
`child_agent_count_2` int(11) NOT NULL DEFAULT '0' COMMENT '二级分销商人数',
`child_agent_count_all` int(11) NOT NULL DEFAULT '0' COMMENT '团队分销商人数',
`child_agent_level_1` varchar(255) DEFAULT '' COMMENT '一级分销商等级统计',
`child_agent_level_all` varchar(255) DEFAULT '' COMMENT '团队分销商等级统计',
`child_user_count_1` int(11) NOT NULL DEFAULT '0' COMMENT '一级用户人数',
`child_user_count_2` int(11) NOT NULL DEFAULT '0' COMMENT '二级用户人数',
`child_user_count_all` int(11) NOT NULL DEFAULT '0' COMMENT '团队用户人数',
`upgrade_lock` tinyint(4) NOT NULL DEFAULT '0' COMMENT '升级锁定:0=不锁定,1=锁定',
`apply_num` int(11) NOT NULL DEFAULT '0' COMMENT '提交申请次数',
`level_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '升级状态:0=不升级,>1=待升级等级',
`status` int(4) DEFAULT '1' COMMENT '分销商状态:默认1: normal正常 0:forbidden禁用,2:pending审核中,3:freeze=冻结,4:reject=拒绝',
`become_at` int(10) DEFAULT NULL COMMENT '成为分销商时间',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='分销商';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_commission_details`
--
CREATE TABLE `dxch_commission_details` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`commission_source` int(4) DEFAULT '0' COMMENT '佣金来源',
`balance_change` int(4) DEFAULT '0' COMMENT '变更金额',
`balance` int(4) DEFAULT '0' COMMENT '变更后金额',
`change_at` timestamp NULL DEFAULT NULL COMMENT '变更时间',
`pay_type` int(4) DEFAULT '0' COMMENT '支付方式',
`note` varchar(50) DEFAULT '' COMMENT '备注',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='佣金明细表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_commission_records`
--
CREATE TABLE `dxch_commission_records` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`commission_balance` int(4) DEFAULT '0' COMMENT '佣金金额',
`commission_source` int(4) DEFAULT '0' COMMENT '佣金来源 1:订单佣金',
`commission_integral` int(4) DEFAULT '0' COMMENT '佣金积分',
`commission_at` timestamp NULL DEFAULT NULL COMMENT '发放时间',
`status` int(4) DEFAULT '0' COMMENT '状态 0:未发放 1:已发放',
`order_status` int(4) DEFAULT '0' COMMENT '订单状态',
`note` varchar(50) DEFAULT '' COMMENT '备注',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='佣金记录表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_commission_withdraw`
--
CREATE TABLE `dxch_commission_withdraw` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`withdraw_balance` int(4) DEFAULT '0' COMMENT '提现金额',
`pay_balance` int(4) DEFAULT '0' COMMENT '打款金额',
`withdraw_type` int(4) DEFAULT '0' COMMENT '提现方式',
`account` varchar(50) NOT NULL COMMENT '收款账号',
`identity` varchar(50) NOT NULL COMMENT '身份信息',
`withdraw_at` timestamp NULL DEFAULT NULL COMMENT '提现时间',
`status` int(4) DEFAULT '0' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='佣金提现表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_consumption_details`
--
CREATE TABLE `dxch_consumption_details` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`pay_project` varchar(50) DEFAULT '' COMMENT '支付项目',
`pay_price` int(4) DEFAULT '0' COMMENT '支付金额',
`pay_type` int(4) DEFAULT '0' COMMENT '支付方式',
`pay_at` timestamp NULL DEFAULT NULL COMMENT '付款时间',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消费明细表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_continents`
--
CREATE TABLE `dxch_continents` (
`id` int(8) UNSIGNED NOT NULL COMMENT '自增id',
`name` varchar(16) DEFAULT NULL COMMENT '英文名',
`cname` varchar(16) DEFAULT NULL COMMENT '中文名',
`lower_name` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- 表的结构 `dxch_countries`
--
CREATE TABLE `dxch_countries` (
`id` smallint(5) UNSIGNED NOT NULL,
`continent_id` int(11) DEFAULT NULL,
`code` char(3) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '地区代码',
`name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '名称',
`full_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`full_cname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lower_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remark` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- 表的结构 `dxch_custom_form`
--
CREATE TABLE `dxch_custom_form` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) DEFAULT '' COMMENT '表单名称',
`type` int(4) DEFAULT '0' COMMENT '表单类型 1:出行人',
`is_active` int(4) DEFAULT '1' COMMENT '是否启用 1:是 0:否',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='自定义表单表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dest`
--
CREATE TABLE `dxch_dest` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) NOT NULL COMMENT '名称',
`title` varchar(20) DEFAULT '' COMMENT '标题',
`main_img` varchar(255) NOT NULL COMMENT '封面图',
`content` varchar(255) DEFAULT '' COMMENT '描述',
`dest_id` int(4) DEFAULT '0' COMMENT '第三方ID',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='产品目的地表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dis`
--
CREATE TABLE `dxch_dis` (
`id` int(11) NOT NULL COMMENT 'ID',
`user_id` int(4) DEFAULT '0' COMMENT '邀请人userID',
`fid` int(4) DEFAULT '0' COMMENT '被邀请人的父ID',
`cid` int(4) DEFAULT '0' COMMENT '被邀请人ID',
`level` int(4) DEFAULT '0' COMMENT '被邀请人所在的层级',
`start_at` timestamp NULL DEFAULT NULL COMMENT '邀请时间',
`type` int(4) DEFAULT '0' COMMENT ' 1:邀请注册 2:邀请下单',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='分销表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dis_conditions`
--
CREATE TABLE `dxch_dis_conditions` (
`id` int(11) NOT NULL COMMENT 'ID',
`field_name` varchar(255) NOT NULL,
`operator` enum('==','!=','>=','<=','<','>') NOT NULL,
`value` varchar(255) NOT NULL,
`rule_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='条件表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dis_rule`
--
CREATE TABLE `dxch_dis_rule` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`name` varchar(20) NOT NULL COMMENT '名称',
`dis_id` int(4) DEFAULT '0' COMMENT '分销ID',
`num` int(4) DEFAULT '0' COMMENT 'N金额 N人 N酒',
`unit` int(4) DEFAULT '0' COMMENT '0:元 2:人 3:瓶 4:件',
`return_num` int(4) DEFAULT '0' COMMENT 'N金额 N% N酒 ',
`return_unit` int(4) DEFAULT '0' COMMENT '0:元 1:百分比金额 3:瓶 4:件',
`can_union` int(4) DEFAULT '0' COMMENT '规则是否可以重叠使用',
`start_at` timestamp NULL DEFAULT NULL COMMENT '开始时间',
`end_at` timestamp NULL DEFAULT NULL COMMENT '结束时间',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='分销规则表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dis_rules`
--
CREATE TABLE `dxch_dis_rules` (
`id` int(11) NOT NULL COMMENT 'ID',
`type` enum('AND','OR') NOT NULL,
`description` varchar(255) DEFAULT '',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='规则表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dis_rule_conditions`
--
CREATE TABLE `dxch_dis_rule_conditions` (
`rule_id` int(11) NOT NULL,
`condition_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='规则-条件关系表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_dis_rule_hierarchy`
--
CREATE TABLE `dxch_dis_rule_hierarchy` (
`parent_rule_id` int(11) NOT NULL,
`child_rule_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='规则层次关系表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_end_user`
--
CREATE TABLE `dxch_end_user` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`username` varchar(20) NOT NULL COMMENT '用户名',
`nickname` varchar(10) DEFAULT NULL COMMENT '昵称',
`password` varchar(255) NOT NULL COMMENT '密码',
`openid` varchar(50) NOT NULL DEFAULT '' COMMENT '授权ID',
`avatar` varchar(255) DEFAULT NULL COMMENT '头像',
`phone` char(15) DEFAULT NULL COMMENT '手机',
`level` int(4) DEFAULT '0' COMMENT '等级 0:普通用户/游客',
`is_new` int(4) DEFAULT '0' COMMENT '是否是新用户',
`wallet` int(4) DEFAULT '0' COMMENT '钱包金额',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间',
`api_token` varchar(255) DEFAULT '' COMMENT 'token',
`remember_token` varchar(255) DEFAULT '' COMMENT 'remember_token'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='后台用户表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_evaluate`
--
CREATE TABLE `dxch_evaluate` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`spu_id` int(4) DEFAULT '0' COMMENT '产品ID',
`order_id` int(4) DEFAULT '0' COMMENT '订单ID',
`user_id` int(4) DEFAULT '0' COMMENT '评价用户ID',
`user_avatar` varchar(255) DEFAULT '' COMMENT '用户头像',
`user_nickname` varchar(255) DEFAULT '' COMMENT '用户昵称',
`is_virtual` int(4) DEFAULT '0' COMMENT '是否是虚拟用户 1:是 0:否',
`score` int(4) DEFAULT '0' COMMENT '打分',
`images` varchar(255) DEFAULT '' COMMENT '上传图片',
`content` varchar(255) DEFAULT '' COMMENT '评价内容',
`reply_content` varchar(255) DEFAULT '' COMMENT '商家回复内容',
`reply_time` timestamp NULL DEFAULT NULL COMMENT '商家回复时间',
`status` int(11) NOT NULL DEFAULT '0' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品评价表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_finance`
--
CREATE TABLE `dxch_finance` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`amount` int(4) DEFAULT '0' COMMENT '总账金额',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='财务主表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_font_user`
--
CREATE TABLE `dxch_font_user` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`username` varchar(20) NOT NULL COMMENT '用户名',
`nickname` varchar(10) DEFAULT NULL COMMENT '昵称',
`password` varchar(255) NOT NULL COMMENT '密码',
`openid` varchar(50) DEFAULT '' COMMENT '授权ID',
`avatar` varchar(255) DEFAULT NULL COMMENT '头像',
`phone` char(15) DEFAULT NULL COMMENT '手机',
`wechat_phone` char(15) DEFAULT NULL COMMENT '用户微信授权手机',
`level` int(4) DEFAULT '0' COMMENT '等级 0:普通用户/游客',
`is_new` int(4) DEFAULT '0' COMMENT '是否是新用户',
`wallet` int(4) DEFAULT '0' COMMENT '钱包金额',
`commission` int(4) DEFAULT '0' COMMENT '佣金',
`source` int(4) DEFAULT '0' COMMENT '来源 0:未知 1:小程序',
`parent_user_id` int(4) DEFAULT '0' COMMENT '上级用户id',
`invite_code` varchar(20) NOT NULL DEFAULT '' COMMENT '邀请码',
`has_wx_user_info` int(4) DEFAULT '0' COMMENT '用户是否授权了头像和昵称 0:否 1:是',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间',
`api_token` varchar(255) DEFAULT '' COMMENT 'token',
`remember_token` varchar(255) DEFAULT '' COMMENT 'remember_token'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='前台用户表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_font_virtual_user`
--
CREATE TABLE `dxch_font_virtual_user` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`username` varchar(20) NOT NULL COMMENT '用户名',
`nickname` varchar(10) DEFAULT '' COMMENT '昵称',
`avatar` varchar(255) DEFAULT '' COMMENT '头像',
`phone` char(15) DEFAULT '' COMMENT '手机',
`level` int(4) DEFAULT '0' COMMENT '等级 0:普通用户/游客',
`status` int(11) DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='前台虚拟用户表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_form_fields`
--
CREATE TABLE `dxch_form_fields` (
`id` int(11) NOT NULL COMMENT 'ID',
`user_id` int(4) DEFAULT '0' COMMENT '用户ID',
`form_id` int(4) NOT NULL COMMENT '表单ID',
`sort` int(4) DEFAULT '0' COMMENT '排序',
`name` varchar(20) NOT NULL COMMENT '字段名称',
`type` int(4) DEFAULT '1' COMMENT '组件类型 (1:单行输入 2:多行输入 3:单项选择 4:多项选择 5:普通选择 6:时间选择 7:日期选择 8:省市区选择 9:上传图片)',
`param_json` text COMMENT '组件参数',
`default_value` varchar(255) DEFAULT '' COMMENT '默认值',
`required` int(4) DEFAULT '1' COMMENT '是否必填 1:是 0:否',
`value` varchar(255) NOT NULL COMMENT '值',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='表单字段表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_group`
--
CREATE TABLE `dxch_group` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) NOT NULL COMMENT '名称',
`main_img` varchar(255) DEFAULT '' COMMENT '封面图',
`sort` int(4) DEFAULT '0' COMMENT '序号',
`status` int(4) DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='产品分组表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_insured_person`
--
CREATE TABLE `dxch_insured_person` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`user_id` int(4) NOT NULL COMMENT '用户ID',
`name` varchar(20) NOT NULL COMMENT '姓名',
`sex` int(4) DEFAULT '0' COMMENT '性别 1:男 0:女',
`id_type` int(4) DEFAULT '0' COMMENT '证件类型 0:身份证 1:护照',
`id_no` varchar(20) NOT NULL COMMENT '证件号码',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='投保人表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_invoice`
--
CREATE TABLE `dxch_invoice` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号/订单号',
`user_id` int(4) DEFAULT '0' COMMENT 'user_id',
`invoice_amount` int(4) DEFAULT '0' COMMENT '可开票金额',
`invoice_type` int(4) DEFAULT '0' COMMENT '发票类型',
`invoice_title_type` int(4) DEFAULT '0' COMMENT '抬头类型',
`invoice_title` varchar(50) NOT NULL COMMENT '发票抬头',
`invoice_content` varchar(50) NOT NULL COMMENT '发票内容',
`invoice_taxpayer` varchar(50) NOT NULL COMMENT '纳税人识别号',
`invoice_address` varchar(50) NOT NULL COMMENT '注册地址',
`invoice_bank` varchar(50) NOT NULL COMMENT '开户银行',
`invoice_phone` varchar(50) NOT NULL COMMENT '手机号',
`invoice_email` varchar(50) NOT NULL COMMENT '邮箱',
`status` int(4) DEFAULT '0' COMMENT '状态',
`invoice_at` timestamp NULL DEFAULT NULL COMMENT '开票时间',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发票表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_member_card`
--
CREATE TABLE `dxch_member_card` (
`id` int(11) NOT NULL COMMENT 'ID',
`sort` int(4) DEFAULT '0' COMMENT '用于升级顺序判断,数字越大等级越高',
`name` varchar(20) NOT NULL COMMENT '卡名(等级名称)',
`main_img` varchar(255) DEFAULT '' COMMENT '等级图标',
`discount` int(4) DEFAULT '10' COMMENT '折扣(10表示不打折,9.5表示打九五折)',
`limit` int(4) DEFAULT '0' COMMENT '人数限制。达到人数限制将不可申请和自动升级到该等级,0表示不限制',
`can_apply` int(4) DEFAULT '0' COMMENT '是否可申请 0:否 1: 是。 是否可以由用户主动提交申请资料申请成为该级别',
`upgrade_fee` int(4) DEFAULT '0' COMMENT '升级费用。提交申请时需要交升级费,0代表免费申请',
`upgrade_fee_distribution` int(4) DEFAULT '0' COMMENT '升级费用是否参与分销 0:否 1:是 ',
`apply_audit` int(4) DEFAULT '0' COMMENT '申请资料是否需要后台审核 0:否 1:是 ',
`apply_setting_id` int(4) DEFAULT '0' COMMENT '申请资料设置 关联 会员卡申请资料表',
`auto_upgrade` int(4) DEFAULT '1' COMMENT '是否可自动升级 0:否 1: 是。 开启后则达到设置条件自动升级为该级别',
`show_upgrade_condition` int(4) DEFAULT '0' COMMENT '自动升级条件显示。0:隐藏 1:显示。 控制前端是否显示升级条件',
`reward_integral` int(4) DEFAULT '0' COMMENT '升到此等级,奖励积分',
`reward_balance` int(4) DEFAULT '0' COMMENT '升到此等级,奖励余额',
`reward_commission` int(4) DEFAULT '0' COMMENT '升到此等级,奖励佣金',
`reward_recommend` int(4) DEFAULT '0' COMMENT '升到此等级,给推荐人奖励佣金',
`distribute_enable` int(4) DEFAULT '0' COMMENT '分销权限之是否开启权限 0:否 1:是',
`distribute_level` int(4) DEFAULT '0' COMMENT '分销权限之分销层级。1:一级分销,2:二级分销:3:三级分销',
`distribute_type` int(4) DEFAULT '0' COMMENT '分销权限之提成方式 0:百分比 1:固定金额。设置固定金额时按单返佣金,和购买数量无关',
`distribute_reward_commission_first` int(4) DEFAULT '0' COMMENT '分销权限之一级提成金额',
`distribute_reward_commission_second` int(4) DEFAULT '0' COMMENT '分销权限之二级提成金额',
`distribute_reward_commission_third` int(4) DEFAULT '0' COMMENT '分销权限之三级提成金额',
`distribute_reward_commission_continuous` int(4) DEFAULT '0' COMMENT '分销权限之持续推荐奖励',
`distribute_reward_integral_first` int(4) DEFAULT '0' COMMENT '分销权限之一级(积分)',
`distribute_reward_integral_second` int(4) DEFAULT '0' COMMENT '分销权限之二级(积分)',
`distribute_reward_integral_third` int(4) DEFAULT '0' COMMENT '分销权限之三级(积分)',
`distribute_reward_integral_max` int(4) DEFAULT '0' COMMENT '分销权限之最高限制(积分)',
`distribute_reward_rule` int(4) DEFAULT '0' COMMENT '分销权限之推荐规则 0:初次进入即绑定推荐关系 1:有推荐人时绑定推荐关系 2:不绑定推荐关系 3:首次消费后绑定推荐关系。初次进入即绑定推荐关系:只有没有进入过平台的新会员卡才能被推荐,并且初次进入就确定了推荐人,终身绑定,不会再被其他人推荐;\r\n有推荐人时绑定推荐关系:没有推荐人时可以被推荐,一旦有了推荐人,该会员卡的推荐人就确定了,不会再被其他人推荐;\r\n不绑定推荐关系:即使该会员卡有推荐人,当被另一个人推荐时,TA的推荐人就会变成后来推荐TA的人。\r\n首次消费后绑定推荐关系:即会员卡在未消费前,当被另一个人推荐时,TA的推荐人就会变成后来推荐TA的人。 ',
`distribute_self` int(4) DEFAULT '0' COMMENT '分销权限之自己是否拿一级提成. 0:否 1:是。 开启则表示一级为自己,即自己购买商品自己拿一级佣金',
`distribute_team_permission` varchar(255) DEFAULT '' COMMENT '分销权限之我的团队权限。 1:查看下级手机号, 2:给下级转余额 3:给下级转积分',
`team_bonus_level` int(4) DEFAULT '0' COMMENT '团队分红之分红级数',
`team_bonus_ratio` int(4) DEFAULT '0' COMMENT '团队分红之分红比例(%)',
`team_bonus_amount` int(4) DEFAULT '0' COMMENT '团队分红之每单分红金额',
`team_bonus_only_recent_parent` int(4) DEFAULT '0' COMMENT '团队分红之是否只给最近的上级分红',
`team_bonus_include_self` int(4) DEFAULT '0' COMMENT '团队分红之是否包含自己',
`shareholder_bonus_ratio` int(4) DEFAULT '0' COMMENT '股东分红之分红比例(%)。用于合伙人或股东分红,设置分红比例后该等级的所有人平均分摊所有商城订单的分红提成比例',
`area_agent_close` int(4) DEFAULT '1' COMMENT '区域代理之关闭',
`area_agent_province` int(4) DEFAULT '0' COMMENT '区域代理之省级',
`area_agent_city` int(4) DEFAULT '0' COMMENT '区域代理之市级',
`area_agent_district` int(4) DEFAULT '0' COMMENT '区域代理之区级',
`area_agent_ratio` int(4) DEFAULT '0' COMMENT '区域代理之分红比例(%)',
`area_agent_limit` int(4) DEFAULT '0' COMMENT '区域代理之人数限制',
`valid_days` int(4) DEFAULT '0' COMMENT '等级有效期。升级成为该等级后多少天自动变回默认等级,0表示长期',
`privilege` mediumtext COMMENT '特权说明',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员卡表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_member_card_apply_log`
--
CREATE TABLE `dxch_member_card_apply_log` (
`id` int(11) NOT NULL COMMENT 'ID',
`member_card_id` int(4) NOT NULL COMMENT '会员卡ID',
`user_id` int(4) NOT NULL COMMENT '用户ID',
`recommend_user_id` int(4) DEFAULT '0' COMMENT '推荐人',
`level` int(4) DEFAULT '0' COMMENT '申请等级',
`application` varchar(255) NOT NULL COMMENT '申请资料',
`amount` int(4) DEFAULT '0' COMMENT '金额',
`status` int(4) DEFAULT '0' COMMENT '状态',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='升级申请记录表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_member_card_apply_setting`
--
CREATE TABLE `dxch_member_card_apply_setting` (
`id` int(11) NOT NULL COMMENT 'ID',
`member_card_id` int(4) NOT NULL COMMENT '会员卡ID',
`user_id` int(4) NOT NULL COMMENT '用户ID',
`sort` int(4) DEFAULT '0' COMMENT '排序',
`name` varchar(20) NOT NULL COMMENT '字段名称',
`type` int(4) DEFAULT '1' COMMENT '组件类型 (1:单行输入 2:多行输入 3:单项选择 4:多项选择 5:普通选择 6:时间选择 7:日期选择 8:省市区选择 9:上传图片)',
`param_json` text COMMENT '组件参数',
`value` varchar(255) NOT NULL COMMENT '值',
`required` int(4) DEFAULT '1' COMMENT '是否必填 1:是 0:否',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员卡申请资料表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_member_card_order`
--
CREATE TABLE `dxch_member_card_order` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`transaction_id` varchar(50) DEFAULT '' COMMENT '微信交易单号',
`user_id` int(11) NOT NULL COMMENT '用户ID',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`price` int(4) DEFAULT '0' COMMENT '价格',
`num` int(4) DEFAULT '1' COMMENT '数量',
`order_status` int(4) DEFAULT '0' COMMENT '订单状态。0:默认 1:已取消 2:已过期',
`pay_status` int(4) DEFAULT '0' COMMENT '付款状态 0:未支付 1:已支付 2:申请退款 3:已退款 ',
`pay_type` int(4) DEFAULT '0' COMMENT '支付方式 0:小程序支付',
`pay_at` timestamp NULL DEFAULT NULL COMMENT '支付时间',
`issue_invoice` int(4) DEFAULT '0' COMMENT '是否已开发票 0:否 1:是',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员卡订单表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_member_upgrade_conditions`
--
CREATE TABLE `dxch_member_upgrade_conditions` (
`id` int(11) NOT NULL COMMENT 'ID',
`member_card_id` int(4) NOT NULL COMMENT '会员卡ID',
`type` int(4) DEFAULT '1' COMMENT '0:申请条件 1:升级条件',
`logic_type` int(4) DEFAULT '0' COMMENT '逻辑类型 0:且 1:或',
`condition_source_type` int(4) DEFAULT '0' COMMENT '升级条件的来源或触发者类型。 1:自购 2:团队 3:下级(一级,二级) ',
`condition_category` int(4) DEFAULT '0' COMMENT '升级条件的类别或性质。0:充值 1:分销订单 2:非分销订单 3:商品 4:用户(分销商) ',
`threshold_type` int(4) DEFAULT '1' COMMENT '门槛值类型 1: 金额 2:数量',
`threshold` int(4) DEFAULT '0' COMMENT '门槛值',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员卡升级条件表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_mem_sku`
--
CREATE TABLE `dxch_mem_sku` (
`id` int(11) NOT NULL COMMENT 'ID',
`spu_id` varchar(255) DEFAULT '' COMMENT '产品ID',
`sku_id` varchar(255) DEFAULT '' COMMENT 'skuID',
`card_id` int(4) DEFAULT '0' COMMENT 'card_id',
`tag_id` int(4) DEFAULT '0' COMMENT 'tag_id',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员商品表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_num_unit`
--
CREATE TABLE `dxch_num_unit` (
`id` int(11) NOT NULL COMMENT 'ID',
`name` varchar(20) NOT NULL COMMENT '名称',
`title` varchar(20) NOT NULL DEFAULT '' COMMENT '标题',
`content` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`created_at` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='sku数量单位表';
-- --------------------------------------------------------
--
-- 表的结构 `dxch_order`
--
CREATE TABLE `dxch_order` (
`id` int(11) NOT NULL COMMENT 'ID',
`trade_no` varchar(20) NOT NULL COMMENT '流水号',
`transaction_id` varchar(50) DEFAULT '' COMMENT '微信交易单号',
`name` varchar(255) NOT NULL COMMENT '名称',
`title` varchar(255) NOT NULL COMMENT '标题',
`old_price` int(4) DEFAULT '0' COMMENT '原价',
`price` int(4) DEFAULT '0' COMMENT '价格',
`num` int(4) DEFAULT '0' COMMENT '数量',
`num_unit` int(4) DEFAULT '0' COMMENT '单位',
`main_img` varchar(255) NOT NULL COMMENT '主图',
`brand_id` int(4) DEFAULT '0' COMMENT '所属品牌ID',
`cat_id` int(4) DEFAULT '0' COMMENT '分类ID',
`sub_cat_id` int(4) DEFAULT '0' COMMENT '子分类ID',
`attr_id` varchar(255) DEFAULT '' COMMENT '属性ID',
`tag_id` varchar(255) DEFAULT '' COMMENT '标签ID',
`content` varchar(255) NOT NULL DEFAULT '' COMMENT '详情页',
`is_new` int(4) DEFAULT '0' COMMENT '是否新品',
`spu_id` int(4) DEFAULT '0' COMMENT 'spu_id',