install.php
32.9 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
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
<?php
defined('IN_IA') or exit('Access Denied');
$sql = "
CREATE TABLE `ims_wwx_fxxt_address` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`openid` varchar(50) NOT NULL,
`realname` varchar(20) NOT NULL,
`mobile` varchar(11) NOT NULL,
`province` varchar(30) NOT NULL,
`city` varchar(30) NOT NULL,
`area` varchar(30) NOT NULL,
`address` varchar(300) NOT NULL,
`isdefault` tinyint(3) unsigned NOT NULL DEFAULT '0',
`deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_adv` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`advname` varchar(50) DEFAULT '',
`link` varchar(255) NOT NULL DEFAULT '',
`thumb` varchar(255) DEFAULT '',
`displayorder` int(11) DEFAULT '0',
`enabled` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_uniacid` (`uniacid`),
KEY `indx_enabled` (`enabled`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_cart` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`goodsid` int(11) NOT NULL,
`goodstype` tinyint(1) NOT NULL DEFAULT '1',
`from_user` varchar(50) NOT NULL,
`total` int(10) unsigned NOT NULL,
`optionid` int(10) DEFAULT '0',
`marketprice` decimal(10,2) DEFAULT '0.00',
PRIMARY KEY (`id`),
KEY `idx_openid` (`from_user`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_category` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '所属帐号',
`commission` int(10) unsigned DEFAULT '0' COMMENT '推荐该类商品所能获得的佣金',
`name` varchar(50) NOT NULL COMMENT '分类名称',
`thumb` varchar(255) NOT NULL COMMENT '分类图片',
`parentid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '上级分类ID,0为第一级',
`isrecommand` int(10) DEFAULT '0',
`description` varchar(500) NOT NULL COMMENT '分类介绍',
`displayorder` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`enabled` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否开启',
`sn` varchar(30) DEFAULT '' COMMENT '分类编号',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_channel` (
`channel` int(10) NOT NULL AUTO_INCREMENT,
`active` int(10) unsigned NOT NULL DEFAULT '0',
`bg` varchar(1024) NOT NULL,
`title` varchar(1024) NOT NULL,
`bgparam` varchar(10240) NOT NULL,
`notice` varchar(1024) NOT NULL,
`click_credit` int(10) NOT NULL COMMENT '未关注的用户关注,送分享者积分',
`sub_click_credit` int(10) NOT NULL COMMENT '未关注的用户关注,送上线积分',
`newbie_credit` int(10) NOT NULL COMMENT '通过本渠道关注微信号,送新用户大礼包积分',
`uniacid` int(10) unsigned NOT NULL,
`createtime` int(10) unsigned NOT NULL DEFAULT '0',
`msgtype` int(10) unsigned NOT NULL DEFAULT '1',
`isdel` int(5) NOT NULL DEFAULT '0',
PRIMARY KEY (`channel`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_credit_award` (
`award_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`title` varchar(50) NOT NULL,
`logo` varchar(255) NOT NULL,
`amount` int(11) NOT NULL DEFAULT '0',
`deadline` datetime NOT NULL,
`credit_cost` int(11) NOT NULL DEFAULT '0',
`price` int(11) NOT NULL DEFAULT '100',
`content` text NOT NULL,
`createtime` int(10) NOT NULL,
PRIMARY KEY (`award_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_credit_order` (
`createtime` int(10) NOT NULL,
`status` int(10) NOT NULL DEFAULT '0',
`fee` decimal(10,2) NOT NULL,
`transid` varchar(30) NOT NULL,
`openid` varchar(40) NOT NULL,
`uniacid` int(11) NOT NULL,
`crid` varchar(32) NOT NULL,
PRIMARY KEY (`crid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_credit_request` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`from_user` varchar(50) NOT NULL,
`award_id` int(10) unsigned NOT NULL,
`createtime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_dispatch` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`dispatchname` varchar(50) DEFAULT '',
`dispatchtype` int(11) DEFAULT '0',
`displayorder` int(11) DEFAULT '0',
`firstprice` decimal(10,2) DEFAULT '0.00',
`secondprice` decimal(10,2) DEFAULT '0.00',
`firstweight` int(11) DEFAULT '0',
`secondweight` int(11) DEFAULT '0',
`express` int(11) DEFAULT '0',
`description` text,
PRIMARY KEY (`id`),
KEY `indx_uniacid` (`uniacid`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_express` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`express_name` varchar(50) DEFAULT '',
`displayorder` int(11) DEFAULT '0',
`express_price` varchar(10) DEFAULT '',
`express_area` varchar(100) DEFAULT '',
`express_url` varchar(255) DEFAULT '',
PRIMARY KEY (`id`),
KEY `indx_uniacid` (`uniacid`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_feedback` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`openid` varchar(50) NOT NULL COMMENT '操作用户ID',
`backopenid` varchar(50) NOT NULL COMMENT '发送给用户ID',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '0系统,1维权,2询问,3用户',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态-1操作用户删除,-2目标用户删除,0正常,1已读,2已回复,3管理员已留言',
`feedbackid` varchar(30) NOT NULL COMMENT '商品ID',
`transid` varchar(30) NOT NULL COMMENT '订单号',
`reason` varchar(1000) NOT NULL COMMENT '内容',
`solution` varchar(1000) NOT NULL COMMENT '回复',
`remark` varchar(1000) NOT NULL COMMENT '管理员评论',
`createtime` int(10) unsigned NOT NULL COMMENT '发送时间',
`updatetime` int(10) unsigned NOT NULL COMMENT '回复时间',
PRIMARY KEY (`id`),
KEY `idx_uniacid` (`uniacid`),
KEY `idx_feedbackid` (`feedbackid`),
KEY `idx_createtime` (`createtime`),
KEY `idx_transid` (`transid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_follow` (
`uniacid` int(10) unsigned NOT NULL,
`leader` varchar(100) NOT NULL,
`follower` varchar(100) NOT NULL,
`channel` int(10) NOT NULL DEFAULT '0' COMMENT '渠道唯一标示符',
`credit` int(10) NOT NULL DEFAULT '0',
`createtime` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uniacid`,`leader`,`follower`,`channel`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_goods` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`pcate` int(10) unsigned NOT NULL DEFAULT '0',
`ccate` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1为实体,2为虚拟',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1',
`displayorder` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(100) NOT NULL DEFAULT '',
`thumb` varchar(255) DEFAULT '',
`xsthumb` varchar(255) DEFAULT '',
`unit` varchar(5) NOT NULL DEFAULT '',
`description` varchar(1000) NOT NULL DEFAULT '',
`content` text NOT NULL,
`goodssn` varchar(50) NOT NULL DEFAULT '',
`productsn` varchar(50) NOT NULL DEFAULT '',
`marketprice` decimal(10,2) NOT NULL DEFAULT '0.00',
`productprice` decimal(10,2) NOT NULL DEFAULT '0.00',
`costprice` decimal(10,2) NOT NULL DEFAULT '0.00',
`total` int(10) NOT NULL DEFAULT '0',
`totalcnf` int(11) DEFAULT '0' COMMENT '0 拍下减库存 1 付款减库存 2 永久不减',
`sales` int(10) unsigned NOT NULL DEFAULT '0',
`spec` varchar(5000) NOT NULL,
`createtime` int(10) unsigned NOT NULL,
`weight` decimal(10,2) NOT NULL DEFAULT '0.00',
`credit` int(11) DEFAULT '0',
`maxbuy` int(11) DEFAULT '0',
`hasoption` int(11) DEFAULT '0',
`dispatch` int(11) DEFAULT '0',
`thumb_url` text,
`isnew` int(11) DEFAULT '0',
`ishot` int(11) DEFAULT '0',
`issendfree` int(11) DEFAULT '0' COMMENT '是否包邮',
`isdiscount` int(11) DEFAULT '0' COMMENT '是否享受会员折扣',
`isrecommand` int(11) DEFAULT '0',
`istime` int(11) DEFAULT '0',
`timestart` int(11) DEFAULT '0',
`timeend` int(11) DEFAULT '0',
`viewcount` int(11) DEFAULT '0',
`deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
`commission` int(3) DEFAULT '0',
`commission2` int(3) DEFAULT '0',
`commission3` int(3) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_goods_option` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goodsid` int(10) DEFAULT '0',
`title` varchar(50) DEFAULT '',
`thumb` varchar(60) DEFAULT '',
`productprice` decimal(10,2) DEFAULT '0.00',
`marketprice` decimal(10,2) DEFAULT '0.00',
`costprice` decimal(10,2) DEFAULT '0.00',
`stock` int(11) DEFAULT '0',
`weight` decimal(10,2) DEFAULT '0.00',
`displayorder` int(11) DEFAULT '0',
`specs` text,
PRIMARY KEY (`id`),
KEY `indx_goodsid` (`goodsid`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_goods_param` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goodsid` int(10) DEFAULT '0',
`title` varchar(50) DEFAULT '',
`value` text,
`displayorder` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_goodsid` (`goodsid`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_member` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`shareid` int(11) DEFAULT NULL COMMENT '上级ID',
`from_user` varchar(50) NOT NULL COMMENT '用户标识',
`nickname` varchar(50) NOT NULL COMMENT '用户昵称',
`realname` varchar(20) NOT NULL COMMENT '真实姓名',
`mobile` varchar(11) NOT NULL COMMENT '手机',
`pwd` varchar(20) NOT NULL,
`bankcard` varchar(20) DEFAULT NULL COMMENT '银行卡号',
`banktype` varchar(20) DEFAULT NULL COMMENT '银行名称',
`alipay` varchar(100) DEFAULT NULL COMMENT '支付宝',
`wxhao` varchar(100) DEFAULT NULL COMMENT '微信号',
`commission` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '已结佣佣金',
`zhifu` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '已打款佣金',
`content` text,
`createtime` int(10) NOT NULL,
`flagtime` int(10) DEFAULT NULL COMMENT '为成推广人的时间',
`status` tinyint(1) DEFAULT '1' COMMENT '0为禁用,1为可用',
`flag` tinyint(1) DEFAULT '0' COMMENT '0为会推广人,1为推广人',
`clickcount` int(11) NOT NULL DEFAULT '0' COMMENT '点击次数',
`dzdflag` tinyint(3) DEFAULT '0' COMMENT '店中店开启',
`dzdtitle` varchar(100) DEFAULT '' COMMENT '店中店名称',
`dzdsendtext` varchar(100) DEFAULT '' COMMENT '店中店转发话术',
`credit2` double DEFAULT '0' COMMENT '余额',
`usergrade` tinyint(3) DEFAULT '0' COMMENT '会员等级',
`usergradeauto` tinyint(1) DEFAULT '0' COMMENT '是否允许会员自动升级,0为自动升级,1为手动调整。',
`flaggrade` tinyint(3) DEFAULT '0' COMMENT '代理等级',
`flaggradeauto` tinyint(1) DEFAULT '0' COMMENT '是否允许代理自动升级,0为自动升级,1为手动调整。',
`flagcount` int(11) NOT NULL DEFAULT '0' COMMENT '下级代理总人数',
PRIMARY KEY (`id`),
KEY `idx_member_from_user` (`from_user`),
KEY `idx_uniacid` (`uniacid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_member_flaggrade` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(11) NOT NULL,
`displayorder` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '级别',
`flag_name` varchar(50) DEFAULT NULL COMMENT '等级名称',
`flag_commission1` int(3) NOT NULL DEFAULT '0' COMMENT '1级分销比例',
`flag_commission2` int(3) NOT NULL DEFAULT '0' COMMENT '2级分销比例',
`flag_commission3` int(3) NOT NULL DEFAULT '0' COMMENT '3级分销比例',
`flag_money` decimal(10,2) NOT NULL DEFAULT '0' COMMENT '提现金额',
`flag_totalmoney` decimal(10,2) NOT NULL DEFAULT '0' COMMENT '分销总金额',
`flag_count` int(10) NOT NULL DEFAULT '0' COMMENT '所需粉丝数量',
`promoterstate` tinyint(1) DEFAULT '0' COMMENT '加入此代理需要分销订单的状态',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_member_shipgrade` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(11) NOT NULL,
`displayorder` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '级别',
`member_name` varchar(50) DEFAULT NULL COMMENT '等级名称',
`member_turnover` decimal(10,2) NOT NULL DEFAULT '0' COMMENT '所需交易额',
`member_motercount` int(10) NOT NULL DEFAULT '0' COMMENT '所需成交单数',
`member_commission` int(3) NOT NULL DEFAULT '0' COMMENT '享受折扣率,百分比',
`promoterstate` tinyint(1) DEFAULT '0' COMMENT '加入此会员需要订单的状态',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_msg_template` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) NOT NULL,
`template` varchar(5000) NOT NULL,
`tkey` varchar(10) NOT NULL,
`tenable` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_order` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`from_user` varchar(50) NOT NULL,
`shareid` int(10) unsigned DEFAULT '0' COMMENT '1级代理ID',
`shareid2` int(10) DEFAULT '0' COMMENT '2级代理ID',
`shareid3` int(10) DEFAULT '0' COMMENT '3级代理ID',
`ordersn` varchar(20) NOT NULL,
`price` varchar(10) NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '-1取消状态,0普通状态,1为已付款,2为已发货,3为成功',
`sendtype` tinyint(1) unsigned NOT NULL COMMENT '1为快递,2为自提',
`paytype` tinyint(1) unsigned NOT NULL COMMENT '1为余额,2为在线,3为到付',
`transid` varchar(30) NOT NULL DEFAULT '0' COMMENT '微信支付单号',
`goodstype` tinyint(1) unsigned NOT NULL DEFAULT '1',
`remark` varchar(1000) NOT NULL DEFAULT '',
`addressid` int(10) unsigned NOT NULL,
`expresscom` varchar(30) NOT NULL DEFAULT '',
`expresssn` varchar(50) NOT NULL DEFAULT '',
`express` varchar(200) NOT NULL DEFAULT '',
`goodsprice` decimal(10,2) DEFAULT '0.00',
`dispatchprice` decimal(10,2) DEFAULT '0.00',
`dispatch` int(10) DEFAULT '0',
`createtime` int(10) unsigned NOT NULL,
`updatetime` int(10) DEFAULT '0' COMMENT '订单更新时间',
`zhifutime` int(10) DEFAULT '0' COMMENT '订单付款时间',
`isrest` tinyint(1) DEFAULT '0' COMMENT '是否发生换货操作',
`rsreson` varchar(500) DEFAULT '' COMMENT '退货款退原因',
`sendtime` int(10) NOT NULL DEFAULT '0' COMMENT '发货时间',
`ordermessage` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订单消息状态,0未发送,1已发送',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_order_goods` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`orderid` int(10) unsigned NOT NULL,
`goodsid` int(10) unsigned NOT NULL,
`commission` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '该订单的推荐佣金',
`commission2` decimal(10,2) unsigned DEFAULT '0.00' NULL,
`commission3` decimal(10,2) unsigned DEFAULT '0.00' NULL,
`applytime` int(10) unsigned DEFAULT NULL COMMENT '申请时间',
`checktime` int(10) unsigned DEFAULT NULL COMMENT '审核时间',
`applytime2` int(10) DEFAULT '0' COMMENT '2级申请时间',
`checktime2` int(10) DEFAULT '0' COMMENT '2级审核时间',
`applytime3` int(10) DEFAULT '0' COMMENT '3级申请时间',
`checktime3` int(10) DEFAULT '0' COMMENT '3级审核时间',
`status` tinyint(3) DEFAULT '0' COMMENT '1级申请状态,-2为标志删除,-1为审核无效,0为未申请,1为正在申请,2为银行打款,3为支付宝打款,4为微信打款',
`status2` tinyint(3) DEFAULT '0' COMMENT '2级申请状态,-2为标志删除,-1为审核无效,0为未申请,1为正在申请,2为银行打款,3为支付宝打款,4为微信打款',
`status3` tinyint(3) DEFAULT '0' COMMENT '3级申请状态,-2为标志删除,-1为审核无效,0为未申请,1为正在申请,2为银行打款,3为支付宝打款,4为微信打款',
`price` decimal(10,2) DEFAULT '0.00',
`total` int(10) unsigned NOT NULL DEFAULT '1',
`optionid` int(10) DEFAULT '0',
`createtime` int(10) unsigned NOT NULL,
`optionname` text,
`content` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_paylog` (
`createtime` int(10) NOT NULL,
`tag` varchar(100) NOT NULL,
`fee` decimal(10,2) NOT NULL,
`credit2` decimal(10,2) NOT NULL DEFAULT '0',
`mid` int(10) NOT NULL COMMENT 'member id',
`openid` varchar(40) NOT NULL,
`uniacid` int(11) NOT NULL,
`type` varchar(30) NOT NULL COMMENT 'usegold使用金额 addgold充值金额 usecredit使用积分 addcredit充值积分',
`plid` bigint(20) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`plid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_pormotions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) NOT NULL COMMENT '服务号id',
`pname` varchar(100) NOT NULL COMMENT '名称',
`description` varchar(200) DEFAULT NULL COMMENT '描述(预留)',
`endtime` int(10) NOT NULL COMMENT '结束时间',
`starttime` int(10) NOT NULL COMMENT '开始时间',
`condition` decimal(10,2) NOT NULL COMMENT '条件',
`promoteType` int(11) NOT NULL COMMENT '0 按订单数包邮 1满额包邮',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_printer` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) NOT NULL,
`name` varchar(100) NOT NULL,
`printertype` int(11) NOT NULL DEFAULT '0' COMMENT '0常规打印,1快递',
`createtime` int(10) NOT NULL DEFAULT '0',
`isdefault` int(11) NOT NULL DEFAULT '0',
`expressdaxiao` varchar(50) DEFAULT '12' COMMENT '字体大小',
`expressziti` varchar(50) DEFAULT '宋体' COMMENT '字体样式',
`expresspic` varchar(1000) DEFAULT '',
`expresscode` varchar(100) NOT NULL DEFAULT '',
`expressconfig` text,
`printerconfig` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_product` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`goodsid` int(11) NOT NULL,
`productsn` varchar(50) NOT NULL,
`title` varchar(1000) NOT NULL,
`marketprice` decimal(10,0) unsigned NOT NULL,
`productprice` decimal(10,0) unsigned NOT NULL,
`total` int(11) NOT NULL,
`status` tinyint(3) unsigned NOT NULL DEFAULT '1',
`spec` varchar(5000) NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_goodsid` (`goodsid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_qr` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`qr_url` varchar(1024) NOT NULL,
`createtime` int(11) NOT NULL,
`expiretime` int(11) NOT NULL,
`media_id` varchar(1024) NOT NULL,
`channel` int(10) NOT NULL DEFAULT '0' COMMENT '渠道唯一标示符',
`from_user` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_activities` (
`actid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '活动编号',
`uniacid` int(10) unsigned NOT NULL,
`title` varchar(20) NOT NULL COMMENT '活动名称',
`start` int(10) unsigned NOT NULL COMMENT '开始时间',
`end` int(10) unsigned NOT NULL COMMENT '结束时间',
`rules` text NOT NULL COMMENT '活动规则介绍',
`guide` varchar(255) NOT NULL COMMENT '活动指南(图文素材地址)',
`banner` varchar(500) NOT NULL COMMENT '背景图片',
`type` varchar(10) NOT NULL COMMENT '活动类型(direct, shared)',
`limit` varchar(1000) NOT NULL DEFAULT '',
`share` varchar(1000) NOT NULL DEFAULT '',
`tag` text NOT NULL,
`amount` decimal(10,2) NOT NULL DEFAULT '0.00',
PRIMARY KEY (`actid`),
KEY `type` (`type`),
KEY `uniacid` (`uniacid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_activity_gifts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`activity` int(10) unsigned NOT NULL,
`gift` int(10) unsigned NOT NULL,
`quantity` int(10) unsigned NOT NULL,
`rate` decimal(6,2) NOT NULL COMMENT '中奖百分比率',
PRIMARY KEY (`id`),
KEY `activity` (`activity`),
KEY `gift` (`gift`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_fans` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) unsigned NOT NULL,
`openid` varchar(40) NOT NULL DEFAULT '',
`proxy` varchar(40) NOT NULL DEFAULT '',
`unionid` varchar(40) NOT NULL DEFAULT '',
`nickname` varchar(20) NOT NULL DEFAULT '',
`gender` varchar(2) DEFAULT '',
`state` varchar(20) NOT NULL DEFAULT '',
`city` varchar(20) NOT NULL DEFAULT '',
`country` varchar(20) NOT NULL DEFAULT '',
`avatar` varchar(500) NOT NULL DEFAULT '',
`status` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `uniacid` (`uniacid`),
KEY `openid` (`openid`),
KEY `proxy` (`proxy`),
KEY `nickname` (`nickname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_gifts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`title` varchar(20) NOT NULL,
`type` varchar(20) NOT NULL COMMENT 'cash - 现金红包, coupon - 券类',
`tag` text NOT NULL,
`remark` text NOT NULL,
PRIMARY KEY (`id`),
KEY `uniacid` (`uniacid`),
KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_helps` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`activity` int(10) unsigned NOT NULL,
`owner` int(10) unsigned NOT NULL,
`helper` int(10) unsigned NOT NULL,
`dateline` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `activity` (`activity`),
KEY `uniacid` (`uniacid`),
KEY `owner` (`owner`),
KEY `helper` (`helper`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_profiles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`uid` int(10) unsigned NOT NULL,
`name` varchar(10) NOT NULL,
`title` varchar(20) NOT NULL,
`value` varchar(500) NOT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `uniacid` (`uniacid`),
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_records` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`uid` int(10) unsigned NOT NULL,
`activity` int(10) unsigned NOT NULL,
`gift` int(10) unsigned NOT NULL,
`fee` varchar(20) NOT NULL DEFAULT '',
`log` varchar(500) NOT NULL DEFAULT '',
`status` varchar(20) NOT NULL,
`created` int(10) unsigned NOT NULL,
`completed` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `activity` (`activity`),
KEY `gift` (`gift`),
KEY `log` (`log`(333)),
KEY `uniacid` (`uniacid`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ims_wwx_fxxt_red_trades` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`activity` int(10) unsigned NOT NULL,
`uid` int(10) unsigned NOT NULL,
`item` varchar(20) NOT NULL,
`status` varchar(10) NOT NULL,
`created` int(10) unsigned NOT NULL,
`paid` int(10) unsigned NOT NULL,
`completed` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `uniacid` (`uniacid`),
KEY `activity` (`activity`),
KEY `uid` (`uid`),
KEY `item` (`item`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_reply` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`rid` SMALLINT(6) NOT NULL,
`uniacid` SMALLINT(6) NOT NULL,
`title` VARCHAR(50) NULL DEFAULT NULL,
`avatar` VARCHAR(250) NULL DEFAULT NULL,
`description` VARCHAR(250) NULL DEFAULT NULL,
`dateline` INT(11) NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) COLLATE='utf8_general_ci' ENGINE=MyISAM AUTO_INCREMENT=1;
CREATE TABLE `ims_wwx_fxxt_rule` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) NOT NULL,
`status` varchar(255) NOT NULL DEFAULT '',
`rule` text,
`terms` text,
`createtime` int(10) NOT NULL,
`gzurl` varchar(255) NOT NULL,
`teamfy` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_rules` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) NOT NULL,
`rule` text,
`terms` text,
`createtime` int(10) NOT NULL,
`commtime` int(5) NOT NULL DEFAULT '15' COMMENT '默认15天',
`promotertimes` int(10) NOT NULL DEFAULT '1' COMMENT '1购买一单 成为会员 0无条件成为会员 2达到单数 3达到金额',
`promotercount` int(10) NOT NULL DEFAULT '0' COMMENT '成为代理需要成交单数',
`promoterstate` int(10) NOT NULL DEFAULT '0' COMMENT '成为代理需要订单的状态',
`promotermoney` decimal(10,2) NOT NULL DEFAULT '0' COMMENT '成为代理需要成交总金额',
`ischeck` tinyint(1) DEFAULT '1' COMMENT '0为自定义单页面首页,1为普通商城首页',
`clickcredit` int(10) NOT NULL DEFAULT '0' COMMENT '点击获取积分',
`autofinishcktime` int(10) NOT NULL DEFAULT '0' COMMENT '自动收货检查',
`autocanceltime` int(10) NOT NULL DEFAULT '0' COMMENT '自动取消订单检查',
`jsapi_ticket` varchar(300) NOT NULL DEFAULT '' COMMENT 'jsapi_ticket',
`jsapi_ticket_exptime` int(10) NOT NULL DEFAULT '0' COMMENT 'jsapi_ticket_exptime',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_share_history` (
`sharemid` int(11) DEFAULT NULL,
`uniacid` int(11) DEFAULT NULL,
`from_user` varchar(50) DEFAULT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`joinway` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '0默认驱动加入,1二维码加入,2活动加入',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_shop_collection` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned DEFAULT '0',
`uid` int(10) unsigned DEFAULT '0' COMMENT '操作用户UID',
`username` varchar(100) DEFAULT '' COMMENT '会员帐号',
`type` tinyint(1) unsigned DEFAULT '0' COMMENT '0试用采集,1会员采集,2导入分销,3导出信息,4用户登录',
`shopurl` varchar(255) DEFAULT '' COMMENT '采集店铺地址',
`shopip` varchar(255) DEFAULT '' COMMENT '采集IP',
`shopmachine` varchar(255) DEFAULT '' COMMENT '采集电脑标识',
`collection` int(10) unsigned DEFAULT '0' COMMENT '剩余采集点',
`createtime` int(10) unsigned DEFAULT '0' COMMENT '采集时间',
PRIMARY KEY (`id`),
KEY `idx_uniacid` (`uniacid`),
KEY `idx_createtime` (`createtime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_shop_collection_status` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned DEFAULT '0',
`status` tinyint(1) unsigned DEFAULT '0' COMMENT '禁止类型:1禁止IP,2禁止标识,3禁止帐号',
`stock` varchar(255) DEFAULT '' COMMENT '禁止标识',
`createtime` int(10) unsigned DEFAULT '0' COMMENT '禁止时间',
PRIMARY KEY (`id`),
KEY `idx_uniacid` (`uniacid`),
KEY `idx_createtime` (`createtime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE if not exists `ims_wwx_fxxt_shop_goods` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`pcate` int(10) unsigned NOT NULL DEFAULT '0',
`ccate` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1为实体,2为虚拟',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1',
`displayorder` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(100) NOT NULL DEFAULT '',
`thumb` varchar(255) DEFAULT '',
`xsthumb` varchar(255) DEFAULT '',
`unit` varchar(5) NOT NULL DEFAULT '',
`description` varchar(1000) NOT NULL DEFAULT '',
`content` text NOT NULL,
`goodssn` varchar(50) NOT NULL DEFAULT '',
`productsn` varchar(50) NOT NULL DEFAULT '',
`marketprice` decimal(10,2) NOT NULL DEFAULT '0.00',
`productprice` decimal(10,2) NOT NULL DEFAULT '0.00',
`costprice` decimal(10,2) NOT NULL DEFAULT '0.00',
`total` int(10) NOT NULL DEFAULT '0',
`totalcnf` int(11) DEFAULT '0' COMMENT '0 拍下减库存 1 付款减库存 2 永久不减',
`sales` int(10) unsigned NOT NULL DEFAULT '0',
`spec` varchar(5000) NOT NULL,
`createtime` int(10) unsigned NOT NULL,
`weight` decimal(10,2) NOT NULL DEFAULT '0.00',
`credit` int(11) DEFAULT '0',
`maxbuy` int(11) DEFAULT '0',
`hasoption` int(11) DEFAULT '0',
`dispatch` int(11) DEFAULT '0',
`thumb_url` text,
`isnew` int(11) DEFAULT '0',
`ishot` int(11) DEFAULT '0',
`issendfree` int(11) DEFAULT '0',
`isdiscount` int(11) DEFAULT '0',
`isrecommand` int(11) DEFAULT '0',
`istime` int(11) DEFAULT '0',
`timestart` int(11) DEFAULT '0',
`timeend` int(11) DEFAULT '0',
`viewcount` int(11) DEFAULT '0',
`deleted` tinyint(3) DEFAULT '0' COMMENT '表示是否删除',
`commission` int(3) DEFAULT '0',
`commission2` int(3) DEFAULT '0',
`commission3` int(3) DEFAULT '0',
`taobaoid` varchar(255) DEFAULT '',
`taobaourl` varchar(255) DEFAULT '',
`goodsid` int(11) DEFAULT '0',
`updatetime` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE if not exists `ims_wwx_fxxt_shop_goods_option` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goodsid` int(10) DEFAULT '0',
`title` varchar(50) DEFAULT '',
`thumb` varchar(60) DEFAULT '',
`productprice` decimal(10,2) DEFAULT '0.00',
`marketprice` decimal(10,2) DEFAULT '0.00',
`costprice` decimal(10,2) DEFAULT '0.00',
`stock` int(11) DEFAULT '0',
`weight` decimal(10,2) DEFAULT '0.00',
`displayorder` int(11) DEFAULT '0',
`specs` text,
`skuId` varchar(255) DEFAULT '',
`optionid` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_goodsid` (`goodsid`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE if not exists `ims_wwx_fxxt_shop_goods_param` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goodsid` int(11) DEFAULT '0',
`title` varchar(50) DEFAULT '',
`value` text,
`displayorder` int(11) DEFAULT '0',
`paramid` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_goodsid` (`goodsid`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE if not exists `ims_wwx_fxxt_shop_picture_address` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`goodsid` int(10) DEFAULT '0' COMMENT '商品ID',
`thumb` varchar(255) DEFAULT '' COMMENT '图片地址',
`roadurl` varchar(255) DEFAULT '' COMMENT '图片原始地址',
`createtime` int(10) unsigned NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `indx_goodsid` (`goodsid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE if not exists `ims_wwx_fxxt_shop_spec` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`title` varchar(50) NOT NULL,
`description` varchar(1000) NOT NULL,
`displaytype` tinyint(3) unsigned NOT NULL,
`content` text NOT NULL,
`goodsid` int(11) DEFAULT '0',
`displayorder` int(11) DEFAULT '0',
`propId` varchar(255) DEFAULT '',
`specid` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE if not exists `ims_wwx_fxxt_shop_spec_item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`goodsid` int(11) DEFAULT '0',
`specid` int(11) DEFAULT '0',
`title` varchar(255) DEFAULT '',
`thumb` varchar(255) DEFAULT '',
`show` int(11) DEFAULT '0',
`displayorder` int(11) DEFAULT '0',
`valueId` varchar(255) DEFAULT '',
`spec_item_id` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_uniacid` (`uniacid`),
KEY `indx_specid` (`specid`),
KEY `indx_show` (`show`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_spec` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uniacid` int(10) unsigned NOT NULL,
`title` varchar(50) NOT NULL,
`description` varchar(1000) NOT NULL,
`displaytype` tinyint(3) unsigned NOT NULL,
`content` text NOT NULL,
`goodsid` int(11) DEFAULT '0',
`displayorder` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `ims_wwx_fxxt_spec_item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`goodsid` int(11) DEFAULT '0',
`specid` int(11) DEFAULT '0',
`title` varchar(255) DEFAULT '',
`thumb` varchar(255) DEFAULT '',
`show` int(11) DEFAULT '0',
`displayorder` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_uniacid` (`uniacid`),
KEY `indx_specid` (`specid`),
KEY `indx_show` (`show`),
KEY `indx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `ims_users` ADD `collection` int(11) unsigned DEFAULT '5' COMMENT '采集点数';
";
pdo_run($sql);