-
Notifications
You must be signed in to change notification settings - Fork 0
/
xxs.sql
1766 lines (1672 loc) · 217 KB
/
xxs.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
/*
Navicat MySQL Data Transfer
Source Server : JTM
Source Server Version : 50154
Source Host : localhost:3306
Source Database : xxs
Target Server Type : MYSQL
Target Server Version : 50154
File Encoding : 65001
Date: 2012-12-14 17:31:20
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `xx_admin`
-- ----------------------------
DROP TABLE IF EXISTS `xx_admin`;
CREATE TABLE `xx_admin` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`department` varchar(255) DEFAULT NULL,
`email` varchar(255) NOT NULL,
`is_account_enabled` bit(1) NOT NULL,
`is_account_expired` bit(1) NOT NULL,
`is_account_locked` bit(1) NOT NULL,
`is_credentials_expired` bit(1) NOT NULL,
`locked_date` datetime DEFAULT NULL,
`login_date` datetime DEFAULT NULL,
`login_failure_count` int(11) NOT NULL,
`login_ip` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`password` varchar(255) NOT NULL,
`username` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_admin
-- ----------------------------
INSERT INTO `xx_admin` VALUES ('0731dcsoft2010031200000000000017', '2011-01-01 00:00:00', '2012-12-14 14:37:21', '技术部', 'xxs@163.com', '', '', '', '', null, '2012-12-14 14:37:21', '0', '127.0.0.1', 'ADMIN', '21232f297a57a5a743894a0e4a801fc3', 'admin');
-- ----------------------------
-- Table structure for `xx_admin_role`
-- ----------------------------
DROP TABLE IF EXISTS `xx_admin_role`;
CREATE TABLE `xx_admin_role` (
`admin_set_id` varchar(32) NOT NULL,
`role_set_id` varchar(32) NOT NULL,
PRIMARY KEY (`admin_set_id`,`role_set_id`),
KEY `xx_role_admin_set` (`role_set_id`),
KEY `xx_admin_role_set` (`admin_set_id`),
CONSTRAINT `xx_admin_role_ibfk_1` FOREIGN KEY (`admin_set_id`) REFERENCES `xx_admin` (`id`),
CONSTRAINT `xx_admin_role_ibfk_2` FOREIGN KEY (`role_set_id`) REFERENCES `xx_role` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_admin_role
-- ----------------------------
INSERT INTO `xx_admin_role` VALUES ('0731dcsoft2010031200000000000017', '0731dcsoft2010031200000000000016');
INSERT INTO `xx_admin_role` VALUES ('0731dcsoft2010031200000000000017', '4028bc743ac000ea013ac00bc68c0000');
-- ----------------------------
-- Table structure for `xx_area`
-- ----------------------------
DROP TABLE IF EXISTS `xx_area`;
CREATE TABLE `xx_area` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`display_name` text NOT NULL,
`grade` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`path` text NOT NULL,
`parent_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_area_parent` (`parent_id`),
KEY `xx_area_grade` (`grade`),
KEY `xx_area_order_list` (`order_list`),
CONSTRAINT `xx_area_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `xx_area` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_area
-- ----------------------------
INSERT INTO `xx_area` VALUES ('4028bc743ab4e741013ab534172b0001', '2012-10-31 13:03:40', '2012-10-31 13:03:40', '上海', '0', '上海', '0', '4028bc743ab4e741013ab534172b0001', null);
INSERT INTO `xx_area` VALUES ('4028bc743ab4e741013ab534c7be0002', '2012-10-31 13:04:26', '2012-10-31 13:04:26', '北京', '0', '北京', '0', '4028bc743ab4e741013ab534c7be0002', null);
INSERT INTO `xx_area` VALUES ('4028bc743ab4e741013ab53571d90003', '2012-10-31 13:05:09', '2012-10-31 13:05:09', '上海黄浦区', '1', '黄浦区', '0', '4028bc743ab4e741013ab534172b0001,4028bc743ab4e741013ab53571d90003', '4028bc743ab4e741013ab534172b0001');
-- ----------------------------
-- Table structure for `xx_article`
-- ----------------------------
DROP TABLE IF EXISTS `xx_article`;
CREATE TABLE `xx_article` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`author` varchar(255) DEFAULT NULL,
`content` text NOT NULL,
`hits` int(11) NOT NULL,
`html_path` varchar(255) NOT NULL,
`is_publication` bit(1) NOT NULL,
`is_recommend` bit(1) NOT NULL,
`is_top` bit(1) NOT NULL,
`meta_description` text,
`meta_keywords` text,
`page_count` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`article_category_id` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
KEY `xx_article_article_category` (`article_category_id`),
KEY `xx_article_create_date` (`create_date`),
KEY `xx_article_hits` (`hits`),
CONSTRAINT `xx_article_ibfk_1` FOREIGN KEY (`article_category_id`) REFERENCES `xx_article_category` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_article
-- ----------------------------
INSERT INTO `xx_article` VALUES ('8ae4839c3a887878013a88de7a550045', '2012-10-22 22:26:52', '2012-10-22 22:30:34', null, '<ul class=\"help2_right_ul3\" style=\"font-family:微软雅黑, \'microsoft yahei\', 宋体, Tahoma, Verdana, Arial, Helvetica, sans-serif;margin:0px 0px 20px 46px;padding:0px;color:#4b4c4c;list-style:none;width:687px;display:inline;overflow:hidden;line-height:21.600000381469727px;\"><li style=\"width:687px;margin-bottom:20px;float:left;\">充值卡回购交易是双方行为,由第三方专业支付平台验证。因此交易保障也是对双方的保障。 既要保障您提交了正确的充值卡卡号和密码后,我们按照事先约定的回购方案付给您相应的回购款; 也要保障您不会提交错误的充值卡卡号和密码来找我们麻烦。 本站为正规网站,本公司名称“<a href=\"http://baike.baidu.com/view/8467651.htm\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\">佛山市路易名臣科技有限公司</a>”已在工商局注册备案,可以进入佛山市工商局网站验证,为您的资金全程护航; 本站仅提供多余充值卡及游戏点卡兑现功能。</li>\r\n<li style=\"width:687px;margin-bottom:20px;float:left;\"><b>我们采取的保障措施包括:</b><ul style=\"margin:0px;padding:0px;list-style:disc;\"><li style=\"width:687px;margin-bottom:20px;float:left;\"> ●充值卡的卡号和密码交给合法的第三方支付平台进行认证和处理,保证公平性。<br />\r\n ●申请提现后,给您打款通过银行的网银系统处理,支付过程透明并且可查询。<br />\r\n ●支付回购款之前会通过QQ/MSN等电子通讯方式进行确认,同时留下对话记录作为核对依据。</li>\r\n</ul>\r\n</li>\r\n<li style=\"width:687px;margin-bottom:20px;float:left;\"><b>关于名臣福利网站的保障:</b><ul style=\"margin:0px;padding:0px;list-style:disc;\"><li style=\"width:687px;margin-bottom:20px;float:left;\"> ●名臣福利网站托管在大型数据中心<a href=\"http://www.west263.com/\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\">西部数码</a>的机房 。<br />\r\n ●名臣福利网站通过工信部ICP备案,进行了现场网站负责人信息和图像采集。<br />\r\n ●名臣福利网站主要通过朋友口碑相传进行推广,神马都是浮云,朋友口碑才最可靠。</li>\r\n</ul>\r\n</li>\r\n</ul>', '2', '/html/201210/3251116bbab5408ebc977c1f1a6648a5.html', '', '', '', '', '', '1', '交易保障', '8ae4839c3a887878013a88dd51d90041');
INSERT INTO `xx_article` VALUES ('8ae4839c3a887878013a88e130050048', '2012-10-22 22:29:50', '2012-11-10 15:20:48', null, '<ul class=\"help2_right_ul3\" style=\"font-family:微软雅黑, \'microsoft yahei\', 宋体, Tahoma, Verdana, Arial, Helvetica, sans-serif;margin:0px 0px 20px 46px;padding:0px;color:#4b4c4c;list-style:none;width:687px;display:inline;overflow:hidden;line-height:21.600000381469727px;\"><li style=\"width:687px;margin-bottom:20px;float:left;font-size:13px;\"><center>佛山市路易名臣科技有限公司</center><center>Foshan Louismansion Technology CO., Ltd.</center></li>\r\n<li style=\"width:687px;margin-bottom:20px;float:left;margin-left:50px;\">地址:中国. 广东省. 佛山市禅城区江湾一路18号西区<br />\r\n邮编:528000<br />\r\n公司网址:<a href=\"http://www.louismansion.com/\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\">http://www.lousimansion.com</a><br />\r\n名臣福利网址:<a href=\"http://www.mcfl.cn/\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\">http://www.mcfl.cn</a> <a href=\"http://fuli.louismansion.com/\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\">http://fuli.louismansion.com</a><br />\r\n全国服务热线:400-611-8420<br />\r\n固话:0757-28615113(佛山)<br />\r\n客 服 QQ:<a href=\"http://wpa.qq.com/msgrd?v=3&uin=854768232&site=qq&menu=yes\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\"><img alt=\"点击这里给我发消息\" border=\"0\" src=\"http://wpa.qq.com/pa?p=2:854768232:41\" title=\"点击这里给我发消息\" style=\"border:none;\" /></a>854768232 <a href=\"http://wpa.qq.com/msgrd?v=3&uin=554368159&site=qq&menu=yes\" target=\"_blank\" style=\"text-decoration:none;color:#53a0be;\"><img alt=\"点击这里给我发消息\" border=\"0\" src=\"http://wpa.qq.com/pa?p=2:554368159:41\" title=\"点击这里给我发消息\" style=\"border:none;\" /></a>554368159</li>\r\n</ul>', '6', '/html/201210/19a2519b572240bab7b23ba482c6c064.html', '', '', '', '', '', '1', '联系我们', '8ae4839c3a887878013a88dd51d90041');
INSERT INTO `xx_article` VALUES ('8ae4839c3a887878013a88e37619004a', '2012-10-22 22:32:19', '2012-11-18 16:00:28', null, '<ul class=\"help2_right_ul3\" style=\"font-family:微软雅黑, \'microsoft yahei\', 宋体, Tahoma, Verdana, Arial, Helvetica, sans-serif;margin:0px 0px 20px 50px;padding:0px;color:#4b4c4c;list-style:none;width:687px;display:inline;overflow:hidden;line-height:21.600000381469727px;\"><li style=\"width:687px;margin-bottom:0px;float:left;margin-top:0px;background-color:#999999;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;width:200px;float:left;height:20px;color:#ffffff;\"><b>卡种类型</b></span><span style=\"text-align:center;width:150px;float:left;height:20px;color:#ffffff;margin-right:50px;\"><b>兑换比率</b></span><span style=\"width:287px;float:left;height:20px;color:#ffffff;\"><b style=\"margin-left:90px;\">支持面值</b></span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"神州行充值卡\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/101.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">96%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">10 20 30 50 100 300 500</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"联通充值卡\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/201.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">96%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">10 20 30 50 100 300 500</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"电信充值卡\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/301.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">96%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">50 100</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"盛大一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/1.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">84%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">任意面值</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"骏网一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/2.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">85%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">任意面值</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"搜狐一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/9.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">5 10 15 30 40 100</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"网易一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/10.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">30 15 5 10 20 50</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"久游一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/998.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">5 10 30 50</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"完美一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/996.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">15 30 50 100</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"天下通一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/3.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">5 6 10 15 30 50 100</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"Q币充值卡\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/999.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">5 10 15 20 30 60 100 200</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"纵游一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/991.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">5 10 15 30 50 100</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"易宝一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/yeepay.jpg\" style=\"border:none;\" /></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">89%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">2 5 10 15 20 25 30 50 100</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"font-size:20px;\"><strong><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"巨人(征途)一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/12.jpg\" style=\"border:none;\" /></span></strong></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">84%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">任意面值</span></li>\r\n<li style=\"width:685px;margin-bottom:0px;float:left;border-bottom-color:#cccccc;border-width:medium 1px 1px;border-style:none solid solid;border-left-color:#cccccc;margin-top:0px;background-color:#fafafa;height:36px;border-right-color:#cccccc;background-position:initial initial;background-repeat:initial initial;\"><span style=\"font-size:20px;\"><strong><span style=\"text-align:center;line-height:36px;width:199px;float:left;height:36px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\"><img alt=\"天宏一卡通\" src=\"http://www.mcfl.cn/statics/attachment/goods/ka/997.jpg\" style=\"border:none;\" /></span></strong></span><span style=\"text-align:center;line-height:36px;width:149px;float:left;height:36px;color:#ff0000;margin-right:20px;border-right-color:#cccccc;border-right-width:1px;border-right-style:solid;\">82%</span><span style=\"text-align:center;line-height:36px;width:285px;float:left;height:36px;\">5 10 15 20 30 50 100</span></li>\r\n<li class=\"help2_right_b\" style=\"width:687px;margin-bottom:0px;float:left;height:22px;line-height:20px;padding-left:4px;\"><p style=\"margin-top:0px;margin-bottom:0px;padding:0px;\">注:收卡折扣变动及福利捐赠变动,请及时参照系统平台公告,任意面值的点卡都收购,若没有你需要的面值,请联系客服。</p>\r\n</li>\r\n<li class=\"help2_right_b\" style=\"width:687px;margin-bottom:0px;float:left;height:22px;line-height:20px;padding-left:4px;\">另:电信卡面值为20元,30元,300元,500元请联系客服收购,网站上暂时只支持50元和100元的面值。</li>\r\n<li class=\"help2_right_b\" style=\"width:687px;margin-bottom:0px;float:left;height:22px;line-height:20px;padding-left:4px;\">例如:你有1张100元的充值卡,折扣为93折,那么卖卡后可以得到:1*100*0.93=93元</li>\r\n</ul>', '4', '/html/201210/f2559fd3f668488b80fb9616c8ea7528.html', '', '', '', '', '', '1', '收卡价格', '8ae4839c3a887878013a88dd51d90041');
-- ----------------------------
-- Table structure for `xx_article_category`
-- ----------------------------
DROP TABLE IF EXISTS `xx_article_category`;
CREATE TABLE `xx_article_category` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`grade` int(11) NOT NULL,
`meta_description` text,
`meta_keywords` text,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`path` text NOT NULL,
`sign` varchar(255) NOT NULL,
`parent_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `sign` (`sign`),
KEY `xx_article_category_parent` (`parent_id`),
KEY `xx_article_category_grade` (`grade`),
KEY `xx_article_category_order_list` (`order_list`),
CONSTRAINT `xx_article_category_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `xx_article_category` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_article_category
-- ----------------------------
INSERT INTO `xx_article_category` VALUES ('8ae4839c3a887878013a88dd51d90041', '2012-10-22 22:25:36', '2012-10-22 22:25:36', '0', '', '', '新手上路', '0', '8ae4839c3a887878013a88dd51d90041', 'xin_shou', null);
INSERT INTO `xx_article_category` VALUES ('8ae4839c3a887878013a88ddb4b20043', '2012-10-22 22:26:02', '2012-10-22 22:26:02', '0', '', '', '名臣公益', '0', '8ae4839c3a887878013a88ddb4b20043', 'gong_yi', null);
-- ----------------------------
-- Table structure for `xx_brand`
-- ----------------------------
DROP TABLE IF EXISTS `xx_brand`;
CREATE TABLE `xx_brand` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`introduction` text,
`logo_path` varchar(255) DEFAULT NULL,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_brand_order_list` (`order_list`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_brand
-- ----------------------------
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88a15b0f0001', '2012-10-22 21:20:06', '2012-10-31 11:44:30', '', null, '骏网一卡通', '1', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ac6eb10002', '2012-10-22 21:32:12', '2012-10-31 11:49:24', '', null, '盛大卡', '2', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88aca0800003', '2012-10-22 21:32:25', '2012-10-31 11:50:16', '', null, '神州行', '3', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88acc1ef0004', '2012-10-22 21:32:34', '2012-10-31 11:50:55', '', null, '征途卡', '4', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88acef930005', '2012-10-22 21:32:45', '2012-10-22 21:32:45', '', null, 'Q币卡', '5', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ad18e10006', '2012-10-22 21:32:56', '2012-10-22 21:32:56', '', null, '联通卡', '6', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ad3c100007', '2012-10-22 21:33:05', '2012-10-22 21:33:05', '', null, '久游卡', '7', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ad61df0008', '2012-10-22 21:33:15', '2012-10-22 21:33:15', '', null, '易宝e卡通', '8', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ad845a0009', '2012-10-22 21:33:23', '2012-10-22 21:33:23', '', null, '网易卡', '9', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ada7f6000a', '2012-10-22 21:33:33', '2012-10-22 21:33:33', '', null, '完美卡', '10', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88add167000b', '2012-10-22 21:33:43', '2012-10-22 21:33:43', '', null, '搜狐卡', '11', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ae0511000c', '2012-10-22 21:33:56', '2012-10-22 21:33:56', '', null, '电信卡', '12', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ae29c8000d', '2012-10-22 21:34:06', '2012-10-22 21:34:06', '', null, '纵游一卡通', '13', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ae4be5000e', '2012-10-22 21:34:15', '2012-10-22 21:34:15', '', null, '天下一卡通', '14', '');
INSERT INTO `xx_brand` VALUES ('8ae4839c3a887878013a88ae757d000f', '2012-10-22 21:34:25', '2012-10-22 21:34:25', '', null, '天宏一卡通', '15', '');
-- ----------------------------
-- Table structure for `xx_cart_item`
-- ----------------------------
DROP TABLE IF EXISTS `xx_cart_item`;
CREATE TABLE `xx_cart_item` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`quantity` int(11) NOT NULL,
`product_id` varchar(32) NOT NULL,
`member_id` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
KEY `xx_cart_item_member` (`member_id`),
KEY `xx_cart_item_product` (`product_id`),
CONSTRAINT `xx_cart_item_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `xx_member` (`id`),
CONSTRAINT `xx_cart_item_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `xx_product` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_cart_item
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_comment`
-- ----------------------------
DROP TABLE IF EXISTS `xx_comment`;
CREATE TABLE `xx_comment` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`contact` varchar(255) DEFAULT NULL,
`content` text NOT NULL,
`ip` varchar(255) NOT NULL,
`is_admin_reply` bit(1) NOT NULL,
`is_show` bit(1) NOT NULL,
`username` varchar(255) DEFAULT NULL,
`goods_id` varchar(32) NOT NULL,
`for_comment_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_comment_goods` (`goods_id`),
KEY `xx_comment_for_comment` (`for_comment_id`),
KEY `xx_comment_create_date` (`create_date`),
CONSTRAINT `xx_comment_ibfk_1` FOREIGN KEY (`for_comment_id`) REFERENCES `xx_comment` (`id`),
CONSTRAINT `xx_comment_ibfk_2` FOREIGN KEY (`goods_id`) REFERENCES `xx_goods` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_comment
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_delivery_center`
-- ----------------------------
DROP TABLE IF EXISTS `xx_delivery_center`;
CREATE TABLE `xx_delivery_center` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`address` varchar(255) NOT NULL,
`area_store` text NOT NULL,
`consignor` varchar(255) NOT NULL,
`is_default` bit(1) NOT NULL,
`memo` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`name` varchar(255) NOT NULL,
`phone` varchar(255) DEFAULT NULL,
`zip_code` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_delivery_center
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_delivery_corp`
-- ----------------------------
DROP TABLE IF EXISTS `xx_delivery_corp`;
CREATE TABLE `xx_delivery_corp` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_delivery_corp_order_list` (`order_list`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_delivery_corp
-- ----------------------------
INSERT INTO `xx_delivery_corp` VALUES ('4028bc743ab4e741013ab5372e7d0005', '2012-10-31 13:07:03', '2012-11-13 23:15:30', '默认无需物流', '0', '');
-- ----------------------------
-- Table structure for `xx_delivery_item`
-- ----------------------------
DROP TABLE IF EXISTS `xx_delivery_item`;
CREATE TABLE `xx_delivery_item` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`delivery_quantity` int(11) NOT NULL,
`goods_html_path` varchar(255) NOT NULL,
`product_name` varchar(255) NOT NULL,
`product_sn` varchar(255) NOT NULL,
`reship_id` varchar(32) DEFAULT NULL,
`shipping_id` varchar(32) DEFAULT NULL,
`product_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_delivery_item_shipping` (`shipping_id`),
KEY `xx_delivery_item_reship` (`reship_id`),
KEY `xx_delivery_item_product` (`product_id`),
CONSTRAINT `xx_delivery_item_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `xx_product` (`id`),
CONSTRAINT `xx_delivery_item_ibfk_2` FOREIGN KEY (`reship_id`) REFERENCES `xx_reship` (`id`),
CONSTRAINT `xx_delivery_item_ibfk_3` FOREIGN KEY (`shipping_id`) REFERENCES `xx_shipping` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_delivery_item
-- ----------------------------
INSERT INTO `xx_delivery_item` VALUES ('8a9182e13ab666b7013ab6acd9600008', '2012-10-31 19:55:12', '2012-10-31 19:55:12', '2', '/html/201210/511c9da09b1f486dba228e497878c2f5.html', '腾讯一卡通 [30元]', 'SN_5690B347AA89', null, '8a9182e13ab666b7013ab6acd7370007', '8ae4839c3a887878013a88d343fe0037');
-- ----------------------------
-- Table structure for `xx_delivery_template`
-- ----------------------------
DROP TABLE IF EXISTS `xx_delivery_template`;
CREATE TABLE `xx_delivery_template` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`content` text NOT NULL,
`is_default` bit(1) NOT NULL,
`memo` varchar(255) DEFAULT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_delivery_template
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_delivery_type`
-- ----------------------------
DROP TABLE IF EXISTS `xx_delivery_type`;
CREATE TABLE `xx_delivery_type` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`continue_weight` int(11) NOT NULL,
`continue_weight_price` decimal(15,5) NOT NULL,
`delivery_method` int(11) NOT NULL,
`description` text,
`first_weight` int(11) NOT NULL,
`first_weight_price` decimal(15,5) NOT NULL,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`default_delivery_corp_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_delivery_item_delivery_corp` (`default_delivery_corp_id`),
KEY `xx_delivery_type_order_list` (`order_list`),
CONSTRAINT `xx_delivery_type_ibfk_1` FOREIGN KEY (`default_delivery_corp_id`) REFERENCES `xx_delivery_corp` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_delivery_type
-- ----------------------------
INSERT INTO `xx_delivery_type` VALUES ('8a8f81d93afa3e77013afa5526f80000', '2012-11-13 23:13:35', '2012-11-14 23:11:09', '1000', '0.00000', '0', '默认方式', '1000', '0.00000', '虚拟配送', '0', '4028bc743ab4e741013ab5372e7d0005');
-- ----------------------------
-- Table structure for `xx_deposit`
-- ----------------------------
DROP TABLE IF EXISTS `xx_deposit`;
CREATE TABLE `xx_deposit` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`balance` decimal(19,5) NOT NULL,
`credit` decimal(19,5) NOT NULL,
`debit` decimal(19,5) NOT NULL,
`deposit_type` int(11) NOT NULL,
`member_id` varchar(32) DEFAULT NULL,
`lossrate` decimal(19,5) DEFAULT NULL,
`order_sn` varchar(255) DEFAULT NULL,
`referrer` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_deposit_member` (`member_id`),
KEY `xx_deposit_create_date` (`create_date`),
CONSTRAINT `xx_deposit_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `xx_member` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_deposit
-- ----------------------------
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae8fd927d0006', '2012-11-10 14:24:23', '2012-11-10 14:24:23', '200386.71000', '43.17000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae8ff0d93000f', '2012-11-10 14:26:00', '2012-11-10 14:26:00', '200578.71000', '192.00000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae90adf060016', '2012-11-10 14:38:54', '2012-11-10 14:38:54', '200636.31000', '57.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae90adf2c0017', '2012-11-10 14:38:54', '2012-11-10 14:38:54', '1.55000', '0.60000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae90bad61001e', '2012-11-10 14:39:47', '2012-11-10 14:39:47', '200693.91000', '57.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae90bad8b001f', '2012-11-10 14:39:47', '2012-11-10 14:39:47', '2.15000', '0.60000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('402880853ae8e6be013ae9102a130022', '2012-11-10 14:44:41', '2012-11-10 14:44:41', '202.15000', '200.00000', '0.00000', '0', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743abb0a04013abb2b60b50000', '2012-11-01 16:51:53', '2012-11-01 16:51:53', '11220.00000', '20.00000', '0.00000', '2', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743abe9afa013abf1cf6610000', '2012-11-02 11:14:37', '2012-11-02 11:14:37', '500.00000', '500.00000', '0.00000', '2', '4028bc743ab48628013ab4b892a00000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743abe9afa013abf1e103d0002', '2012-11-02 11:15:49', '2012-11-02 11:15:49', '700.00000', '200.00000', '0.00000', '2', '4028bc743ab48628013ab4b892a00000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743abf206b013abf27b8780001', '2012-11-02 11:26:22', '2012-11-02 11:26:22', '300.00000', '300.00000', '0.00000', '2', '4028bc743abf206b013abf27afae0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743abf206b013abf28c68c0003', '2012-11-02 11:27:31', '2012-11-02 11:27:31', '3000.00000', '2700.00000', '0.00000', '2', '4028bc743abf206b013abf27afae0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743abf3198013abf36ae0f0001', '2012-11-02 11:42:42', '2012-11-02 11:42:42', '3060.00000', '60.00000', '0.00000', '0', '4028bc743abf206b013abf27afae0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac936a6013ac93c35e00001', '2012-11-04 10:24:57', '2012-11-04 10:24:57', '11220.00000', '0.00000', '0.00000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac936a6013ac942cd410002', '2012-11-04 10:32:09', '2012-11-04 10:32:09', '697.28000', '0.00000', '1.36000', '6', '4028bc743ab48628013ab4b892a00000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac936a6013ac944bc6e0004', '2012-11-04 10:34:16', '2012-11-04 10:34:16', '9240.00000', '0.00000', '990.00000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac936a6013ac953a5d00006', '2012-11-04 10:50:33', '2012-11-04 10:50:33', '18007.00000', '7777.00000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac936a6013ac9d93da50009', '2012-11-04 13:16:28', '2012-11-04 13:16:28', '17848.60000', '0.00000', '79.20000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac9de7a013ac9e8ae280001', '2012-11-04 13:33:20', '2012-11-04 13:33:20', '18827.80000', '900.00000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac9de7a013ac9ea55fc0002', '2012-11-04 13:35:08', '2012-11-04 13:35:08', '18760.48000', '0.00000', '33.66000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac9fbfb013aca000a520001', '2012-11-04 13:58:51', '2012-11-04 13:58:51', '0.00000', '0.00000', '5.94000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac9fbfb013aca0520b10003', '2012-11-04 14:04:24', '2012-11-04 14:04:24', '200005.94000', '200000.00000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac9fbfb013aca05cf210004', '2012-11-04 14:05:09', '2012-11-04 14:05:09', '199960.40000', '0.00000', '22.77000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743ac9fbfb013aca13ea840006', '2012-11-04 14:20:33', '2012-11-04 14:20:33', '199960.40000', '0.00000', '22.77000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b645e3a013b646e977a0004', '2012-12-04 13:41:07', '2012-12-04 13:41:07', '200713.11000', '19.20000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b645e3a013b646e98060005', '2012-12-04 13:41:07', '2012-12-04 13:41:07', '202.35000', '0.20000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b647802013b647b88290004', '2012-12-04 13:55:15', '2012-12-04 13:55:15', '200732.31000', '19.20000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b647802013b647b88670005', '2012-12-04 13:55:15', '2012-12-04 13:55:15', '202.55000', '0.20000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b6dfb36013b6dfcbaf60000', '2012-12-06 10:12:57', '2012-12-06 10:12:57', '200730.39000', '0.00000', '1.92000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b742994013b742dd2980008', '2012-12-07 15:04:18', '2012-12-07 15:04:18', '200784.09000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b742994013b742dd2d60009', '2012-12-07 15:04:18', '2012-12-07 15:04:18', '203.11000', '0.18000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b742994013b74312cfe000c', '2012-12-07 15:07:58', '2012-12-07 15:07:58', '200031.45000', '0.00000', '752.64000', '6', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b7447e7013b744e63720009', '2012-12-07 15:39:52', '2012-12-07 15:39:52', '200066.65000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b7452db013b7453d52f0007', '2012-12-07 15:45:49', '2012-12-07 15:45:49', '200084.25000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b7452db013b7457dd1b000a', '2012-12-07 15:50:13', '2012-12-07 15:50:13', '200000.25000', '0.00000', '80.64000', '6', '8a9183a93a92e6de013a931577bb0000', '0.96000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b7466ad013b746cc72b0004', '2012-12-07 16:13:04', '2012-12-07 16:13:04', '200017.85000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('4028bc743b748c5c013b748d160b0004', '2012-12-07 16:48:21', '2012-12-07 16:48:21', '200123.45000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', null, null);
INSERT INTO `xx_deposit` VALUES ('4028bc743b748c5c013b748d16590005', '2012-12-07 16:48:21', '2012-12-07 16:48:21', '203.83000', '0.18000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', null, 'DD100049', '123123');
INSERT INTO `xx_deposit` VALUES ('4028bc743b8d1bfd013b8d1e15df0001', '2012-12-12 11:17:37', '2012-12-12 11:17:37', '200141.05000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', null, null);
INSERT INTO `xx_deposit` VALUES ('4028bc743b8d1bfd013b8d1e162d0002', '2012-12-12 11:17:37', '2012-12-12 11:17:37', '204.01000', '0.18000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', null, 'DD100054', '123123');
INSERT INTO `xx_deposit` VALUES ('4028bc743b8dfca5013b8dff09d20004', '2012-12-12 15:23:19', '2012-12-12 15:23:19', '200158.65000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', null, null);
INSERT INTO `xx_deposit` VALUES ('4028bc743b8dfca5013b8dff0a200005', '2012-12-12 15:23:19', '2012-12-12 15:23:19', '204.19000', '0.18000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', null, 'DD100055', '123123');
INSERT INTO `xx_deposit` VALUES ('4028bc743b938b55013b938fad860008', '2012-12-13 17:19:25', '2012-12-13 17:19:25', '200176.25000', '17.60000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', null, null);
INSERT INTO `xx_deposit` VALUES ('4028bc743b938b55013b938fade40009', '2012-12-13 17:19:25', '2012-12-13 17:19:25', '204.37000', '0.18000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', null, 'DD100057', '123123');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0be07013ae0c4acce0006', '2012-11-09 00:05:16', '2012-11-09 00:05:16', '200013.86000', '53.46000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0be07013ae0c9d3b5000c', '2012-11-09 00:10:54', '2012-11-09 00:10:54', '200022.77000', '8.91000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0be07013ae0cdef370012', '2012-11-09 00:15:23', '2012-11-09 00:15:23', '200036.14000', '13.37000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0d04c013ae0d4e25e0005', '2012-11-09 00:22:58', '2012-11-09 00:22:58', '200045.05000', '8.91000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0d04c013ae0d5aece000b', '2012-11-09 00:23:51', '2012-11-09 00:23:51', '200053.96000', '8.91000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0d04c013ae0d7c52d0011', '2012-11-09 00:26:08', '2012-11-09 00:26:08', '200062.87000', '8.91000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0d04c013ae0e331580018', '2012-11-09 00:38:36', '2012-11-09 00:38:36', '200071.78000', '8.91000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0d04c013ae0e48266001f', '2012-11-09 00:40:02', '2012-11-09 00:40:02', '200249.98000', '178.20000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0d04c013ae0e58a860026', '2012-11-09 00:41:10', '2012-11-09 00:41:10', '200339.08000', '89.10000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0e850013ae0eeff240005', '2012-11-09 00:51:30', '2012-11-09 00:51:30', '200343.54000', '4.46000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a8f80153ae0e850013ae0ef2e6e0006', '2012-11-09 00:51:42', '2012-11-09 00:51:42', '0.95000', '0.05000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a91807c3b70d14d013b70d260a30005', '2012-12-06 23:25:33', '2012-12-06 23:25:33', '200749.59000', '19.20000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a91807c3b70d14d013b70d261090006', '2012-12-06 23:25:33', '2012-12-06 23:25:33', '202.75000', '0.20000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a91807c3b70d14d013b70d4e071000d', '2012-12-06 23:28:17', '2012-12-06 23:28:17', '200766.49000', '16.90000', '0.00000', '0', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a91807c3b70d14d013b70d4e0e0000e', '2012-12-06 23:28:17', '2012-12-06 23:28:17', '202.93000', '0.18000', '0.00000', '7', '8a9182e13ab73c9e013ab74780e80000', '0.00000', '', '');
INSERT INTO `xx_deposit` VALUES ('8a9183a93a92e6de013a93157c620001', '2012-10-24 22:03:09', '2012-10-24 22:03:09', '10000.00000', '10000.00000', '0.00000', '2', '8a9183a93a92e6de013a931577bb0000', '0.00000', '', '');
-- ----------------------------
-- Table structure for `xx_friend_link`
-- ----------------------------
DROP TABLE IF EXISTS `xx_friend_link`;
CREATE TABLE `xx_friend_link` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`logo_path` varchar(255) DEFAULT NULL,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`url` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `xx_friend_link_order_list` (`order_list`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_friend_link
-- ----------------------------
INSERT INTO `xx_friend_link` VALUES ('ff8080813aa60e2e013aa628f8230000', '2012-10-28 14:57:13', '2012-10-28 14:57:13', null, '思思科技', '1', 'www.baidu.com');
INSERT INTO `xx_friend_link` VALUES ('ff8080813aa60e2e013aa6295d410001', '2012-10-28 14:57:39', '2012-10-28 14:57:39', null, '帝威软科', '2', 'www.baidu.com');
INSERT INTO `xx_friend_link` VALUES ('ff8080813aa60e2e013aa62bdf210002', '2012-10-28 15:00:23', '2012-10-28 15:00:23', '/upload/image/201210/9c85f47d23d14e06985c22380cb5f15a.png', '支付宝', '5', 'www.baidu.com');
-- ----------------------------
-- Table structure for `xx_goods`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods`;
CREATE TABLE `xx_goods` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`cost` decimal(15,5) DEFAULT NULL,
`freeze_store` int(11) NOT NULL,
`goods_attribute_value0` varchar(255) DEFAULT NULL,
`goods_attribute_value1` varchar(255) DEFAULT NULL,
`goods_attribute_value10` varchar(255) DEFAULT NULL,
`goods_attribute_value11` varchar(255) DEFAULT NULL,
`goods_attribute_value12` varchar(255) DEFAULT NULL,
`goods_attribute_value13` varchar(255) DEFAULT NULL,
`goods_attribute_value14` varchar(255) DEFAULT NULL,
`goods_attribute_value15` varchar(255) DEFAULT NULL,
`goods_attribute_value16` varchar(255) DEFAULT NULL,
`goods_attribute_value17` varchar(255) DEFAULT NULL,
`goods_attribute_value18` varchar(255) DEFAULT NULL,
`goods_attribute_value19` varchar(255) DEFAULT NULL,
`goods_attribute_value2` varchar(255) DEFAULT NULL,
`goods_attribute_value3` varchar(255) DEFAULT NULL,
`goods_attribute_value4` varchar(255) DEFAULT NULL,
`goods_attribute_value5` varchar(255) DEFAULT NULL,
`goods_attribute_value6` varchar(255) DEFAULT NULL,
`goods_attribute_value7` varchar(255) DEFAULT NULL,
`goods_attribute_value8` varchar(255) DEFAULT NULL,
`goods_attribute_value9` varchar(255) DEFAULT NULL,
`goods_image_store` text,
`goods_parameter_value_store` text,
`goods_sn` varchar(255) NOT NULL,
`html_path` varchar(255) NOT NULL,
`introduction` text,
`is_best` bit(1) NOT NULL,
`is_hot` bit(1) NOT NULL,
`is_marketable` bit(1) NOT NULL,
`is_new` bit(1) NOT NULL,
`is_specification_enabled` bit(1) NOT NULL,
`market_price` decimal(15,5) NOT NULL,
`meta_description` text,
`meta_keywords` text,
`name` varchar(255) NOT NULL,
`price` decimal(15,5) NOT NULL,
`score` int(11) NOT NULL,
`store` int(11) DEFAULT NULL,
`store_place` varchar(255) DEFAULT NULL,
`weight` int(11) NOT NULL,
`goods_type_id` varchar(32) DEFAULT NULL,
`brand_id` varchar(32) DEFAULT NULL,
`goods_category_id` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `goods_sn` (`goods_sn`),
KEY `xx_goods_goods_category` (`goods_category_id`),
KEY `xx_goods_goods_type` (`goods_type_id`),
KEY `xx_goods_brand` (`brand_id`),
KEY `xx_goods_create_date` (`create_date`),
KEY `xx_goods_name` (`name`),
KEY `xx_goods_price` (`price`),
CONSTRAINT `xx_goods_ibfk_1` FOREIGN KEY (`brand_id`) REFERENCES `xx_brand` (`id`),
CONSTRAINT `xx_goods_ibfk_2` FOREIGN KEY (`goods_category_id`) REFERENCES `xx_goods_category` (`id`),
CONSTRAINT `xx_goods_ibfk_3` FOREIGN KEY (`goods_type_id`) REFERENCES `xx_goods_type` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods
-- ----------------------------
INSERT INTO `xx_goods` VALUES ('4028e3373b17db72013b17eaed2c0000', '2012-11-19 17:06:10', '2012-11-19 17:06:10', '100.00000', '0', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 'SN_A45110394A31', '/html/201211/a444bae58a2242fbbc0bada2dcdf2ee8.html', '', '', '', '', '', '', '100.00000', '', '', '盛大一卡通', '100.00000', '0', '1000', '', '0', null, '8ae4839c3a887878013a88ac6eb10002', '8ae4839c3a887878013a88ba80150017');
INSERT INTO `xx_goods` VALUES ('8ae4839c3a887878013a88d311030032', '2012-10-22 22:14:24', '2012-10-22 22:17:26', '100.00000', '0', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 'SN_029FA07A1B4C', '/html/201210/511c9da09b1f486dba228e497878c2f5.html', '', '', '', '', '', '', '120.00000', '', '', '腾讯一卡通', '100.00000', '0', null, '', '0', null, '8ae4839c3a887878013a88acef930005', '8ae4839c3a887878013a88b9d9c10015');
-- ----------------------------
-- Table structure for `xx_goods_attribute`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods_attribute`;
CREATE TABLE `xx_goods_attribute` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`attribute_type` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`option_store` varchar(255) DEFAULT NULL,
`order_list` int(11) DEFAULT NULL,
`property_index` int(11) NOT NULL,
`goods_type_id` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
KEY `xx_goods_attribute_goods_type` (`goods_type_id`),
KEY `xx_goods_attribute_order_list` (`order_list`),
CONSTRAINT `xx_goods_attribute_ibfk_1` FOREIGN KEY (`goods_type_id`) REFERENCES `xx_goods_type` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods_attribute
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_goods_category`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods_category`;
CREATE TABLE `xx_goods_category` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`grade` int(11) NOT NULL,
`meta_description` text,
`meta_keywords` text,
`name` varchar(255) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`path` text NOT NULL,
`sign` varchar(255) NOT NULL,
`goods_type_id` varchar(32) DEFAULT NULL,
`parent_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `sign` (`sign`),
KEY `xx_goods_category_goods_type` (`goods_type_id`),
KEY `xx_goods_category_parent` (`parent_id`),
KEY `xx_goods_category_grade` (`grade`),
KEY `xx_goods_category_order_list` (`order_list`),
CONSTRAINT `xx_goods_category_ibfk_1` FOREIGN KEY (`goods_type_id`) REFERENCES `xx_goods_type` (`id`),
CONSTRAINT `xx_goods_category_ibfk_2` FOREIGN KEY (`parent_id`) REFERENCES `xx_goods_category` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods_category
-- ----------------------------
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88b9d9c10015', '2012-10-22 21:46:52', '2012-10-22 21:46:52', '0', '', '', '腾讯一卡通', '0', '8ae4839c3a887878013a88b9d9c10015', 'teng_xun', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88ba80150017', '2012-10-22 21:47:34', '2012-10-22 21:47:46', '0', '', '', '盛大一卡通', '0', '8ae4839c3a887878013a88ba80150017', 'sheng_da', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bafe98001a', '2012-10-22 21:48:07', '2012-10-22 21:48:07', '0', '', '', '骏网一卡通', '0', '8ae4839c3a887878013a88bafe98001a', 'jun_wang', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bb547e001c', '2012-10-22 21:48:29', '2012-10-22 21:48:29', '0', '', '', '完美一卡通', '0', '8ae4839c3a887878013a88bb547e001c', 'wan_mei', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bba8b4001e', '2012-10-22 21:48:50', '2012-10-22 21:48:50', '0', '', '', '搜狐一卡通', '0', '8ae4839c3a887878013a88bba8b4001e', 'sou_hu', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bc0e8b0020', '2012-10-22 21:49:16', '2012-10-22 21:49:16', '0', '', '', '征途一卡通', '0', '8ae4839c3a887878013a88bc0e8b0020', 'zheng_tu', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bc6dea0022', '2012-10-22 21:49:41', '2012-10-22 21:49:41', '0', '', '', '久游一卡通', '0', '8ae4839c3a887878013a88bc6dea0022', 'jiu_you', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bccd590024', '2012-10-22 21:50:05', '2012-10-22 21:50:05', '0', '', '', '网易一卡通', '0', '8ae4839c3a887878013a88bccd590024', 'wang_yi', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bd517a0026', '2012-10-22 21:50:39', '2012-10-22 21:50:39', '0', '', '', '电信充值卡', '0', '8ae4839c3a887878013a88bd517a0026', 'dian_xin', '8ae4839c3a887878013a88b6960e0014', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bdaf250028', '2012-10-22 21:51:03', '2012-10-22 21:51:03', '0', '', '', '联通充值卡', '0', '8ae4839c3a887878013a88bdaf250028', 'lian_tong', '8ae4839c3a887878013a88b6960e0014', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88be08aa002a', '2012-10-22 21:51:26', '2012-10-22 21:51:26', '0', '', '', '纵游一卡通', '0', '8ae4839c3a887878013a88be08aa002a', 'zong_you', '8ae4839c3a887878013a88b6960e0014', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88be6075002c', '2012-10-22 21:51:48', '2012-10-22 21:51:48', '0', '', '', '天宏一卡通', '0', '8ae4839c3a887878013a88be6075002c', 'tian_hong', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88beb496002e', '2012-10-22 21:52:10', '2012-10-22 21:52:10', '0', '', '', '天下通一卡通', '0', '8ae4839c3a887878013a88beb496002e', 'tianxia_tong', '8ae4839c3a887878013a88b39b6a0010', null);
INSERT INTO `xx_goods_category` VALUES ('8ae4839c3a887878013a88bf094e0030', '2012-10-22 21:52:32', '2012-10-22 21:52:32', '0', '', '', '移动充值卡', '0', '8ae4839c3a887878013a88bf094e0030', 'yi_dong', '8ae4839c3a887878013a88b6960e0014', null);
-- ----------------------------
-- Table structure for `xx_goods_notify`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods_notify`;
CREATE TABLE `xx_goods_notify` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`email` varchar(255) NOT NULL,
`is_sent` bit(1) NOT NULL,
`send_date` datetime DEFAULT NULL,
`product_id` varchar(32) NOT NULL,
`member_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_goods_notify_member` (`member_id`),
KEY `xx_goods_notify_product` (`product_id`),
KEY `xx_goods_notify_create_date` (`create_date`),
CONSTRAINT `xx_goods_notify_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `xx_member` (`id`),
CONSTRAINT `xx_goods_notify_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `xx_product` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods_notify
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_goods_specification`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods_specification`;
CREATE TABLE `xx_goods_specification` (
`goods_set_id` varchar(32) NOT NULL,
`specification_set_id` varchar(32) NOT NULL,
PRIMARY KEY (`goods_set_id`,`specification_set_id`),
KEY `xx_specification_set` (`goods_set_id`),
KEY `xx_specification_goods_set` (`specification_set_id`),
CONSTRAINT `xx_goods_specification_ibfk_1` FOREIGN KEY (`specification_set_id`) REFERENCES `xx_specification` (`id`),
CONSTRAINT `xx_goods_specification_ibfk_2` FOREIGN KEY (`goods_set_id`) REFERENCES `xx_goods` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods_specification
-- ----------------------------
INSERT INTO `xx_goods_specification` VALUES ('8ae4839c3a887878013a88d311030032', '8ae4839c3a887878013a889ad43a0000');
-- ----------------------------
-- Table structure for `xx_goods_type`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods_type`;
CREATE TABLE `xx_goods_type` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`goods_parameter_store` text,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods_type
-- ----------------------------
INSERT INTO `xx_goods_type` VALUES ('8ae4839c3a887878013a88b39b6a0010', '2012-10-22 21:40:03', '2012-10-22 21:42:41', null, '游戏点卡');
INSERT INTO `xx_goods_type` VALUES ('8ae4839c3a887878013a88b6960e0014', '2012-10-22 21:43:18', '2012-10-22 21:43:18', null, '手机充值卡');
-- ----------------------------
-- Table structure for `xx_goods_type_brand`
-- ----------------------------
DROP TABLE IF EXISTS `xx_goods_type_brand`;
CREATE TABLE `xx_goods_type_brand` (
`goods_type_set_id` varchar(32) NOT NULL,
`brand_set_id` varchar(32) NOT NULL,
PRIMARY KEY (`goods_type_set_id`,`brand_set_id`),
KEY `xx_goods_type_brand_set` (`goods_type_set_id`),
KEY `xx_brand_goods_type_set` (`brand_set_id`),
CONSTRAINT `xx_goods_type_brand_ibfk_1` FOREIGN KEY (`brand_set_id`) REFERENCES `xx_brand` (`id`),
CONSTRAINT `xx_goods_type_brand_ibfk_2` FOREIGN KEY (`goods_type_set_id`) REFERENCES `xx_goods_type` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_goods_type_brand
-- ----------------------------
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88a15b0f0001');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ac6eb10002');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88acc1ef0004');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88acef930005');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ad3c100007');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ad61df0008');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ad845a0009');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ada7f6000a');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88add167000b');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ae29c8000d');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ae4be5000e');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b39b6a0010', '8ae4839c3a887878013a88ae757d000f');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b6960e0014', '8ae4839c3a887878013a88aca0800003');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b6960e0014', '8ae4839c3a887878013a88ad18e10006');
INSERT INTO `xx_goods_type_brand` VALUES ('8ae4839c3a887878013a88b6960e0014', '8ae4839c3a887878013a88ae0511000c');
-- ----------------------------
-- Table structure for `xx_instant_messaging`
-- ----------------------------
DROP TABLE IF EXISTS `xx_instant_messaging`;
CREATE TABLE `xx_instant_messaging` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`instant_messaging_type` int(11) NOT NULL,
`order_list` int(11) DEFAULT NULL,
`title` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `xx_instant_messaging_order_list` (`order_list`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_instant_messaging
-- ----------------------------
INSERT INTO `xx_instant_messaging` VALUES ('8a8f81d93afa3e77013afa5857930003', '2012-11-13 23:17:04', '2012-11-13 23:17:04', '1', '1', '小M', '1232121');
INSERT INTO `xx_instant_messaging` VALUES ('8a8f81d93afa3e77013afa5857a30004', '2012-11-13 23:17:04', '2012-11-13 23:17:04', '0', '0', '小新', '123123');
-- ----------------------------
-- Table structure for `xx_leave_message`
-- ----------------------------
DROP TABLE IF EXISTS `xx_leave_message`;
CREATE TABLE `xx_leave_message` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`contact` varchar(255) DEFAULT NULL,
`content` text NOT NULL,
`ip` varchar(255) NOT NULL,
`title` varchar(255) NOT NULL,
`username` varchar(255) DEFAULT NULL,
`for_leave_message_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_leave_message_for_message` (`for_leave_message_id`),
KEY `xx_leave_message_create_date` (`create_date`),
CONSTRAINT `xx_leave_message_ibfk_1` FOREIGN KEY (`for_leave_message_id`) REFERENCES `xx_leave_message` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_leave_message
-- ----------------------------
INSERT INTO `xx_leave_message` VALUES ('4028bc743a9574fa013a95e206990000', '2012-10-25 11:05:49', '2012-10-25 11:05:49', '123@qq.com', 'eee', '127.0.0.1', 'eee', '123123', null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a92e6de013a9326a2dc0003', '2012-10-24 22:21:53', '2012-10-24 22:21:53', null, '123123', '127.0.0.1', '123123', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a92e6de013a93270c970004', '2012-10-24 22:22:20', '2012-10-24 22:22:20', null, 'yyyy', '127.0.0.1', 'yyyy', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a9369b2fc0000', '2012-10-24 23:35:08', '2012-10-24 23:35:08', null, '234', '127.0.0.1', '44234', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936a3e7d0001', '2012-10-24 23:35:44', '2012-10-24 23:35:44', null, '2345234', '127.0.0.1', '6345', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936a81f20002', '2012-10-24 23:36:01', '2012-10-24 23:36:01', null, '23452345', '127.0.0.1', '345234', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936ac06f0003', '2012-10-24 23:36:17', '2012-10-24 23:36:17', null, '2345', '127.0.0.1', '34523', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936afa9e0004', '2012-10-24 23:36:32', '2012-10-24 23:36:32', null, '365', '127.0.0.1', '4563456', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936dfaed0005', '2012-10-24 23:39:49', '2012-10-24 23:39:49', null, '12341234', '127.0.0.1', '234', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936e32f40006', '2012-10-24 23:40:03', '2012-10-24 23:40:03', null, 'rqwerqwer', '127.0.0.1', 'qwer', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936e97550007', '2012-10-24 23:40:29', '2012-10-24 23:40:29', null, '653456', '127.0.0.1', '546345', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936f32bb0008', '2012-10-24 23:41:09', '2012-10-24 23:41:09', null, '2435', '127.0.0.1', '56', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a936fbdd20009', '2012-10-24 23:41:44', '2012-10-24 23:41:44', null, 'qwerqwer', '127.0.0.1', 'qwerqwer', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a93700d34000a', '2012-10-24 23:42:05', '2012-10-24 23:42:05', null, 'wert', '127.0.0.1', 'wert', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a9370d87d000b', '2012-10-24 23:42:57', '2012-10-24 23:42:57', null, 'qweqwer', '127.0.0.1', 'weqr', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a937264df000c', '2012-10-24 23:44:38', '2012-10-24 23:44:38', null, '2435', '127.0.0.1', '3452345', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a9372acf0000d', '2012-10-24 23:44:57', '2012-10-24 23:44:57', null, 'eee', '127.0.0.1', 'eee', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a9373afa1000e', '2012-10-24 23:46:03', '2012-10-24 23:46:03', null, '1234', '127.0.0.1', '2431', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a9373f8ca000f', '2012-10-24 23:46:22', '2012-10-24 23:46:22', null, 'tttt', '127.0.0.1', 'tttt', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a937502760010', '2012-10-24 23:47:30', '2012-10-24 23:47:30', null, '2345', '127.0.0.1', '24', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a93753f6a0011', '2012-10-24 23:47:45', '2012-10-24 23:47:45', null, 'qwerqwer', '127.0.0.1', 'qwerqwer', null, null);
INSERT INTO `xx_leave_message` VALUES ('8a9183a93a935a9b013a937585f80012', '2012-10-24 23:48:03', '2012-10-24 23:48:03', null, 'ertwret', '127.0.0.1', 'ertywret', null, null);
-- ----------------------------
-- Table structure for `xx_log`
-- ----------------------------
DROP TABLE IF EXISTS `xx_log`;
CREATE TABLE `xx_log` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`action_class` varchar(255) NOT NULL,
`action_method` varchar(255) NOT NULL,
`info` text,
`ip` varchar(255) NOT NULL,
`operation` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `xx_log_create_date` (`create_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_log
-- ----------------------------
INSERT INTO `xx_log` VALUES ('402880853ae8e6be013ae8fbd9550001', '2012-11-10 14:22:30', '2012-11-10 14:22:30', 'net.xxs.action.admin.MemberAction', 'update', '编辑会员: 123123', '127.0.0.1', '编辑会员', 'admin');
INSERT INTO `xx_log` VALUES ('4028bc743abb0a04013abb2b61610001', '2012-11-01 16:51:53', '2012-11-01 16:51:53', 'net.xxs.action.admin.MemberAction', 'update', '编辑会员: 123123', '127.0.0.1', '编辑会员', 'admin');
INSERT INTO `xx_log` VALUES ('4028bc743abe9afa013abf1cf76b0001', '2012-11-02 11:14:37', '2012-11-02 11:14:37', 'net.xxs.action.admin.MemberAction', 'update', '编辑会员: 112233', '127.0.0.1', '编辑会员', 'admin');
INSERT INTO `xx_log` VALUES ('4028bc743abe9afa013abf1e106c0003', '2012-11-02 11:15:49', '2012-11-02 11:15:49', 'net.xxs.action.admin.MemberAction', 'update', '编辑会员: 112233', '127.0.0.1', '编辑会员', 'admin');
INSERT INTO `xx_log` VALUES ('4028bc743abf206b013abf27b8c60002', '2012-11-02 11:26:22', '2012-11-02 11:26:22', 'net.xxs.action.admin.MemberAction', 'save', '添加会员: 123456', '127.0.0.1', '添加会员', 'admin');
INSERT INTO `xx_log` VALUES ('4028bc743abf206b013abf28c6cb0004', '2012-11-02 11:27:31', '2012-11-02 11:27:31', 'net.xxs.action.admin.MemberAction', 'update', '编辑会员: 123456', '127.0.0.1', '编辑会员', 'admin');
INSERT INTO `xx_log` VALUES ('4028bc743ac000ea013ac00c08b60001', '2012-11-02 15:35:45', '2012-11-02 15:35:45', 'net.xxs.action.admin.AdminAction', 'update', '编辑管理员: admin', '127.0.0.1', '编辑管理员', 'admin');
INSERT INTO `xx_log` VALUES ('4028e3373b17db72013b17eaf0180002', '2012-11-19 17:06:11', '2012-11-19 17:06:11', 'net.xxs.action.admin.GoodsAction', 'save', '添加商品: 盛大一卡通', '127.0.0.1', '添加商品', 'admin');
INSERT INTO `xx_log` VALUES ('8a8f83943ab198ff013ab1e97f1a0000', '2012-10-30 21:43:20', '2012-10-30 21:43:20', 'net.xxs.action.admin.ArticleAction', 'update', '编辑文章: 收卡价格', '127.0.0.1', '编辑文章', 'admin');
INSERT INTO `xx_log` VALUES ('8a8f83943ab198ff013ab1e9ae360001', '2012-10-30 21:43:32', '2012-10-30 21:43:32', 'net.xxs.action.admin.ArticleAction', 'update', '编辑文章: 联系我们', '127.0.0.1', '编辑文章', 'admin');
INSERT INTO `xx_log` VALUES ('8a9182e13ab666b7013ab6acda4f000a', '2012-10-31 19:55:12', '2012-10-31 19:55:12', 'net.xxs.action.admin.OrderAction', 'shipping', '订单编号: DD100003', '127.0.0.1', '订单发货', 'admin');
INSERT INTO `xx_log` VALUES ('8a9182e13ab666b7013ab6aced5c000c', '2012-10-31 19:55:17', '2012-10-31 19:55:17', 'net.xxs.action.admin.OrderAction', 'completed', '订单编号: DD100003', '127.0.0.1', '订单完成', 'admin');
INSERT INTO `xx_log` VALUES ('8a9183a93a92e6de013a93157cbe0002', '2012-10-24 22:03:09', '2012-10-24 22:03:09', 'net.xxs.action.admin.MemberAction', 'save', '添加会员: 123123', '127.0.0.1', '添加会员', 'admin');
INSERT INTO `xx_log` VALUES ('8a9183a93a92e6de013a932f60de0005', '2012-10-24 22:31:26', '2012-10-24 22:31:26', 'net.xxs.action.admin.SettingAction', 'update', null, '127.0.0.1', '系统设置', 'admin');
-- ----------------------------
-- Table structure for `xx_member`
-- ----------------------------
DROP TABLE IF EXISTS `xx_member`;
CREATE TABLE `xx_member` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`area_store` varchar(255) DEFAULT NULL,
`birth` datetime DEFAULT NULL,
`deposit` decimal(15,5) NOT NULL,
`email` varchar(255) NOT NULL,
`gender` int(11) DEFAULT NULL,
`is_account_enabled` bit(1) NOT NULL,
`is_account_locked` bit(1) NOT NULL,
`locked_date` datetime DEFAULT NULL,
`login_date` datetime DEFAULT NULL,
`login_failure_count` int(11) NOT NULL,
`login_ip` varchar(255) DEFAULT NULL,
`member_attribute_value0` varchar(255) DEFAULT NULL,
`member_attribute_value1` varchar(255) DEFAULT NULL,
`member_attribute_value10` varchar(255) DEFAULT NULL,
`member_attribute_value11` varchar(255) DEFAULT NULL,
`member_attribute_value12` varchar(255) DEFAULT NULL,
`member_attribute_value13` varchar(255) DEFAULT NULL,
`member_attribute_value14` varchar(255) DEFAULT NULL,
`member_attribute_value15` varchar(255) DEFAULT NULL,
`member_attribute_value16` varchar(255) DEFAULT NULL,
`member_attribute_value17` varchar(255) DEFAULT NULL,
`member_attribute_value18` varchar(255) DEFAULT NULL,
`member_attribute_value19` varchar(255) DEFAULT NULL,
`member_attribute_value2` varchar(255) DEFAULT NULL,
`member_attribute_value3` varchar(255) DEFAULT NULL,
`member_attribute_value4` varchar(255) DEFAULT NULL,
`member_attribute_value5` varchar(255) DEFAULT NULL,
`member_attribute_value6` varchar(255) DEFAULT NULL,
`member_attribute_value7` varchar(255) DEFAULT NULL,
`member_attribute_value8` varchar(255) DEFAULT NULL,
`member_attribute_value9` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`password` varchar(255) NOT NULL,
`password_recover_key` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`register_ip` varchar(255) NOT NULL,
`safe_answer` varchar(255) DEFAULT NULL,
`safe_question` varchar(255) DEFAULT NULL,
`score` int(11) NOT NULL,
`username` varchar(255) NOT NULL,
`zip_code` varchar(255) DEFAULT NULL,
`member_rank_id` varchar(32) NOT NULL,
`referrer` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
KEY `xx_member_member_rank` (`member_rank_id`),
CONSTRAINT `xx_member_ibfk_1` FOREIGN KEY (`member_rank_id`) REFERENCES `xx_member_rank` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_member
-- ----------------------------
INSERT INTO `xx_member` VALUES ('4028bc743ab48628013ab4b892a00000', '2012-10-31 10:48:46', '2012-12-07 16:56:26', null, null, null, '698.64000', '123@qq.com', '0', '', '', null, '2012-12-07 16:56:26', '0', '127.0.0.1', '111111111', null, null, null, null, null, null, null, null, null, null, null, null, '建设银行', null, null, null, null, null, null, null, null, '4297f44b13955235245b2497399d7a93', null, null, '127.0.0.1', null, null, '57', '112233', null, '0731dcsoft2010031200000000000010', 'xiaduoer');
INSERT INTO `xx_member` VALUES ('4028bc743abf206b013abf27afae0000', '2012-11-02 11:26:20', '2012-11-02 11:42:34', null, null, '2012-11-22 00:00:00', '3060.00000', '123456@qq.com', '0', '', '', null, '2012-11-02 11:26:51', '0', '127.0.0.1', '24312341234', null, null, null, null, null, null, null, null, null, null, null, null, '建设银行', null, null, null, null, null, null, null, '123456', '4297f44b13955235245b2497399d7a93', null, null, '127.0.0.1', null, null, '5000', '123456', null, '402881833054c381013054d0bf800002', 'xiaduoer');
INSERT INTO `xx_member` VALUES ('8a9182e13ab73c9e013ab74780e80000', '2012-10-31 22:44:07', '2012-12-13 17:19:25', null, null, null, '204.37000', 'xiaduoer@163.com', null, '', '', null, '2012-12-07 16:51:20', '2', '127.0.0.1', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, '4297f44b13955235245b2497399d7a93', null, null, '127.0.0.1', null, null, '0', 'xiaduoer', null, '402881833054c381013054d0bf800002', 'xiaduoer');
INSERT INTO `xx_member` VALUES ('8a9183a93a92e6de013a931577bb0000', '2012-10-24 22:03:08', '2012-12-14 14:37:31', '123', null, '2012-10-17 00:00:00', '200176.25000', '123@qq.com', '0', '', '', null, '2012-12-14 14:37:31', '0', '127.0.0.1', '7878467486@qq.com', '北京市', null, null, null, null, null, null, null, null, null, null, '张成', '建设银行', '西单支行', null, null, null, null, null, '123', '111', '4297f44b13955235245b2497399d7a93', '1352095466484_5d10233c974145cd86d898a4afe84087a4e4d2896be046b250cc3ddabae55217', '123', '127.0.0.1', null, null, '123', '123123', '123', '0731dcsoft2010031200000000000010', 'xiaduoer');
INSERT INTO `xx_member` VALUES ('8a9183f63ad5735c013ad581e48f0000', '2012-11-06 19:36:30', '2012-11-06 19:36:30', null, null, null, '0.00000', '12333@qq.com', null, '', '', null, '2012-11-06 19:36:30', '0', '127.0.0.1', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, '4297f44b13955235245b2497399d7a93', null, null, '127.0.0.1', null, null, '0', '7777', null, '402881833054c381013054d0bf800002', 'xiaduoer');
-- ----------------------------
-- Table structure for `xx_member_attribute`
-- ----------------------------
DROP TABLE IF EXISTS `xx_member_attribute`;
CREATE TABLE `xx_member_attribute` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`attribute_type` int(11) DEFAULT NULL,
`is_enabled` bit(1) NOT NULL,
`is_required` bit(1) NOT NULL,
`name` varchar(255) NOT NULL,
`option_store` varchar(255) DEFAULT NULL,
`order_list` int(11) DEFAULT NULL,
`property_index` int(11) NOT NULL,
`system_attribute_type` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_member_attribute_order_list` (`order_list`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_member_attribute
-- ----------------------------
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000001', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '姓名', null, '1', '0', '0');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000002', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '性别', null, '2', '1', '1');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000003', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '出生日期', null, '3', '2', '2');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000004', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '地区', null, '4', '3', '3');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000005', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '地址', null, '5', '4', '4');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000006', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '邮编', null, '6', '5', '5');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000007', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '电话', null, '7', '6', '6');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000008', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '0', '', '', '手机', null, '8', '7', '7');
INSERT INTO `xx_member_attribute` VALUES ('0731dcsoft2010031200000000000009', '2011-01-01 00:00:00', '2012-12-08 13:01:19', '0', '', '', '推荐人', null, '9', '8', '8');
INSERT INTO `xx_member_attribute` VALUES ('4028bc743a9c37c6013a9c4d24c80000', '2012-10-26 17:00:32', '2012-11-10 12:44:56', '0', '', '', '收款卡号', null, '11', '0', null);
INSERT INTO `xx_member_attribute` VALUES ('4028bc743ab48628013ab4bdae9c0001', '2012-10-31 10:54:20', '2012-11-10 12:44:38', '3', '', '', '账号类型', '[\"建设银行\",\"农业银行\",\"光大银行\",\"中信银行\"]', '10', '3', null);
INSERT INTO `xx_member_attribute` VALUES ('8a8f81133ae86694013ae8a020320000', '2012-11-10 12:42:19', '2012-11-10 12:42:35', '3', '', '', '开户银行所在地', '[\"北京市\",\"河南省\"]', '13', '1', null);
INSERT INTO `xx_member_attribute` VALUES ('8a8f81133ae86694013ae8a1ced50001', '2012-11-10 12:44:09', '2012-11-10 12:44:09', '0', '', '', '开户姓名', null, '12', '2', null);
INSERT INTO `xx_member_attribute` VALUES ('8a8f81133ae86694013ae8a30b0d0002', '2012-11-10 12:45:30', '2012-11-10 12:45:30', '0', '', '', '支行名称', null, '14', '4', null);
-- ----------------------------
-- Table structure for `xx_member_goods`
-- ----------------------------
DROP TABLE IF EXISTS `xx_member_goods`;
CREATE TABLE `xx_member_goods` (
`favorite_member_set_id` varchar(32) NOT NULL,
`favorite_goods_set_id` varchar(32) NOT NULL,
PRIMARY KEY (`favorite_member_set_id`,`favorite_goods_set_id`),
KEY `xx_member_favorite_goods_set` (`favorite_member_set_id`),
KEY `xx_goods_favorite_member_set` (`favorite_goods_set_id`),
CONSTRAINT `xx_member_goods_ibfk_1` FOREIGN KEY (`favorite_goods_set_id`) REFERENCES `xx_goods` (`id`),
CONSTRAINT `xx_member_goods_ibfk_2` FOREIGN KEY (`favorite_member_set_id`) REFERENCES `xx_member` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_member_goods
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_member_rank`
-- ----------------------------
DROP TABLE IF EXISTS `xx_member_rank`;
CREATE TABLE `xx_member_rank` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`is_default` bit(1) NOT NULL,
`name` varchar(255) NOT NULL,
`preferential_scale` double NOT NULL,
`score` int(11) NOT NULL,
`lossrate` double NOT NULL,
`benefits` double NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
UNIQUE KEY `score` (`score`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_member_rank
-- ----------------------------
INSERT INTO `xx_member_rank` VALUES ('0731dcsoft2010031200000000000010', '2011-01-01 00:00:00', '2012-10-26 17:05:44', '', '普通会员', '100', '0', '0.96', '0.01');
INSERT INTO `xx_member_rank` VALUES ('402881833054c381013054d08bed0001', '2011-01-01 00:00:00', '2012-11-05 09:12:49', '', '一级会员', '100', '2000', '0.97', '0.01');
INSERT INTO `xx_member_rank` VALUES ('402881833054c381013054d0bf800002', '2011-01-01 00:00:00', '2012-10-26 16:55:12', '', '二级会员', '100', '5000', '0.98', '0.01');
INSERT INTO `xx_member_rank` VALUES ('402881833054c381013054d103ec0003', '2011-01-01 00:00:00', '2011-01-01 00:00:00', '', '三级会员', '100', '10000', '0.99', '0.01');
-- ----------------------------
-- Table structure for `xx_message`
-- ----------------------------
DROP TABLE IF EXISTS `xx_message`;
CREATE TABLE `xx_message` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,
`content` text NOT NULL,
`delete_status` int(11) NOT NULL,
`is_read` bit(1) NOT NULL,
`is_save_draftbox` bit(1) NOT NULL,
`title` varchar(255) NOT NULL,
`from_member_id` varchar(32) DEFAULT NULL,
`to_member_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `xx_message_from_member` (`from_member_id`),
KEY `xx_message_to_member` (`to_member_id`),
KEY `xx_message_create_date` (`create_date`),
CONSTRAINT `xx_message_ibfk_1` FOREIGN KEY (`from_member_id`) REFERENCES `xx_member` (`id`),
CONSTRAINT `xx_message_ibfk_2` FOREIGN KEY (`to_member_id`) REFERENCES `xx_member` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of xx_message
-- ----------------------------
-- ----------------------------
-- Table structure for `xx_navigation`
-- ----------------------------
DROP TABLE IF EXISTS `xx_navigation`;
CREATE TABLE `xx_navigation` (
`id` varchar(32) NOT NULL,
`create_date` datetime DEFAULT NULL,
`modify_date` datetime DEFAULT NULL,