-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path9lego.sql
6112 lines (5932 loc) · 509 KB
/
9lego.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 : 127.0.0.1
Source Server Version : 50524
Source Host : 127.0.0.1:3306
Source Database : 9lego
Target Server Type : MYSQL
Target Server Version : 50524
File Encoding : 65001
Date: 2014-04-10 10:41:14
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `lego_account_log`
-- ----------------------------
DROP TABLE IF EXISTS `lego_account_log`;
CREATE TABLE `lego_account_log` (
`log_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) unsigned NOT NULL,
`user_money` decimal(10,2) NOT NULL,
`frozen_money` decimal(10,2) NOT NULL,
`rank_points` mediumint(9) NOT NULL,
`pay_points` mediumint(9) NOT NULL,
`change_time` int(10) unsigned NOT NULL,
`change_desc` varchar(255) NOT NULL,
`change_type` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`log_id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_account_log
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_ad`
-- ----------------------------
DROP TABLE IF EXISTS `lego_ad`;
CREATE TABLE `lego_ad` (
`ad_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`position_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`media_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`ad_name` varchar(60) NOT NULL DEFAULT '',
`ad_link` varchar(255) NOT NULL DEFAULT '',
`ad_code` text NOT NULL,
`start_time` int(11) NOT NULL DEFAULT '0',
`end_time` int(11) NOT NULL DEFAULT '0',
`link_man` varchar(60) NOT NULL DEFAULT '',
`link_email` varchar(60) NOT NULL DEFAULT '',
`link_phone` varchar(60) NOT NULL DEFAULT '',
`click_count` mediumint(8) unsigned NOT NULL DEFAULT '0',
`enabled` tinyint(3) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`ad_id`),
KEY `position_id` (`position_id`),
KEY `enabled` (`enabled`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_ad
-- ----------------------------
INSERT INTO `lego_ad` VALUES ('1', '1', '0', '首页左侧公告下方', '', '1395083419883245097.jpg', '1395043200', '1817971200', '', '', '', '0', '1');
INSERT INTO `lego_ad` VALUES ('2', '2', '0', '首页品牌馆广告1', '', '1395102492548019604.jpg', '1395043200', '1650096000', '', '', '', '0', '1');
INSERT INTO `lego_ad` VALUES ('3', '2', '0', '首页品牌馆广告2', '', '1395102563563259104.jpg', '1395043200', '1650096000', '', '', '', '1', '1');
INSERT INTO `lego_ad` VALUES ('4', '2', '0', '首页品牌馆广告3', '', '1395102587645982936.jpg', '1395043200', '1650096000', '', '', '', '0', '1');
INSERT INTO `lego_ad` VALUES ('5', '2', '0', '首页品牌馆广告4', '', '1395102627171935319.jpg', '1395043200', '1650096000', '', '', '', '1', '1');
INSERT INTO `lego_ad` VALUES ('6', '2', '0', '首页品牌馆广告5', '', '1395102643056246082.jpg', '1395043200', '1650096000', '', '', '', '0', '1');
INSERT INTO `lego_ad` VALUES ('7', '3', '0', '首页全宽行广告', '', '1395103879947831038.jpg', '1395043200', '1650096000', '', '', '', '0', '1');
INSERT INTO `lego_ad` VALUES ('8', '4', '0', '首页商品分类内广告1', '', '1395165263409182523.jpg', '1395129600', '1650182400', '', '', '', '0', '1');
INSERT INTO `lego_ad` VALUES ('9', '4', '0', '首页商品分类内广告2', '', '1395165318462292254.jpg', '1395129600', '1650182400', '', '', '', '1', '1');
INSERT INTO `lego_ad` VALUES ('10', '4', '0', '首页商品分类内广告3', '', '1395621905213961042.jpg', '1395561600', '1650614400', '', '', '', '3', '1');
-- ----------------------------
-- Table structure for `lego_admin_action`
-- ----------------------------
DROP TABLE IF EXISTS `lego_admin_action`;
CREATE TABLE `lego_admin_action` (
`action_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`action_code` varchar(20) NOT NULL DEFAULT '',
`relevance` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`action_id`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=136 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_admin_action
-- ----------------------------
INSERT INTO `lego_admin_action` VALUES ('1', '0', 'goods', '');
INSERT INTO `lego_admin_action` VALUES ('2', '0', 'cms_manage', '');
INSERT INTO `lego_admin_action` VALUES ('3', '0', 'users_manage', '');
INSERT INTO `lego_admin_action` VALUES ('4', '0', 'priv_manage', '');
INSERT INTO `lego_admin_action` VALUES ('5', '0', 'sys_manage', '');
INSERT INTO `lego_admin_action` VALUES ('6', '0', 'order_manage', '');
INSERT INTO `lego_admin_action` VALUES ('7', '0', 'promotion', '');
INSERT INTO `lego_admin_action` VALUES ('8', '0', 'email', '');
INSERT INTO `lego_admin_action` VALUES ('9', '0', 'templates_manage', '');
INSERT INTO `lego_admin_action` VALUES ('10', '0', 'db_manage', '');
INSERT INTO `lego_admin_action` VALUES ('11', '0', 'sms_manage', '');
INSERT INTO `lego_admin_action` VALUES ('21', '1', 'goods_manage', '');
INSERT INTO `lego_admin_action` VALUES ('22', '1', 'remove_back', '');
INSERT INTO `lego_admin_action` VALUES ('23', '1', 'cat_manage', '');
INSERT INTO `lego_admin_action` VALUES ('24', '1', 'cat_drop', 'cat_manage');
INSERT INTO `lego_admin_action` VALUES ('25', '1', 'attr_manage', '');
INSERT INTO `lego_admin_action` VALUES ('26', '1', 'brand_manage', '');
INSERT INTO `lego_admin_action` VALUES ('27', '1', 'comment_priv', '');
INSERT INTO `lego_admin_action` VALUES ('84', '1', 'tag_manage', '');
INSERT INTO `lego_admin_action` VALUES ('30', '2', 'article_cat', '');
INSERT INTO `lego_admin_action` VALUES ('31', '2', 'article_manage', '');
INSERT INTO `lego_admin_action` VALUES ('32', '2', 'shopinfo_manage', '');
INSERT INTO `lego_admin_action` VALUES ('33', '2', 'shophelp_manage', '');
INSERT INTO `lego_admin_action` VALUES ('34', '2', 'vote_priv', '');
INSERT INTO `lego_admin_action` VALUES ('35', '7', 'topic_manage', '');
INSERT INTO `lego_admin_action` VALUES ('74', '4', 'template_manage', '');
INSERT INTO `lego_admin_action` VALUES ('73', '3', 'feedback_priv', '');
INSERT INTO `lego_admin_action` VALUES ('38', '3', 'integrate_users', '');
INSERT INTO `lego_admin_action` VALUES ('39', '3', 'sync_users', 'integrate_users');
INSERT INTO `lego_admin_action` VALUES ('40', '3', 'users_manage', '');
INSERT INTO `lego_admin_action` VALUES ('41', '3', 'users_drop', 'users_manage');
INSERT INTO `lego_admin_action` VALUES ('42', '3', 'user_rank', '');
INSERT INTO `lego_admin_action` VALUES ('85', '3', 'surplus_manage', 'account_manage');
INSERT INTO `lego_admin_action` VALUES ('43', '4', 'admin_manage', '');
INSERT INTO `lego_admin_action` VALUES ('44', '4', 'admin_drop', 'admin_manage');
INSERT INTO `lego_admin_action` VALUES ('45', '4', 'allot_priv', 'admin_manage');
INSERT INTO `lego_admin_action` VALUES ('46', '4', 'logs_manage', '');
INSERT INTO `lego_admin_action` VALUES ('47', '4', 'logs_drop', 'logs_manage');
INSERT INTO `lego_admin_action` VALUES ('48', '5', 'shop_config', '');
INSERT INTO `lego_admin_action` VALUES ('49', '5', 'ship_manage', '');
INSERT INTO `lego_admin_action` VALUES ('50', '5', 'payment', '');
INSERT INTO `lego_admin_action` VALUES ('51', '5', 'shiparea_manage', '');
INSERT INTO `lego_admin_action` VALUES ('52', '5', 'area_manage', '');
INSERT INTO `lego_admin_action` VALUES ('53', '6', 'order_os_edit', '');
INSERT INTO `lego_admin_action` VALUES ('54', '6', 'order_ps_edit', 'order_os_edit');
INSERT INTO `lego_admin_action` VALUES ('55', '6', 'order_ss_edit', 'order_os_edit');
INSERT INTO `lego_admin_action` VALUES ('56', '6', 'order_edit', 'order_os_edit');
INSERT INTO `lego_admin_action` VALUES ('57', '6', 'order_view', '');
INSERT INTO `lego_admin_action` VALUES ('58', '6', 'order_view_finished', '');
INSERT INTO `lego_admin_action` VALUES ('59', '6', 'repay_manage', '');
INSERT INTO `lego_admin_action` VALUES ('60', '6', 'booking', '');
INSERT INTO `lego_admin_action` VALUES ('61', '6', 'sale_order_stats', '');
INSERT INTO `lego_admin_action` VALUES ('62', '6', 'client_flow_stats', '');
INSERT INTO `lego_admin_action` VALUES ('78', '7', 'snatch_manage', '');
INSERT INTO `lego_admin_action` VALUES ('83', '7', 'ad_manage', '');
INSERT INTO `lego_admin_action` VALUES ('80', '7', 'gift_manage', '');
INSERT INTO `lego_admin_action` VALUES ('81', '7', 'card_manage', '');
INSERT INTO `lego_admin_action` VALUES ('70', '1', 'goods_type', '');
INSERT INTO `lego_admin_action` VALUES ('82', '7', 'pack', '');
INSERT INTO `lego_admin_action` VALUES ('79', '7', 'bonus_manage', '');
INSERT INTO `lego_admin_action` VALUES ('75', '5', 'friendlink', '');
INSERT INTO `lego_admin_action` VALUES ('76', '5', 'db_backup', '');
INSERT INTO `lego_admin_action` VALUES ('77', '5', 'db_renew', 'db_backup');
INSERT INTO `lego_admin_action` VALUES ('86', '4', 'agency_manage', '');
INSERT INTO `lego_admin_action` VALUES ('87', '3', 'account_manage', '');
INSERT INTO `lego_admin_action` VALUES ('88', '5', 'flash_manage', '');
INSERT INTO `lego_admin_action` VALUES ('89', '5', 'navigator', '');
INSERT INTO `lego_admin_action` VALUES ('90', '7', 'auction', '');
INSERT INTO `lego_admin_action` VALUES ('91', '7', 'group_by', '');
INSERT INTO `lego_admin_action` VALUES ('92', '7', 'favourable', '');
INSERT INTO `lego_admin_action` VALUES ('93', '7', 'whole_sale', '');
INSERT INTO `lego_admin_action` VALUES ('94', '1', 'goods_auto', '');
INSERT INTO `lego_admin_action` VALUES ('95', '2', 'article_auto', '');
INSERT INTO `lego_admin_action` VALUES ('96', '5', 'cron', '');
INSERT INTO `lego_admin_action` VALUES ('97', '5', 'affiliate', '');
INSERT INTO `lego_admin_action` VALUES ('98', '5', 'affiliate_ck', '');
INSERT INTO `lego_admin_action` VALUES ('99', '8', 'attention_list', '');
INSERT INTO `lego_admin_action` VALUES ('100', '8', 'email_list', '');
INSERT INTO `lego_admin_action` VALUES ('101', '8', 'magazine_list', '');
INSERT INTO `lego_admin_action` VALUES ('102', '8', 'view_sendlist', '');
INSERT INTO `lego_admin_action` VALUES ('103', '1', 'virualcard', '');
INSERT INTO `lego_admin_action` VALUES ('104', '7', 'package_manage', '');
INSERT INTO `lego_admin_action` VALUES ('105', '1', 'picture_batch', '');
INSERT INTO `lego_admin_action` VALUES ('106', '1', 'goods_export', '');
INSERT INTO `lego_admin_action` VALUES ('107', '1', 'goods_batch', '');
INSERT INTO `lego_admin_action` VALUES ('108', '1', 'gen_goods_script', '');
INSERT INTO `lego_admin_action` VALUES ('109', '5', 'sitemap', '');
INSERT INTO `lego_admin_action` VALUES ('110', '5', 'file_priv', '');
INSERT INTO `lego_admin_action` VALUES ('111', '5', 'file_check', '');
INSERT INTO `lego_admin_action` VALUES ('112', '9', 'template_select', '');
INSERT INTO `lego_admin_action` VALUES ('113', '9', 'template_setup', '');
INSERT INTO `lego_admin_action` VALUES ('114', '9', 'library_manage', '');
INSERT INTO `lego_admin_action` VALUES ('115', '9', 'lang_edit', '');
INSERT INTO `lego_admin_action` VALUES ('116', '9', 'backup_setting', '');
INSERT INTO `lego_admin_action` VALUES ('117', '9', 'mail_template', '');
INSERT INTO `lego_admin_action` VALUES ('118', '10', 'db_backup', '');
INSERT INTO `lego_admin_action` VALUES ('119', '10', 'db_renew', '');
INSERT INTO `lego_admin_action` VALUES ('120', '10', 'db_optimize', '');
INSERT INTO `lego_admin_action` VALUES ('121', '10', 'sql_query', '');
INSERT INTO `lego_admin_action` VALUES ('122', '10', 'convert', '');
INSERT INTO `lego_admin_action` VALUES ('124', '11', 'sms_send', '');
INSERT INTO `lego_admin_action` VALUES ('128', '7', 'exchange_goods', '');
INSERT INTO `lego_admin_action` VALUES ('129', '6', 'delivery_view', '');
INSERT INTO `lego_admin_action` VALUES ('130', '6', 'back_view', '');
INSERT INTO `lego_admin_action` VALUES ('131', '5', 'reg_fields', '');
INSERT INTO `lego_admin_action` VALUES ('132', '5', 'shop_authorized', '');
INSERT INTO `lego_admin_action` VALUES ('133', '5', 'webcollect_manage', '');
INSERT INTO `lego_admin_action` VALUES ('134', '4', 'suppliers_manage', '');
INSERT INTO `lego_admin_action` VALUES ('135', '4', 'role_manage', '');
-- ----------------------------
-- Table structure for `lego_admin_log`
-- ----------------------------
DROP TABLE IF EXISTS `lego_admin_log`;
CREATE TABLE `lego_admin_log` (
`log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`log_time` int(10) unsigned NOT NULL DEFAULT '0',
`user_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`log_info` varchar(255) NOT NULL DEFAULT '',
`ip_address` varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (`log_id`),
KEY `log_time` (`log_time`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=144 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_admin_log
-- ----------------------------
INSERT INTO `lego_admin_log` VALUES ('1', '1395006787', '1', '编辑前台语言项: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('2', '1395082633', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('3', '1395083368', '1', '添加广告位置: 首页左侧公告下方', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('4', '1395083419', '1', '添加广告: 首页左侧公告下方', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('5', '1395095745', '1', '添加商品分类: 白酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('6', '1395095755', '1', '添加商品分类: 葡萄酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('7', '1395095763', '1', '添加商品分类: 洋酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('8', '1395095770', '1', '添加商品分类: 啤酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('9', '1395095775', '1', '添加商品分类: 酒具', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('10', '1395096665', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('11', '1395096741', '1', '添加商品: 法国马蒂隆1907干红葡萄酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('12', '1395097411', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('13', '1395097531', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('14', '1395097693', '1', '编辑前台语言项: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('15', '1395097794', '1', '编辑前台语言项: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('16', '1395098862', '1', '添加文章分类: 酒乐go资讯', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('17', '1395098973', '1', '添加文章: 酒乐go—茅台,五粮液,剑南春,全月有促销啦!', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('18', '1395098985', '1', '添加文章: 酒乐go—9月新活动,全面出炉,详询6677-7766', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('19', '1395098994', '1', '添加文章: 酒乐go—双沟大曲(八)买一送一双沟大曲(三)', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('20', '1395099001', '1', '添加文章: 酒乐go——8月会员日活动', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('21', '1395099008', '1', '添加文章: 酒乐go——8月追加活动听嘉士伯冰纯330ml加9元赠精制口子窖', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('22', '1395099015', '1', '添加文章: 酒乐go——8月追加活动听装百威啤酒330ml加9元赠精制口子窖', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('23', '1395099022', '1', '添加文章: 酒乐go——8月追加活动听乐堡啤酒500ml第2箱半价加9元送杜康K3品鉴酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('24', '1395099266', '1', '编辑广告位置: 首页左侧公告下方', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('25', '1395099444', '1', '编辑广告位置: 首页左侧公告下方', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('26', '1395102424', '1', '添加广告位置: 首页品牌馆广告位', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('27', '1395102492', '1', '添加广告: 首页品牌馆广告1', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('28', '1395102563', '1', '添加广告: 首页品牌馆广告2', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('29', '1395102587', '1', '添加广告: 首页品牌馆广告3', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('30', '1395102601', '1', '编辑广告: 首页品牌馆广告3', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('31', '1395102627', '1', '添加广告: 首页品牌馆广告4', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('32', '1395102643', '1', '添加广告: 首页品牌馆广告5', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('33', '1395103843', '1', '添加广告位置: 首页全宽行广告位', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('34', '1395103879', '1', '添加广告: 首页全宽行广告', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('35', '1395164420', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('36', '1395165211', '1', '添加广告位置: 首页商品分类内广告位', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('37', '1395165263', '1', '添加广告: 首页商品分类内广告1', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('38', '1395165318', '1', '添加广告: 首页商品分类内广告2', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('39', '1395165391', '1', '编辑广告: 首页商品分类内广告2', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('40', '1395166028', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('41', '1395170292', '1', '编辑前台语言项: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('42', '1395186261', '1', '添加文章分类: 购物指南', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('43', '1395186271', '1', '添加文章分类: 支付帮助', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('44', '1395186286', '1', '添加文章分类: 物流配送', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('45', '1395186295', '1', '添加文章分类: 关于我们', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('46', '1395186304', '1', '添加文章分类: 招商合作', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('47', '1395186363', '1', '添加文章: 账户注册', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('48', '1395186941', '1', '添加友情链接: 101便利', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('49', '1395187944', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('50', '1395187969', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('51', '1395188193', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('52', '1395188240', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('53', '1395190262', '1', '添加属性: 产地', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('54', '1395190442', '1', '添加属性: 香型', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('55', '1395190580', '1', '添加属性: 产地', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('56', '1395190594', '1', '编辑属性: 香型', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('57', '1395190689', '1', '添加属性: 颜色', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('58', '1395190711', '1', '添加属性: 干型', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('59', '1395190772', '1', '添加属性: 产地', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('60', '1395190784', '1', '添加属性: 种类', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('61', '1395190840', '1', '编辑商品分类: 葡萄酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('62', '1395190887', '1', '编辑商品: 法国马蒂隆1907干红葡萄酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('63', '1395425207', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('64', '1395428522', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('65', '1395428701', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('66', '1395430511', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('67', '1395430740', '1', '编辑商品: 法国马蒂隆1907干红葡萄酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('68', '1395438523', '1', '添加商品: 法国拉菲庄园法莱利经典干红葡萄酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('69', '1395438977', '1', '编辑商品: 法国拉菲庄园法莱利经典干红葡萄酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('70', '1395440181', '1', '添加商品: 法国拉菲庄园法莱利干红葡萄酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('71', '1395440303', '1', '添加商品: 法国拉菲庄园法莱利金冠2010干红礼盒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('72', '1395440315', '1', '编辑商品: 法国拉菲庄园法莱利干红葡萄酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('73', '1395444503', '1', '添加商品: 法国拉菲庄园法莱利2011干红单支礼盒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('74', '1395444655', '1', '添加商品: 中国张裕馆藏干红葡萄酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('75', '1395445027', '1', '编辑属性: 产地', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('76', '1395445033', '1', '编辑属性: 颜色', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('77', '1395445037', '1', '编辑属性: 干型', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('78', '1395446718', '1', '编辑商品分类: 葡萄酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('79', '1395447509', '1', '添加商品: 52°茅台集团经典品位珍品 500ml ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('80', '1395447654', '1', '添加商品: 53°酱领经典捆沙工艺健康酱香 500ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('81', '1395447683', '1', '编辑属性: 产地', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('82', '1395447687', '1', '编辑属性: 颜色', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('83', '1395447692', '1', '编辑属性: 干型', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('84', '1395447825', '1', '添加商品: 53°汾酒集团20年陈酿(帝王黄)475ml ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('85', '1395447935', '1', '添加属性: 度数', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('86', '1395447947', '1', '编辑商品: 53°汾酒集团20年陈酿(帝王黄)475ml ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('87', '1395447958', '1', '编辑商品: 53°酱领经典捆沙工艺健康酱香 500ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('88', '1395447967', '1', '编辑商品: 52°茅台集团经典品位珍品 500ml ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('89', '1395448171', '1', '编辑商品分类: 白酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('90', '1395448400', '1', '添加商品: 52°泸州老窖永盛烧坊老窖专酿红装纪念版 500ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('91', '1395448568', '1', '添加商品: 42°白云边十二年陈酿 500ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('92', '1395448683', '1', '编辑品牌管理: 茅台', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('93', '1395617056', '1', '添加商品: 40°百加得超级朗姆酒 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('94', '1395617424', '1', '添加商品: 40°美国深蓝伏特加 750ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('95', '1395617579', '1', '添加商品: 4.8°百加得冰锐朗姆预调酒蓝莓味 275ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('96', '1395617648', '1', '添加商品: 40°芝华士12年苏格兰威士忌 700ml ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('97', '1395617729', '1', '添加商品: 40°轩尼诗VSOP干邑白兰地 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('98', '1395617780', '1', '编辑商品分类: 洋酒', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('99', '1395621905', '1', '添加广告: 首页商品分类内广告3', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('100', '1395622052', '1', '添加商品: 40°美国杰克丹尼 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('101', '1395622250', '1', '编辑广告: 首页商品分类内广告3', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('102', '1395622266', '1', '编辑广告: 首页商品分类内广告3', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('103', '1395622290', '1', '编辑广告: 首页商品分类内广告3', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('104', '1396390833', '1', '编辑商品: 40°美国杰克丹尼 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('105', '1396468815', '1', '添加积分可兑换的商品: 14', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('106', '1396486146', '1', '编辑商品: 40°轩尼诗VSOP干邑白兰地 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('107', '1396486654', '1', '编辑商品: 40°美国杰克丹尼 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('108', '1396487410', '1', '添加文章: 洛阳市分店地址', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('109', '1396487426', '1', '添加文章: 联盟商家', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('110', '1396487680', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('111', '1396488171', '1', '编辑商品: 40°美国杰克丹尼 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('112', '1396488187', '1', '编辑商品: 40°美国杰克丹尼 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('113', '1396488460', '1', '编辑商品: 40°美国杰克丹尼 700ml', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('114', '1396488819', '1', '安装配送方式: 市内快递', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('115', '1396488877', '1', '添加配送区域: 洛阳市区内', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('116', '1396488906', '1', '添加配送区域: 中国', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('117', '1396489090', '1', '编辑配送区域: 非洛阳市区', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('118', '1396489130', '1', '删除配送区域: 非洛阳市区', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('119', '1396489212', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('120', '1396916506', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('121', '1396916590', '1', '安装支付方式: 货到付款', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('122', '1396917038', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('123', '1396917132', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('124', '1396920362', '1', '编辑商店设置: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('125', '1397062919', '1', '编辑文章分类: 配送说明', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('126', '1397062950', '1', '添加文章分类: 常见问题', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('127', '1397063128', '1', '编辑文章分类: 物流配送', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('128', '1397063484', '1', '添加文章: 服务协议', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('129', '1397063632', '1', '添加文章: 积分制度', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('130', '1397063906', '1', '添加文章: 货到付款', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('131', '1397064081', '1', '添加文章: 在线支付', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('132', '1397064225', '1', '添加文章: 发票制度', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('133', '1397064443', '1', '添加文章: 一瓶起送,全场免运费', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('134', '1397064510', '1', '添加文章: 配送范围', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('135', '1397064583', '1', '添加文章: 慢就返', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('136', '1397064630', '1', '编辑文章: 一瓶起送,免运费', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('137', '1397064708', '1', '编辑文章: 一瓶起送,全场免运费', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('138', '1397064717', '1', '编辑文章: 一瓶起送,免运费', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('139', '1397065056', '1', '添加文章: 配送费如何收取?', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('140', '1397065712', '1', '删除文章: 配送费如何收取?', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('141', '1397065717', '1', '删除商品分类: ', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('142', '1397065814', '1', '添加文章: 关于酒乐go', '127.0.0.1');
INSERT INTO `lego_admin_log` VALUES ('143', '1397065854', '1', '添加文章: 联系我们', '127.0.0.1');
-- ----------------------------
-- Table structure for `lego_admin_message`
-- ----------------------------
DROP TABLE IF EXISTS `lego_admin_message`;
CREATE TABLE `lego_admin_message` (
`message_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`sender_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`receiver_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`sent_time` int(11) unsigned NOT NULL DEFAULT '0',
`read_time` int(11) unsigned NOT NULL DEFAULT '0',
`readed` tinyint(1) unsigned NOT NULL DEFAULT '0',
`deleted` tinyint(1) unsigned NOT NULL DEFAULT '0',
`title` varchar(150) NOT NULL DEFAULT '',
`message` text NOT NULL,
PRIMARY KEY (`message_id`),
KEY `sender_id` (`sender_id`,`receiver_id`),
KEY `receiver_id` (`receiver_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_admin_message
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_admin_user`
-- ----------------------------
DROP TABLE IF EXISTS `lego_admin_user`;
CREATE TABLE `lego_admin_user` (
`user_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`user_name` varchar(60) NOT NULL DEFAULT '',
`email` varchar(60) NOT NULL DEFAULT '',
`password` varchar(32) NOT NULL DEFAULT '',
`ec_salt` varchar(10) DEFAULT NULL,
`add_time` int(11) NOT NULL DEFAULT '0',
`last_login` int(11) NOT NULL DEFAULT '0',
`last_ip` varchar(15) NOT NULL DEFAULT '',
`action_list` text NOT NULL,
`nav_list` text NOT NULL,
`lang_type` varchar(50) NOT NULL DEFAULT '',
`agency_id` smallint(5) unsigned NOT NULL,
`suppliers_id` smallint(5) unsigned DEFAULT '0',
`todolist` longtext,
`role_id` smallint(5) DEFAULT NULL,
PRIMARY KEY (`user_id`),
KEY `user_name` (`user_name`),
KEY `agency_id` (`agency_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_admin_user
-- ----------------------------
INSERT INTO `lego_admin_user` VALUES ('1', 'admin', '[email protected]', '304f1497ec2037a1c8955a95a0f58539', '39', '1358236387', '1397062821', '127.0.0.1', 'all', '商品列表|goods.php?act=list,订单列表|order.php?act=list,用户评论|comment_manage.php?act=list,会员列表|users.php?act=list,商店设置|shop_config.php?act=list_edit', '', '0', '0', null, null);
-- ----------------------------
-- Table structure for `lego_adsense`
-- ----------------------------
DROP TABLE IF EXISTS `lego_adsense`;
CREATE TABLE `lego_adsense` (
`from_ad` smallint(5) NOT NULL DEFAULT '0',
`referer` varchar(255) NOT NULL DEFAULT '',
`clicks` int(10) unsigned NOT NULL DEFAULT '0',
KEY `from_ad` (`from_ad`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_adsense
-- ----------------------------
INSERT INTO `lego_adsense` VALUES ('5', '本站', '1');
INSERT INTO `lego_adsense` VALUES ('3', '本站', '1');
INSERT INTO `lego_adsense` VALUES ('9', '本站', '1');
INSERT INTO `lego_adsense` VALUES ('10', '本站', '3');
-- ----------------------------
-- Table structure for `lego_ad_custom`
-- ----------------------------
DROP TABLE IF EXISTS `lego_ad_custom`;
CREATE TABLE `lego_ad_custom` (
`ad_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`ad_type` tinyint(1) unsigned NOT NULL DEFAULT '1',
`ad_name` varchar(60) DEFAULT NULL,
`add_time` int(10) unsigned NOT NULL DEFAULT '0',
`content` mediumtext,
`url` varchar(255) DEFAULT NULL,
`ad_status` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ad_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_ad_custom
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_ad_position`
-- ----------------------------
DROP TABLE IF EXISTS `lego_ad_position`;
CREATE TABLE `lego_ad_position` (
`position_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`position_name` varchar(60) NOT NULL DEFAULT '',
`ad_width` smallint(5) unsigned NOT NULL DEFAULT '0',
`ad_height` smallint(5) unsigned NOT NULL DEFAULT '0',
`position_desc` varchar(255) NOT NULL DEFAULT '',
`position_style` text NOT NULL,
PRIMARY KEY (`position_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_ad_position
-- ----------------------------
INSERT INTO `lego_ad_position` VALUES ('1', '首页左侧公告下方', '208', '208', '', '<div style=\"padding: 5px 0;\">\r\n<table cellpadding=\"0\" cellspacing=\"0\">\r\n{foreach from=$ads item=ad}\r\n<tr><td>{$ad}</td></tr>\r\n{/foreach}\r\n</table>\r\n</div>');
INSERT INTO `lego_ad_position` VALUES ('2', '首页品牌馆广告位', '220', '110', '', '{foreach from=$ads item=ad}\r\n<dl>\r\n <dt>\r\n {$ad}\r\n </dt>\r\n</dl>\r\n{/foreach}\r\n\r\n\r\n');
INSERT INTO `lego_ad_position` VALUES ('3', '首页全宽行广告位', '1200', '100', '', '{foreach from=$ads item=ad}\r\n<div class=\"wrap cl\">\r\n <div class=\"sitewith\">\r\n {$ad}\r\n </div>\r\n</div>\r\n{/foreach}');
INSERT INTO `lego_ad_position` VALUES ('4', '首页商品分类内广告位', '220', '287', '', '{foreach from=$ads item=ad}\r\n<div class=\"JQ_cat_ad_data\">{$ad}</div>\r\n{/foreach}');
-- ----------------------------
-- Table structure for `lego_affiliate_log`
-- ----------------------------
DROP TABLE IF EXISTS `lego_affiliate_log`;
CREATE TABLE `lego_affiliate_log` (
`log_id` mediumint(8) NOT NULL AUTO_INCREMENT,
`order_id` mediumint(8) NOT NULL,
`time` int(10) NOT NULL,
`user_id` mediumint(8) NOT NULL,
`user_name` varchar(60) DEFAULT NULL,
`money` decimal(10,2) NOT NULL DEFAULT '0.00',
`point` int(10) NOT NULL DEFAULT '0',
`separate_type` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_affiliate_log
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_agency`
-- ----------------------------
DROP TABLE IF EXISTS `lego_agency`;
CREATE TABLE `lego_agency` (
`agency_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`agency_name` varchar(255) NOT NULL,
`agency_desc` text NOT NULL,
PRIMARY KEY (`agency_id`),
KEY `agency_name` (`agency_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_agency
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_area_region`
-- ----------------------------
DROP TABLE IF EXISTS `lego_area_region`;
CREATE TABLE `lego_area_region` (
`shipping_area_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`region_id` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`shipping_area_id`,`region_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_area_region
-- ----------------------------
INSERT INTO `lego_area_region` VALUES ('1', '1');
INSERT INTO `lego_area_region` VALUES ('1', '150');
INSERT INTO `lego_area_region` VALUES ('1', '1268');
INSERT INTO `lego_area_region` VALUES ('1', '1269');
INSERT INTO `lego_area_region` VALUES ('1', '1270');
INSERT INTO `lego_area_region` VALUES ('1', '1271');
INSERT INTO `lego_area_region` VALUES ('1', '1272');
INSERT INTO `lego_area_region` VALUES ('1', '1273');
-- ----------------------------
-- Table structure for `lego_article`
-- ----------------------------
DROP TABLE IF EXISTS `lego_article`;
CREATE TABLE `lego_article` (
`article_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`cat_id` smallint(5) NOT NULL DEFAULT '0',
`title` varchar(150) NOT NULL DEFAULT '',
`content` longtext NOT NULL,
`author` varchar(30) NOT NULL DEFAULT '',
`author_email` varchar(60) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`article_type` tinyint(1) unsigned NOT NULL DEFAULT '2',
`is_open` tinyint(1) unsigned NOT NULL DEFAULT '1',
`add_time` int(10) unsigned NOT NULL DEFAULT '0',
`file_url` varchar(255) NOT NULL DEFAULT '',
`open_type` tinyint(1) unsigned NOT NULL DEFAULT '0',
`link` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`article_id`),
KEY `cat_id` (`cat_id`)
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_article
-- ----------------------------
INSERT INTO `lego_article` VALUES ('1', '2', '免责条款', '', '', '', '', '0', '1', '1395034868', '', '0', '', null);
INSERT INTO `lego_article` VALUES ('2', '2', '隐私保护', '', '', '', '', '0', '1', '1395034868', '', '0', '', null);
INSERT INTO `lego_article` VALUES ('3', '2', '咨询热点', '', '', '', '', '0', '1', '1395034868', '', '0', '', null);
INSERT INTO `lego_article` VALUES ('4', '2', '联系我们', '', '', '', '', '0', '1', '1395034868', '', '0', '', null);
INSERT INTO `lego_article` VALUES ('5', '2', '公司简介', '', '', '', '', '0', '1', '1395034868', '', '0', '', null);
INSERT INTO `lego_article` VALUES ('6', '-1', '用户协议', '', '', '', '', '0', '1', '1395034868', '', '0', '', null);
INSERT INTO `lego_article` VALUES ('7', '4', '酒乐go—茅台,五粮液,剑南春,全月有促销啦!', '', '', '', '', '0', '1', '1395098973', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('8', '4', '酒乐go—9月新活动,全面出炉,详询6677-7766', '', '', '', '', '0', '1', '1395098985', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('9', '4', '酒乐go—双沟大曲(八)买一送一双沟大曲(三)', '', '', '', '', '0', '1', '1395098994', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('10', '4', '酒乐go——8月会员日活动', '', '', '', '', '0', '1', '1395099001', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('11', '4', '酒乐go——8月追加活动听嘉士伯冰纯330ml加9元赠精制口子窖', '', '', '', '', '0', '1', '1395099008', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('12', '4', '酒乐go——8月追加活动听装百威啤酒330ml加9元赠精制口子窖', '', '', '', '', '0', '1', '1395099015', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('13', '4', '酒乐go——8月追加活动听乐堡啤酒500ml第2箱半价加9元送杜康K3品鉴酒', '', '', '', '', '0', '1', '1395099022', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('14', '5', '账户注册', '', '', '', '', '0', '1', '1395186363', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('15', '8', '洛阳市分店地址', '<p> 洛阳市分店地址</p>\r\n<p>洛阳市分店地址</p>\r\n<p>洛阳市分店地址</p>\r\n<p>洛阳市分店地址</p>', '', '', '', '0', '1', '1396487410', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('16', '9', '联盟商家', '<p> 联盟商家</p>\r\n<p>联盟商家</p>\r\n<p>联盟商家</p>\r\n<p>联盟商家</p>', '', '', '', '0', '1', '1396487426', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('17', '5', '服务协议', '<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial; background-position: initial initial; background-repeat: initial initial;\"> </span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;mso-bidi-font-family:宋体;\r\nmso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">一、</span></b><b><span style=\"font-size: 5.5pt; font-family: Arial;\"> </span></b><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">协议内容及签署</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">本协议内容包括协议正文及所有酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网已经发布的或将来可能发布的各类规则。所有规则为本协议不可分割的组成部分,与协议正文具有同等法律效力。除另行明确声明外,任何酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网提供的服务(以下称为网店平台)均受本协议约束。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您应当在使用网店平台之前认真阅读全部协议内容,对于协议中以加粗字体显示的内容,您应重点阅读。如您对协议有任何疑问的,应向酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网咨询。但无论您事实上是否在使用网店平台之前认真阅读了本协议内容,只要您使用网店平台,则本协议即对您产生约束,届时您不应以未阅读本协议的内容或者未获得酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网对您问询的解答等理由,主张本协议无效,或要求撤销本协议。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">3.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您承诺接受并遵守本协议的约定。如果您不同意本协议的约定,您应立即停止注册程序或停止使用网店平台。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">4.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权根据需要不时地制订、修改本协议及</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">/</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">或各类规则,并以网站公示的方式进行公告,不再单独通知您。变更后的协议和规则一经在网站公布后,立即自动生效。如您不同意相关变更,应当立即停止使用网店平台。您继续使用网店平台的,即表示您接受经修订的协议和规。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">二、</span></b><b><span style=\"font-size: 5.5pt; font-family: Arial;\"> </span></b><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">注册</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">注册者资格</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您确认,在您完成注册程序或以其他酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网允许的方式实际使用网店服务时,</span><b><span style=\"font-size:5.5pt;\r\nmso-bidi-font-size:12.0pt;font-family:宋体;mso-ascii-font-family:Arial;\r\nmso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#CF010E;\r\nmso-font-kerning:0pt\">您应当是具备完全民事权利能力和完全民事行为能力的自然人、法人或其他组织。</span></b><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">若您不具备前述主体资格,则您及您的监护人应承担因此而导致的一切后果,且酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权注销(永久冻结)您的账户,并向您及您的监护人索偿。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">账户</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">在您签署本协议,完成会员注册程序或以其他酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网允许的方式实际使用网店服务时,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网会向您提供唯一编号的账户。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><br />\r\n</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;\r\nmso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您可以对账户设置会员名和密码,通过该会员名密码或与该会员名密码关联的其它用户名密码登陆网店平台。您设置的会员名不得侵犯或涉嫌侵犯他人合法权益。如您连续一年未使用您的会员名和密码登录网店,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权终止向您提供网店服务,注销您的账户。账户注销后,相应的会员名将开放给任意用户注册登记使用。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您应对您的账户(会员名)和密码的安全,以及对通过您的账户(会员名)和密码实施的行为负责。除非有法律规定或司法裁定,且征得酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网的同意,否则,账户(会员名)和密码不得以任何方式转让、赠与或继承(与账户相关的财产权益除外)。如果发现任何人不当使用您的账户或有任何其他可能危及您的账户安全的情形时,您应当立即以有效方式通知酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网,要求酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网暂停相关服务。您理解酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网对您的请求采取行动需要合理时间,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网对在采取行动前已经产生的后果(包括但不限于您的任何损失)不承担任何责任。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">为方便您使用网店服务,您同意并授权酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网将您在注册、使用网店平台过程中提供、形成的信息传递给向您提供其他服务的网店提供平台或其他组织,或从提供其他服务的网店服务平台或其他组织获取您在注册、使用其他服务期间提供、形成的信息。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">3.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">会员</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">在您按照注册页面提示填写信息、阅读并同意本协议并完成全部注册程序后或以其他酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网允许的方式实际使用网店平台时,您即成为酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网会员(亦称会员)。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">在注册时,您应当按照法律法规要求,或注册页面的提示准确提供,并及时更新您的资料,以使之真实、及时,完整和准确。如有合理理由怀疑您提供的资料错误、不实、过时或不完整的,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权向您发出询问及</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">/</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">或要求改正的通知,并有权直接做出删除相应资料的处理,直至中止、终止对您提供部分或全部网店平台。酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网对此不承担任何责任。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您应当准确填写并及时更新您提供的电子邮件地址、联系电话、联系地址、邮政编码等联系方式,以便酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网或其他会员与您进行有效联系,因通过这些联系方式无法与您取得联系,导致您在使用网店平台过程中产生任何损失或增加费用的,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网不承担任何责任。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\"><br />\r\n</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;\r\nmso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您在使用网店平台过程中,所产生的应纳税赋,以及一切硬件、软件、服务及其它方面的费用,均由您独自承担。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">三、</span></b><b><span style=\"font-size: 5.5pt; font-family: Arial;\"> </span></b><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">网店平台</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">通过酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网提供的网店服务和其它服务,会员可在酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网平台上发布交易信息、查询商品和服务信息、达成交易意向并进行交易、对其他会员进行评价、参加酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网组织的活动以及使用其它信息服务及技术服务。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您了解并同意,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权应政府部门(包括司法及行政部门)的要求,向其提供您在网店平台填写的注册信息和交易记录等必要信息。如您涉嫌侵犯他人隐私,则酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网亦有权在初步判断涉嫌侵权行为存在的情况下,向权利人提供您必要的身份信息。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">四、</span></b><b><span style=\"font-size: 5.5pt; font-family: Arial;\"> </span></b><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">网店平台服务使用规范</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">在网店平台上使用服务过程中,您承诺遵守以下约定:</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">在使用网店平台服务及其他相关服务过程中实施的所有行为均遵守国家法律、法规等规范性文件及网店平台各项规则的规定和要求,不违背社会公共利益或公共道德,不损害他人的合法权益,不违反本协议及相关规则。您如果违反前述承诺,产生任何法律后果的,您应以自己的名义独立承担所有的法律责任,并确保酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网免于因此产生任何损失。</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">不对网店平台上的任何数据作商业性利用,包括但不限于在未经酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网事先书面同意的情况下,以复制、传播等任何方式使用网店平台上展示的资料。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">3)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">不使用任何装置、软件或例行程序干预或试图干预网店平台的正常运作或正在网店平台上进行的任何交易、活动。您不得采取任何将导致不合理的庞大数据负载加诸网店平台网络设备的行动。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您了解并同意:</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网有权对您是否违反上述承诺做出单方认定,并根据单方认定结果适用规则予以处理或终止向您提供服务,且无须征得您的同意或提前通知予您。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">经国家行政或司法机关的生效法律文书确认您存在违法或侵权行为,或者酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网根据自身的判断,认为您的行为涉嫌违反本协议和</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">/</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">或规则的条款或涉嫌违反法律法规的规定的,则酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权在网店平台上公示您的该等涉嫌违法或违约行为及酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网已对您采取的措施。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">3)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">对于您在网店平台上实施的行为,包括您未在网店平台上实施但已经对网店平台及其用户产生影响的行为,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权单方认定您行为的性质及是否构成对本协议和</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">/</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">或规则的违反,并据此作出相应处罚。您应自行保存与您行为有关的全部证据,并应对无法提供充要证据而承担的不利后果。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">4)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">对于您涉嫌违反承诺的行为对任意第三方造成损害的,您均应当以自己的名义独立承担所有的法律责任,并应确保酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网免于因此产生损失或增加费用。</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">5) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">如您涉嫌违反有关法律或者本协议之规定,使酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网遭受任何损失,或受到任何第三方的索赔,</span><span style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"> </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">或受到任何行政管理部门的处罚,您应当赔偿酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网因此造成的损失及(或)发生的费用,包括合理的律师费用。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">五、</span></b><b><span style=\"font-size: 5.5pt; font-family: Arial;\"> </span></b><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">特别授权</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您完全理解并不可撤销地授予酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网及其关联公司下列权利:</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">对于您提供的资料及数据信息,您授予酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网及其关联公司全球通用的、永久的、免费的许可使用权利</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"> (</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">并有权在多个层面对该权利进行再授权</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">。此外,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网及其关联公司有权</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">(</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">全部或部份地</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">使用、复制、修订、改写、发布、翻译、分发、执行和展示您的全部资料数据(包括</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">但不限于注册资料、交易行为数据及全部展示于网店平台的各类信息)或制作其派生作品,并以现在已知或日后开发的任何形式、媒体或技术,将上述信息纳入其它作品内。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">六、责任范围和责任限制</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网负责按</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">"</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">现状</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">"</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">和</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">"</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">可得到</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">"</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">的状态向您提供网店平台服务。但酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网对网店平台服务不作任何明示或暗示的保证,包括但不限于网店平台服务的适用性、没有错误或疏漏、持续性、准确性、可靠性、适用于某一特定用途。同时,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网也不对网店平台服务所涉及的技术及信息的有效性、准确性、正确性、可靠性、质量、稳定、完整和及时性作出任何承诺和保证。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">除非法律法规明确要求,或出现以下情况,否则,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网没有义务对所有用户的注册数据及有关的其它事项进行事先审查:</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网有合理的理由认为特定会员及具体交易事项可能存在重大违法或违约情形。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网有合理的理由认为用户在网店平台的行为涉嫌违法或不当。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">3.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您了解并同意,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网不对因下述任一情况而导致您的任何损害赔偿承担责任,包括但不限于利润、商誉、使用、数据等方面的损失或其它无形损失的损害赔偿</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> (</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">无论酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网是否已被告知该等损害赔偿的可能性</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">:</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">使用或未能使用网店平台服务。</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">第三方未经批准的使用您的账户或更改您的数据。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">3) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">通过网店平台服务购买或获取任何商品、样品、数据、信息或进行交易等行为或替代行为产生的费用及损失。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">4) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您对网店平台服务的误解。</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">5) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">任何非因酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网的原因而引起的与网店平台服务有关的其它损失。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">4.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权对商品价格进行随时调整时。因价格调整导致您的订单价格与调整之后的价格不符的,按如下情况处理:</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">)库房已发货,则按调整之前的的价格收取商品费用</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">)库房未发货,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网会通知您此订单失效,需要重新按照新的价格下单。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">5.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">不论在何种情况下,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网均不对由于信息网络正常的设备维护,信息网络连接故障,电脑、通讯或其他系统的故障,电力故障,罢工,劳动争议,暴乱,起义,骚乱,生产力或生产资料不足,火灾,洪水,风暴,爆炸,战争,政府行为,司法行政机关的命令或第三方的不作为而造成的不能服务或延迟服务承担责任。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">七、</span></b><b><span style=\"font-size: 5.5pt; font-family: Arial;\"> </span></b><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">协议终止</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您同意,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权自行全权决定以任何理由不经事先通知的中止、终止向您提供部分或全部网店平台服务,暂时冻结或永久冻结(注销)您的账户,且无须为此向您或任何第三方承担任何责任。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">出现以下情况时,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权直接以注销账户的方式终止本协议</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">:<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网终止向您提供服务后,您涉嫌再一次直接或间接或以他人名义注册为酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网用户的;</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2)</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您提供的电子邮箱不存在或无法接收电子邮件,且没有其他方式可以与您进行联系,或酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网以其它联系方式通知您更改电子邮件信息,而您在酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网通知后三个工作日内仍未更改为有效的电子邮箱的。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">3) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您注册信息中的主要内容不真实或不准确或不及时或不完整。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">4</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">)本协议(含规则)变更时,您明示并通知酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网不愿接受新的服务协议的;</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">5) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">其它酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;\r\nfont-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网认为应当终止服务的情况。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">3.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您有权向酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网要求注销您的账户,经酒乐</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网审核同意的,将注销(永久冻结)您的账户,届时,您与酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网基于本协议的合同关系即终止。您的账户被注销(永久冻结)后,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网没有义务为您保留或向您披露您账户中的任何信息,也没有义务向您或第三方转发任何您未曾阅读或发送过的信息。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">4.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">您同意,您与酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网的合同关系终止后,酒乐</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网仍享有下列权利</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">继续保存您的注册信息及您使用网店平台服务期间的所有交易信息。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您在使用网店平台服务期间存在违法行为或违反本协议和</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">/</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">或规则的行为的,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网仍可依据本协议向您主张权利。</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">5.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网中止或终止向您提供网店平台服务后,对于您在服务中止或终止之前的交易行为依下列原则处理,您应独力处理并完全承担进行以下处理所产生的任何争议、损失或增加的任何费用,并应确保酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网免于因此产生任何损失或承担任何费用:</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">1) </span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">您在服务中止或终止之前已经与酒乐</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网达成买卖合同,但合同尚未实际履行的,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网有权删除该买卖合同及其交易的相关信息;</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">(</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">2</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">)您在服务中止或终止之前已经与酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网达成买卖合同且已履行的,酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网可以不删除该项交易,但酒乐</span><span lang=\"EN-US\" style=\"font-size:\r\n5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">网有权在中止或终止服务的同时将相关情形通知您。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">八、隐私权政策</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span style=\"font-size:5.5pt;\r\nfont-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;\r\nmso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">酒乐</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\">go</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:\r\nArial;mso-hansi-font-family:Arial;mso-bidi-font-family:Arial;color:#666666;\r\nmso-font-kerning:0pt\">网将在网店平台公布并不时修订隐私权政策,隐私权政策构成本协议的有效组成部分。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"> </span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:宋体;\r\nmso-bidi-font-family:宋体;mso-font-kerning:0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><b><span style=\"font-size: 5.5pt; font-family: 宋体;\">九、法律适用、管辖与其它</span></b><b><span lang=\"EN-US\" style=\"font-size: 5.5pt; font-family: Arial;\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">1.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">本协议之效力、解释、变更、执行与争议解决均适用中华人民共和国法律,如无相关法律规定的,则应参照通用商业惯例和行业惯例。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"left\" style=\"text-indent: 24pt; line-height: 10.6pt;\"><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:0pt\">2.</span><span style=\"font-size:5.5pt;font-family:宋体;mso-ascii-font-family:Arial;mso-hansi-font-family:\r\nArial;mso-bidi-font-family:Arial;color:#666666;mso-font-kerning:0pt\">因本协议产生之争议,应依照中华人民共和国法律予以处理。</span><span lang=\"EN-US\" style=\"font-size:5.5pt;font-family:Arial;color:#666666;mso-font-kerning:\r\n0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"> </span></p>', '', '', '', '0', '1', '1397063484', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('18', '5', '积分制度', '<p> <span style=\"color: rgb(102, 102, 102); font-family: Tahoma, simsun; font-size: 14px; line-height: 30px;\">您在也酒乐go购物消费,或参加活动等,即可获得积分。积分可以在酒乐go网站购物消费、兑换积分商城礼品或在购买商品的时候抵扣部分金额。</span></p>\r\n<p> </p>', '', '', '', '0', '1', '1397063632', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('19', '6', '货到付款', '<p><span style=\"color: rgb(102, 102, 102); font-family: Tahoma, simsun; font-size: 14px; line-height: 30px;\">配送员送货上门,客户收单验货后,直接将货款交给配送员的一种结算方式。</span></p>\r\n<p><span style=\"color: rgb(102, 102, 102); font-family: Tahoma, simsun; font-size: 14px; line-height: 30px;\">酒乐go货到付款支持地区: </span><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: Tahoma, simsun; font-size: 14px; line-height: 30px;\">洛阳市区内</span></span></strong></p>\r\n<p> </p>\r\n<p> </p>', '', '', '', '0', '1', '1397063906', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('20', '6', '在线支付', '<p> <span style=\"color: rgb(102, 102, 102); font-family: Tahoma, simsun; font-size: 14px; line-height: 30px;\">酒乐go使用支付宝平台在线支付, 为您的购物提供安全保障</span></p>', '', '', '', '0', '1', '1397064081', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('21', '6', '发票制度', '<p><span style=\"color: rgb(102, 102, 102); font-family: Tahoma, simsun; font-size: 14px; line-height: 30px;\">尊敬的会员,您在酒乐go购物后, 我们可以为您开具的正规发票,请您在下单过程中填写开具发票的内容.</span></p>', '', '', '', '0', '1', '1397064225', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('22', '7', '一瓶起送,免运费', '<p><font color=\"#666666\" face=\"Tahoma, simsun\"><span style=\"font-size: 14px; line-height: 30px;\">酒乐go想您承诺, 洛阳市区内, 1瓶起送, 全场商品全部免运费</span></font></p>', '', '', '', '0', '1', '1397064443', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('23', '7', '配送范围', '<p><font color=\"#666666\" face=\"Tahoma, simsun\"><span style=\"font-size: 14px; line-height: 30px;\">酒乐go目前仅向洛阳市区范围内进行配送, 其他地区暂不受理, 请见谅</span></font></p>', '', '', '', '0', '1', '1397064510', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('24', '7', '慢就返', '<p> <font color=\"#666666\" face=\"Tahoma, simsun\"><span style=\"font-size: 14px; line-height: 30px;\">酒乐go向您承诺, 洛阳市区内, 20分钟到货, 超市返现</span></font></p>', '', '', '', '0', '1', '1397064583', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('26', '8', '关于酒乐go', '<p> 编辑人员正在努力编辑中........(酒乐go介绍)</p>', '', '', '', '0', '1', '1397065814', '', '0', 'http://', '');
INSERT INTO `lego_article` VALUES ('27', '8', '联系我们', '<p> 编辑人员正在努力编辑中........(公司的各种联系方式)</p>', '', '', '', '0', '1', '1397065854', '', '0', 'http://', '');
-- ----------------------------
-- Table structure for `lego_article_cat`
-- ----------------------------
DROP TABLE IF EXISTS `lego_article_cat`;
CREATE TABLE `lego_article_cat` (
`cat_id` smallint(5) NOT NULL AUTO_INCREMENT,
`cat_name` varchar(255) NOT NULL DEFAULT '',
`cat_type` tinyint(1) unsigned NOT NULL DEFAULT '1',
`keywords` varchar(255) NOT NULL DEFAULT '',
`cat_desc` varchar(255) NOT NULL DEFAULT '',
`sort_order` tinyint(3) unsigned NOT NULL DEFAULT '50',
`show_in_nav` tinyint(1) unsigned NOT NULL DEFAULT '0',
`parent_id` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`cat_id`),
KEY `cat_type` (`cat_type`),
KEY `sort_order` (`sort_order`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_article_cat
-- ----------------------------
INSERT INTO `lego_article_cat` VALUES ('1', '系统分类', '2', '', '系统保留分类', '50', '0', '0');
INSERT INTO `lego_article_cat` VALUES ('2', '网店信息', '3', '', '网店信息分类', '50', '0', '1');
INSERT INTO `lego_article_cat` VALUES ('3', '网店帮助分类', '4', '', '网店帮助分类', '50', '0', '1');
INSERT INTO `lego_article_cat` VALUES ('4', '酒乐go资讯', '1', '', '', '50', '0', '0');
INSERT INTO `lego_article_cat` VALUES ('5', '购物指南', '5', '', '', '1', '0', '3');
INSERT INTO `lego_article_cat` VALUES ('6', '支付帮助', '5', '', '', '2', '0', '3');
INSERT INTO `lego_article_cat` VALUES ('7', '物流配送', '5', '', '', '3', '0', '3');
INSERT INTO `lego_article_cat` VALUES ('8', '关于我们', '5', '', '', '5', '0', '3');
INSERT INTO `lego_article_cat` VALUES ('9', '招商合作', '5', '', '', '6', '0', '3');
-- ----------------------------
-- Table structure for `lego_attribute`
-- ----------------------------
DROP TABLE IF EXISTS `lego_attribute`;
CREATE TABLE `lego_attribute` (
`attr_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`cat_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`attr_name` varchar(60) NOT NULL DEFAULT '',
`attr_input_type` tinyint(1) unsigned NOT NULL DEFAULT '1',
`attr_type` tinyint(1) unsigned NOT NULL DEFAULT '1',
`attr_values` text NOT NULL,
`attr_index` tinyint(1) unsigned NOT NULL DEFAULT '0',
`sort_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
`is_linked` tinyint(1) unsigned NOT NULL DEFAULT '0',
`attr_group` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`attr_id`),
KEY `cat_id` (`cat_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_attribute
-- ----------------------------
INSERT INTO `lego_attribute` VALUES ('1', '1', '产地', '0', '0', '', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('2', '1', '香型', '1', '0', '浓香型\r\n酱香型\r\n清香型\r\n其他', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('3', '2', '产地', '0', '0', '', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('4', '2', '颜色', '0', '0', '', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('5', '2', '干型', '0', '0', '', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('6', '3', '产地', '0', '0', '', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('7', '3', '种类', '0', '0', '', '1', '0', '1', '0');
INSERT INTO `lego_attribute` VALUES ('8', '1', '度数', '0', '0', '', '0', '0', '1', '0');
-- ----------------------------
-- Table structure for `lego_auction_log`
-- ----------------------------
DROP TABLE IF EXISTS `lego_auction_log`;
CREATE TABLE `lego_auction_log` (
`log_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`act_id` mediumint(8) unsigned NOT NULL,
`bid_user` mediumint(8) unsigned NOT NULL,
`bid_price` decimal(10,2) unsigned NOT NULL,
`bid_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`log_id`),
KEY `act_id` (`act_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_auction_log
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_auto_manage`
-- ----------------------------
DROP TABLE IF EXISTS `lego_auto_manage`;
CREATE TABLE `lego_auto_manage` (
`item_id` mediumint(8) NOT NULL,
`type` varchar(10) NOT NULL,
`starttime` int(10) NOT NULL,
`endtime` int(10) NOT NULL,
PRIMARY KEY (`item_id`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_auto_manage
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_back_goods`
-- ----------------------------
DROP TABLE IF EXISTS `lego_back_goods`;
CREATE TABLE `lego_back_goods` (
`rec_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`back_id` mediumint(8) unsigned DEFAULT '0',
`goods_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`product_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`product_sn` varchar(60) DEFAULT NULL,
`goods_name` varchar(120) DEFAULT NULL,
`brand_name` varchar(60) DEFAULT NULL,
`goods_sn` varchar(60) DEFAULT NULL,
`is_real` tinyint(1) unsigned DEFAULT '0',
`send_number` smallint(5) unsigned DEFAULT '0',
`goods_attr` text,
PRIMARY KEY (`rec_id`),
KEY `back_id` (`back_id`),
KEY `goods_id` (`goods_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_back_goods
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_back_order`
-- ----------------------------
DROP TABLE IF EXISTS `lego_back_order`;
CREATE TABLE `lego_back_order` (
`back_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`delivery_sn` varchar(20) NOT NULL,
`order_sn` varchar(20) NOT NULL,
`order_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`invoice_no` varchar(50) DEFAULT NULL,
`add_time` int(10) unsigned DEFAULT '0',
`shipping_id` tinyint(3) unsigned DEFAULT '0',
`shipping_name` varchar(120) DEFAULT NULL,
`user_id` mediumint(8) unsigned DEFAULT '0',
`action_user` varchar(30) DEFAULT NULL,
`consignee` varchar(60) DEFAULT NULL,
`address` varchar(250) DEFAULT NULL,
`country` smallint(5) unsigned DEFAULT '0',
`province` smallint(5) unsigned DEFAULT '0',
`city` smallint(5) unsigned DEFAULT '0',
`district` smallint(5) unsigned DEFAULT '0',
`sign_building` varchar(120) DEFAULT NULL,
`email` varchar(60) DEFAULT NULL,
`zipcode` varchar(60) DEFAULT NULL,
`tel` varchar(60) DEFAULT NULL,
`mobile` varchar(60) DEFAULT NULL,
`best_time` varchar(120) DEFAULT NULL,
`postscript` varchar(255) DEFAULT NULL,
`how_oos` varchar(120) DEFAULT NULL,
`insure_fee` decimal(10,2) unsigned DEFAULT '0.00',
`shipping_fee` decimal(10,2) unsigned DEFAULT '0.00',
`update_time` int(10) unsigned DEFAULT '0',
`suppliers_id` smallint(5) DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`return_time` int(10) unsigned DEFAULT '0',
`agency_id` smallint(5) unsigned DEFAULT '0',
PRIMARY KEY (`back_id`),
KEY `user_id` (`user_id`),
KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_back_order
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_bonus_type`
-- ----------------------------
DROP TABLE IF EXISTS `lego_bonus_type`;
CREATE TABLE `lego_bonus_type` (
`type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`type_name` varchar(60) NOT NULL DEFAULT '',
`type_money` decimal(10,2) NOT NULL DEFAULT '0.00',
`send_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`min_amount` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
`max_amount` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
`send_start_date` int(11) NOT NULL DEFAULT '0',
`send_end_date` int(11) NOT NULL DEFAULT '0',
`use_start_date` int(11) NOT NULL DEFAULT '0',
`use_end_date` int(11) NOT NULL DEFAULT '0',
`min_goods_amount` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
PRIMARY KEY (`type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_bonus_type
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_booking_goods`
-- ----------------------------
DROP TABLE IF EXISTS `lego_booking_goods`;
CREATE TABLE `lego_booking_goods` (
`rec_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`email` varchar(60) NOT NULL DEFAULT '',
`link_man` varchar(60) NOT NULL DEFAULT '',
`tel` varchar(60) NOT NULL DEFAULT '',
`goods_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`goods_desc` varchar(255) NOT NULL DEFAULT '',
`goods_number` smallint(5) unsigned NOT NULL DEFAULT '0',
`booking_time` int(10) unsigned NOT NULL DEFAULT '0',
`is_dispose` tinyint(1) unsigned NOT NULL DEFAULT '0',
`dispose_user` varchar(30) NOT NULL DEFAULT '',
`dispose_time` int(10) unsigned NOT NULL DEFAULT '0',
`dispose_note` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`rec_id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_booking_goods
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_brand`
-- ----------------------------
DROP TABLE IF EXISTS `lego_brand`;
CREATE TABLE `lego_brand` (
`brand_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`brand_name` varchar(60) NOT NULL DEFAULT '',
`brand_logo` varchar(80) NOT NULL DEFAULT '',
`brand_desc` text NOT NULL,
`site_url` varchar(255) NOT NULL DEFAULT '',
`sort_order` tinyint(3) unsigned NOT NULL DEFAULT '50',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`brand_id`),
KEY `is_show` (`is_show`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_brand
-- ----------------------------
INSERT INTO `lego_brand` VALUES ('1', '马蒂隆', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('2', '拉菲庄园', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('3', '张裕', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('4', '茅台', '1395448683403491061.jpg', '', 'http://', '50', '1');
INSERT INTO `lego_brand` VALUES ('5', '酱领', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('6', '杏花村', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('7', '泸州老窖', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('8', '白云边', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('9', '百加得', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('10', '深蓝', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('11', '芝华士', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('12', '轩尼诗', '', '', '', '50', '1');
INSERT INTO `lego_brand` VALUES ('13', '杰克丹尼', '', '', '', '50', '1');
-- ----------------------------
-- Table structure for `lego_card`
-- ----------------------------
DROP TABLE IF EXISTS `lego_card`;
CREATE TABLE `lego_card` (
`card_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`card_name` varchar(120) NOT NULL DEFAULT '',
`card_img` varchar(255) NOT NULL DEFAULT '',
`card_fee` decimal(6,2) unsigned NOT NULL DEFAULT '0.00',
`free_money` decimal(6,2) unsigned NOT NULL DEFAULT '0.00',
`card_desc` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`card_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_card
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_cart`
-- ----------------------------
DROP TABLE IF EXISTS `lego_cart`;
CREATE TABLE `lego_cart` (
`rec_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`session_id` char(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`goods_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`goods_sn` varchar(60) NOT NULL DEFAULT '',
`product_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`goods_name` varchar(120) NOT NULL DEFAULT '',
`market_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
`goods_price` decimal(10,2) NOT NULL DEFAULT '0.00',
`goods_number` smallint(5) unsigned NOT NULL DEFAULT '0',
`goods_attr` text NOT NULL,
`is_real` tinyint(1) unsigned NOT NULL DEFAULT '0',
`extension_code` varchar(30) NOT NULL DEFAULT '',
`parent_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`rec_type` tinyint(1) unsigned NOT NULL DEFAULT '0',
`is_gift` smallint(5) unsigned NOT NULL DEFAULT '0',
`is_shipping` tinyint(1) unsigned NOT NULL DEFAULT '0',
`can_handsel` tinyint(3) unsigned NOT NULL DEFAULT '0',
`goods_attr_id` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`rec_id`),
KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_cart
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_category`
-- ----------------------------
DROP TABLE IF EXISTS `lego_category`;
CREATE TABLE `lego_category` (
`cat_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`cat_name` varchar(90) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`cat_desc` varchar(255) NOT NULL DEFAULT '',
`parent_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`sort_order` tinyint(1) unsigned NOT NULL DEFAULT '50',
`template_file` varchar(50) NOT NULL DEFAULT '',
`measure_unit` varchar(15) NOT NULL DEFAULT '',
`show_in_nav` tinyint(1) NOT NULL DEFAULT '0',
`style` varchar(150) NOT NULL,
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1',
`grade` tinyint(4) NOT NULL DEFAULT '0',
`filter_attr` varchar(255) NOT NULL DEFAULT '0',
PRIMARY KEY (`cat_id`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_category
-- ----------------------------
INSERT INTO `lego_category` VALUES ('1', '白酒', '', '', '0', '50', '', '', '0', '', '1', '0', '2,1,8');
INSERT INTO `lego_category` VALUES ('2', '葡萄酒', '', '', '0', '50', '', '', '1', '', '1', '6', '5,4,3');
INSERT INTO `lego_category` VALUES ('3', '洋酒', '', '', '0', '50', '', '', '0', '', '1', '0', '6,7');
INSERT INTO `lego_category` VALUES ('4', '啤酒', '', '', '0', '50', '', '', '0', '', '1', '0', '');
INSERT INTO `lego_category` VALUES ('5', '酒具', '', '', '0', '50', '', '', '0', '', '1', '0', '');
-- ----------------------------
-- Table structure for `lego_cat_recommend`
-- ----------------------------
DROP TABLE IF EXISTS `lego_cat_recommend`;
CREATE TABLE `lego_cat_recommend` (
`cat_id` smallint(5) NOT NULL,
`recommend_type` tinyint(1) NOT NULL,
PRIMARY KEY (`cat_id`,`recommend_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_cat_recommend
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_collect_goods`
-- ----------------------------
DROP TABLE IF EXISTS `lego_collect_goods`;
CREATE TABLE `lego_collect_goods` (
`rec_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`goods_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
`is_attention` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`rec_id`),
KEY `user_id` (`user_id`),
KEY `goods_id` (`goods_id`),
KEY `is_attention` (`is_attention`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_collect_goods
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_comment`
-- ----------------------------
DROP TABLE IF EXISTS `lego_comment`;
CREATE TABLE `lego_comment` (
`comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`comment_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`id_value` mediumint(8) unsigned NOT NULL DEFAULT '0',
`email` varchar(60) NOT NULL DEFAULT '',
`user_name` varchar(60) NOT NULL DEFAULT '',
`content` text NOT NULL,
`comment_rank` tinyint(1) unsigned NOT NULL DEFAULT '0',
`add_time` int(10) unsigned NOT NULL DEFAULT '0',
`ip_address` varchar(15) NOT NULL DEFAULT '',
`status` tinyint(3) unsigned NOT NULL DEFAULT '0',
`parent_id` int(10) unsigned NOT NULL DEFAULT '0',
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_id`),
KEY `parent_id` (`parent_id`),
KEY `id_value` (`id_value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lego_comment
-- ----------------------------
-- ----------------------------
-- Table structure for `lego_crons`
-- ----------------------------
DROP TABLE IF EXISTS `lego_crons`;
CREATE TABLE `lego_crons` (
`cron_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`cron_code` varchar(20) NOT NULL,
`cron_name` varchar(120) NOT NULL,
`cron_desc` text,
`cron_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
`cron_config` text NOT NULL,
`thistime` int(10) NOT NULL DEFAULT '0',
`nextime` int(10) NOT NULL,
`day` tinyint(2) NOT NULL,
`week` varchar(1) NOT NULL,
`hour` varchar(2) NOT NULL,
`minute` varchar(255) NOT NULL,
`enable` tinyint(1) NOT NULL DEFAULT '1',
`run_once` tinyint(1) NOT NULL DEFAULT '0',
`allow_ip` varchar(100) NOT NULL DEFAULT '',
`alow_files` varchar(255) NOT NULL,
PRIMARY KEY (`cron_id`),