forked from ZhiqiKou/TravelWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTravelWebsite.sql
executable file
·5013 lines (4935 loc) · 487 KB
/
TravelWebsite.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 : ubantuDB
Source Server Version : 80013
Source Host : 192.168.0.175:3306
Source Database : TravelWebsite
Target Server Type : MYSQL
Target Server Version : 80013
File Encoding : 65001
Date: 2018-11-21 14:53:58
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for auth_group
-- ----------------------------
DROP TABLE IF EXISTS `auth_group`;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of auth_group
-- ----------------------------
-- ----------------------------
-- Table structure for auth_group_permissions
-- ----------------------------
DROP TABLE IF EXISTS `auth_group_permissions`;
CREATE TABLE `auth_group_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`),
KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of auth_group_permissions
-- ----------------------------
-- ----------------------------
-- Table structure for auth_permission
-- ----------------------------
DROP TABLE IF EXISTS `auth_permission`;
CREATE TABLE `auth_permission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`),
CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of auth_permission
-- ----------------------------
INSERT INTO `auth_permission` VALUES ('1', 'Can add log entry', '1', 'add_logentry');
INSERT INTO `auth_permission` VALUES ('2', 'Can change log entry', '1', 'change_logentry');
INSERT INTO `auth_permission` VALUES ('3', 'Can delete log entry', '1', 'delete_logentry');
INSERT INTO `auth_permission` VALUES ('4', 'Can view log entry', '1', 'view_logentry');
INSERT INTO `auth_permission` VALUES ('5', 'Can add permission', '2', 'add_permission');
INSERT INTO `auth_permission` VALUES ('6', 'Can change permission', '2', 'change_permission');
INSERT INTO `auth_permission` VALUES ('7', 'Can delete permission', '2', 'delete_permission');
INSERT INTO `auth_permission` VALUES ('8', 'Can view permission', '2', 'view_permission');
INSERT INTO `auth_permission` VALUES ('9', 'Can add group', '3', 'add_group');
INSERT INTO `auth_permission` VALUES ('10', 'Can change group', '3', 'change_group');
INSERT INTO `auth_permission` VALUES ('11', 'Can delete group', '3', 'delete_group');
INSERT INTO `auth_permission` VALUES ('12', 'Can view group', '3', 'view_group');
INSERT INTO `auth_permission` VALUES ('13', 'Can add content type', '4', 'add_contenttype');
INSERT INTO `auth_permission` VALUES ('14', 'Can change content type', '4', 'change_contenttype');
INSERT INTO `auth_permission` VALUES ('15', 'Can delete content type', '4', 'delete_contenttype');
INSERT INTO `auth_permission` VALUES ('16', 'Can view content type', '4', 'view_contenttype');
INSERT INTO `auth_permission` VALUES ('17', 'Can add session', '5', 'add_session');
INSERT INTO `auth_permission` VALUES ('18', 'Can change session', '5', 'change_session');
INSERT INTO `auth_permission` VALUES ('19', 'Can delete session', '5', 'delete_session');
INSERT INTO `auth_permission` VALUES ('20', 'Can view session', '5', 'view_session');
INSERT INTO `auth_permission` VALUES ('21', 'Can add 游记信息', '6', 'add_diary');
INSERT INTO `auth_permission` VALUES ('22', 'Can change 游记信息', '6', 'change_diary');
INSERT INTO `auth_permission` VALUES ('23', 'Can delete 游记信息', '6', 'delete_diary');
INSERT INTO `auth_permission` VALUES ('24', 'Can view 游记信息', '6', 'view_diary');
INSERT INTO `auth_permission` VALUES ('25', 'Can add news', '7', 'add_news');
INSERT INTO `auth_permission` VALUES ('26', 'Can change news', '7', 'change_news');
INSERT INTO `auth_permission` VALUES ('27', 'Can delete news', '7', 'delete_news');
INSERT INTO `auth_permission` VALUES ('28', 'Can view news', '7', 'view_news');
INSERT INTO `auth_permission` VALUES ('29', 'Can add 活动评论', '8', 'add_activecomments');
INSERT INTO `auth_permission` VALUES ('30', 'Can change 活动评论', '8', 'change_activecomments');
INSERT INTO `auth_permission` VALUES ('31', 'Can delete 活动评论', '8', 'delete_activecomments');
INSERT INTO `auth_permission` VALUES ('32', 'Can view 活动评论', '8', 'view_activecomments');
INSERT INTO `auth_permission` VALUES ('33', 'Can add 游记评论', '9', 'add_diarycomments');
INSERT INTO `auth_permission` VALUES ('34', 'Can change 游记评论', '9', 'change_diarycomments');
INSERT INTO `auth_permission` VALUES ('35', 'Can delete 游记评论', '9', 'delete_diarycomments');
INSERT INTO `auth_permission` VALUES ('36', 'Can view 游记评论', '9', 'view_diarycomments');
INSERT INTO `auth_permission` VALUES ('37', 'Can add 景区评论', '10', 'add_spotscomments');
INSERT INTO `auth_permission` VALUES ('38', 'Can change 景区评论', '10', 'change_spotscomments');
INSERT INTO `auth_permission` VALUES ('39', 'Can delete 景区评论', '10', 'delete_spotscomments');
INSERT INTO `auth_permission` VALUES ('40', 'Can view 景区评论', '10', 'view_spotscomments');
INSERT INTO `auth_permission` VALUES ('41', 'Can add 游记收藏', '11', 'add_usercollect');
INSERT INTO `auth_permission` VALUES ('42', 'Can change 游记收藏', '11', 'change_usercollect');
INSERT INTO `auth_permission` VALUES ('43', 'Can delete 游记收藏', '11', 'delete_usercollect');
INSERT INTO `auth_permission` VALUES ('44', 'Can view 游记收藏', '11', 'view_usercollect');
INSERT INTO `auth_permission` VALUES ('45', 'Can add 旅游活动', '12', 'add_active');
INSERT INTO `auth_permission` VALUES ('46', 'Can change 旅游活动', '12', 'change_active');
INSERT INTO `auth_permission` VALUES ('47', 'Can delete 旅游活动', '12', 'delete_active');
INSERT INTO `auth_permission` VALUES ('48', 'Can view 旅游活动', '12', 'view_active');
INSERT INTO `auth_permission` VALUES ('49', 'Can add 轮播图', '13', 'add_gallery');
INSERT INTO `auth_permission` VALUES ('50', 'Can change 轮播图', '13', 'change_gallery');
INSERT INTO `auth_permission` VALUES ('51', 'Can delete 轮播图', '13', 'delete_gallery');
INSERT INTO `auth_permission` VALUES ('52', 'Can view 轮播图', '13', 'view_gallery');
INSERT INTO `auth_permission` VALUES ('53', 'Can add 旅游景区', '14', 'add_spots');
INSERT INTO `auth_permission` VALUES ('54', 'Can change 旅游景区', '14', 'change_spots');
INSERT INTO `auth_permission` VALUES ('55', 'Can delete 旅游景区', '14', 'delete_spots');
INSERT INTO `auth_permission` VALUES ('56', 'Can view 旅游景区', '14', 'view_spots');
INSERT INTO `auth_permission` VALUES ('57', 'Can add 用户信息', '15', 'add_myuser');
INSERT INTO `auth_permission` VALUES ('58', 'Can change 用户信息', '15', 'change_myuser');
INSERT INTO `auth_permission` VALUES ('59', 'Can delete 用户信息', '15', 'delete_myuser');
INSERT INTO `auth_permission` VALUES ('60', 'Can view 用户信息', '15', 'view_myuser');
INSERT INTO `auth_permission` VALUES ('61', 'Can add 轮播图', '16', 'add_banner');
INSERT INTO `auth_permission` VALUES ('62', 'Can change 轮播图', '16', 'change_banner');
INSERT INTO `auth_permission` VALUES ('63', 'Can delete 轮播图', '16', 'delete_banner');
INSERT INTO `auth_permission` VALUES ('64', 'Can view 轮播图', '16', 'view_banner');
INSERT INTO `auth_permission` VALUES ('65', 'Can add 邮箱验证码信息', '17', 'add_emailverifyrecord');
INSERT INTO `auth_permission` VALUES ('66', 'Can change 邮箱验证码信息', '17', 'change_emailverifyrecord');
INSERT INTO `auth_permission` VALUES ('67', 'Can delete 邮箱验证码信息', '17', 'delete_emailverifyrecord');
INSERT INTO `auth_permission` VALUES ('68', 'Can view 邮箱验证码信息', '17', 'view_emailverifyrecord');
INSERT INTO `auth_permission` VALUES ('69', 'Can add 常用联系人信息', '18', 'add_thecontact');
INSERT INTO `auth_permission` VALUES ('70', 'Can change 常用联系人信息', '18', 'change_thecontact');
INSERT INTO `auth_permission` VALUES ('71', 'Can delete 常用联系人信息', '18', 'delete_thecontact');
INSERT INTO `auth_permission` VALUES ('72', 'Can view 常用联系人信息', '18', 'view_thecontact');
INSERT INTO `auth_permission` VALUES ('73', 'Can add Bookmark', '19', 'add_bookmark');
INSERT INTO `auth_permission` VALUES ('74', 'Can change Bookmark', '19', 'change_bookmark');
INSERT INTO `auth_permission` VALUES ('75', 'Can delete Bookmark', '19', 'delete_bookmark');
INSERT INTO `auth_permission` VALUES ('76', 'Can view Bookmark', '19', 'view_bookmark');
INSERT INTO `auth_permission` VALUES ('77', 'Can add User Setting', '20', 'add_usersettings');
INSERT INTO `auth_permission` VALUES ('78', 'Can change User Setting', '20', 'change_usersettings');
INSERT INTO `auth_permission` VALUES ('79', 'Can delete User Setting', '20', 'delete_usersettings');
INSERT INTO `auth_permission` VALUES ('80', 'Can view User Setting', '20', 'view_usersettings');
INSERT INTO `auth_permission` VALUES ('81', 'Can add User Widget', '21', 'add_userwidget');
INSERT INTO `auth_permission` VALUES ('82', 'Can change User Widget', '21', 'change_userwidget');
INSERT INTO `auth_permission` VALUES ('83', 'Can delete User Widget', '21', 'delete_userwidget');
INSERT INTO `auth_permission` VALUES ('84', 'Can view User Widget', '21', 'view_userwidget');
INSERT INTO `auth_permission` VALUES ('85', 'Can add log entry', '22', 'add_log');
INSERT INTO `auth_permission` VALUES ('86', 'Can change log entry', '22', 'change_log');
INSERT INTO `auth_permission` VALUES ('87', 'Can delete log entry', '22', 'delete_log');
INSERT INTO `auth_permission` VALUES ('88', 'Can view log entry', '22', 'view_log');
INSERT INTO `auth_permission` VALUES ('89', 'Can add 商品信息', '23', 'add_product');
INSERT INTO `auth_permission` VALUES ('90', 'Can change 商品信息', '23', 'change_product');
INSERT INTO `auth_permission` VALUES ('91', 'Can delete 商品信息', '23', 'delete_product');
INSERT INTO `auth_permission` VALUES ('92', 'Can view 商品信息', '23', 'view_product');
INSERT INTO `auth_permission` VALUES ('93', 'Can add 商品图片', '24', 'add_propic');
INSERT INTO `auth_permission` VALUES ('94', 'Can change 商品图片', '24', 'change_propic');
INSERT INTO `auth_permission` VALUES ('95', 'Can delete 商品图片', '24', 'delete_propic');
INSERT INTO `auth_permission` VALUES ('96', 'Can view 商品图片', '24', 'view_propic');
INSERT INTO `auth_permission` VALUES ('97', 'Can add captcha store', '25', 'add_captchastore');
INSERT INTO `auth_permission` VALUES ('98', 'Can change captcha store', '25', 'change_captchastore');
INSERT INTO `auth_permission` VALUES ('99', 'Can delete captcha store', '25', 'delete_captchastore');
INSERT INTO `auth_permission` VALUES ('100', 'Can view captcha store', '25', 'view_captchastore');
INSERT INTO `auth_permission` VALUES ('101', 'Can add area info', '26', 'add_areainfo');
INSERT INTO `auth_permission` VALUES ('102', 'Can change area info', '26', 'change_areainfo');
INSERT INTO `auth_permission` VALUES ('103', 'Can delete area info', '26', 'delete_areainfo');
INSERT INTO `auth_permission` VALUES ('104', 'Can view area info', '26', 'view_areainfo');
INSERT INTO `auth_permission` VALUES ('105', 'Can add 游记点赞', '27', 'add_userfav');
INSERT INTO `auth_permission` VALUES ('106', 'Can change 游记点赞', '27', 'change_userfav');
INSERT INTO `auth_permission` VALUES ('107', 'Can delete 游记点赞', '27', 'delete_userfav');
INSERT INTO `auth_permission` VALUES ('108', 'Can view 游记点赞', '27', 'view_userfav');
INSERT INTO `auth_permission` VALUES ('109', 'Can add shopping cart', '28', 'add_shoppingcart');
INSERT INTO `auth_permission` VALUES ('110', 'Can change shopping cart', '28', 'change_shoppingcart');
INSERT INTO `auth_permission` VALUES ('111', 'Can delete shopping cart', '28', 'delete_shoppingcart');
INSERT INTO `auth_permission` VALUES ('112', 'Can view shopping cart', '28', 'view_shoppingcart');
INSERT INTO `auth_permission` VALUES ('113', 'Can add 商品订单主表', '29', 'add_goodsordersmaintable');
INSERT INTO `auth_permission` VALUES ('114', 'Can change 商品订单主表', '29', 'change_goodsordersmaintable');
INSERT INTO `auth_permission` VALUES ('115', 'Can delete 商品订单主表', '29', 'delete_goodsordersmaintable');
INSERT INTO `auth_permission` VALUES ('116', 'Can view 商品订单主表', '29', 'view_goodsordersmaintable');
INSERT INTO `auth_permission` VALUES ('117', 'Can add 用户购买商品信息', '30', 'add_orderitems');
INSERT INTO `auth_permission` VALUES ('118', 'Can change 用户购买商品信息', '30', 'change_orderitems');
INSERT INTO `auth_permission` VALUES ('119', 'Can delete 用户购买商品信息', '30', 'delete_orderitems');
INSERT INTO `auth_permission` VALUES ('120', 'Can view 用户购买商品信息', '30', 'view_orderitems');
INSERT INTO `auth_permission` VALUES ('121', 'Can add 直接购买商品', '31', 'add_shopping');
INSERT INTO `auth_permission` VALUES ('122', 'Can change 直接购买商品', '31', 'change_shopping');
INSERT INTO `auth_permission` VALUES ('123', 'Can delete 直接购买商品', '31', 'delete_shopping');
INSERT INTO `auth_permission` VALUES ('124', 'Can view 直接购买商品', '31', 'view_shopping');
INSERT INTO `auth_permission` VALUES ('125', 'Can add 商品评论', '32', 'add_productcomments');
INSERT INTO `auth_permission` VALUES ('126', 'Can change 商品评论', '32', 'change_productcomments');
INSERT INTO `auth_permission` VALUES ('127', 'Can delete 商品评论', '32', 'delete_productcomments');
INSERT INTO `auth_permission` VALUES ('128', 'Can view 商品评论', '32', 'view_productcomments');
INSERT INTO `auth_permission` VALUES ('129', 'Can add 门票订单', '33', 'add_ticketsordersmaintable');
INSERT INTO `auth_permission` VALUES ('130', 'Can change 门票订单', '33', 'change_ticketsordersmaintable');
INSERT INTO `auth_permission` VALUES ('131', 'Can delete 门票订单', '33', 'delete_ticketsordersmaintable');
INSERT INTO `auth_permission` VALUES ('132', 'Can view 门票订单', '33', 'view_ticketsordersmaintable');
INSERT INTO `auth_permission` VALUES ('133', 'Can add 旅游订单', '34', 'add_scenicordersmaintable');
INSERT INTO `auth_permission` VALUES ('134', 'Can change 旅游订单', '34', 'change_scenicordersmaintable');
INSERT INTO `auth_permission` VALUES ('135', 'Can delete 旅游订单', '34', 'delete_scenicordersmaintable');
INSERT INTO `auth_permission` VALUES ('136', 'Can view 旅游订单', '34', 'view_scenicordersmaintable');
-- ----------------------------
-- Table structure for captcha_captchastore
-- ----------------------------
DROP TABLE IF EXISTS `captcha_captchastore`;
CREATE TABLE `captcha_captchastore` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`challenge` varchar(32) NOT NULL,
`response` varchar(32) NOT NULL,
`hashkey` varchar(40) NOT NULL,
`expiration` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hashkey` (`hashkey`)
) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of captcha_captchastore
-- ----------------------------
INSERT INTO `captcha_captchastore` VALUES ('157', '8*7=', '56', '1629cf1ecd71517e65d1f3d47ea05f5d6be2e538', '2018-10-18 16:33:59.104375');
-- ----------------------------
-- Table structure for diarys_diary
-- ----------------------------
DROP TABLE IF EXISTS `diarys_diary`;
CREATE TABLE `diarys_diary` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(20) NOT NULL,
`content` longtext NOT NULL,
`image` varchar(100) NOT NULL,
`checknum` int(11) NOT NULL,
`commentsnum` int(11) NOT NULL,
`is_published` tinyint(1) NOT NULL,
`add_times` datetime(6) NOT NULL,
`user_id` int(11) NOT NULL,
`praisenum` int(11) NOT NULL,
`collectnum` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `diarys_diary_user_id_6a600bd5_fk_users_myuser_id` (`user_id`),
CONSTRAINT `diarys_diary_user_id_6a600bd5_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of diarys_diary
-- ----------------------------
INSERT INTO `diarys_diary` VALUES ('3', '人间仙境白云山,最美人间十月天', '<p>对于热爱旅行的人来说,十月是个美好的季节,它可以金灿耀眼,可以绿意盎然,也可以白雪皑皑,它同时带来惊艳,让人念念不忘。</p><p><br/></p><p>对于还未上路的人来说,十一月是个特殊的季节,候鸟的邂逅、色彩的碰撞,还是古村的静候,都在这个时刻释放出无限光彩。</p><p><br/></p><p>网友经常问我:“你经常出去旅行,是因为爱好吗?”</p><p><br/></p><p>我说:“旅行不是爱好,而是生活”,不论是向左走,还是向右行,抑或是精心规划行程,又或者是说走就走,都是一种生活的态度。于是在这个收获的季节,我又出发了——人间仙境白云山。</p><p><br/></p><p> </p><p>洛阳白云山位于河南省洛阳市嵩县南部伏牛山腹地原始林区,总面积168平方公里,动物204种,植物1991种,森林覆盖率98.5%以上,被专家学者誉为“自然博物馆”。</p><p><br/></p><p>世界地质公园,国家5A级旅游景区,国家级森林公园、国家级自然保护区,中国十佳休闲胜地,中国最美地方之一,河南省十佳景区好去处第三名, 自有“人间仙境”之称。2010年更晋升世界地质公园。平均海拔1800米,海拔1500米以上的山峰37座,其中玉皇顶海拔2216米,为白云山第一峰,是看日出观云海的最佳处之一。</p><p><br/></p><p>白云山夏季最高气温不超过26℃,是国内首屈一指的避暑胜地。</p><p><br/></p><p>白云山主要景区有:白云峰、玉皇顶、小黄山、九龙瀑布、原始森林五大观光区和白云湖、高山森林氧吧、高山牡丹园、留侯祠、芦花谷五大休闲区。建议游玩时间2--3天。</p><p><img src=\"/media/ueimages/10070m000000dwnkw8E39_R_1024_10000_Q90_20181025135132_689.jpg\" title=\"\" alt=\"10070m000000dwnkw8E39_R_1024_10000_Q90.jpg\"/></p>', 'diary/2018/10/bg_S7RQs7B.jpg', '16', '0', '1', '2018-10-25 13:51:38.381751', '1', '6', '0');
INSERT INTO `diarys_diary` VALUES ('4', '人间仙境白云山', '<p>对于热爱旅行的人来说,十月是个美好的季节,它可以金灿耀眼,可以绿意盎然,也可以白雪皑皑,它同时带来惊艳,让人念念不忘。</p><p><br/></p><p>对于还未上路的人来说,十一月是个特殊的季节,候鸟的邂逅、色彩的碰撞,还是古村的静候,都在这个时刻释放出无限光彩。</p><p><br/></p><p>网友经常问我:“你经常出去旅行,是因为爱好吗?”</p><p><br/></p><p>我说:“旅行不是爱好,而是生活”,不论是向左走,还是向右行,抑或是精心规划行程,又或者是说走就走,都是一种生活的态度。于是在这个收获的季节,我又出发了——人间仙境白云山。</p><p><br/></p><p> </p><p>洛阳白云山位于河南省洛阳市嵩县南部伏牛山腹地原始林区,总面积168平方公里,动物204种,植物1991种,森林覆盖率98.5%以上,被专家学者誉为“自然博物馆”。</p><p><br/></p><p>世界地质公园,国家5A级旅游景区,国家级森林公园、国家级自然保护区,中国十佳休闲胜地,中国最美地方之一,河南省十佳景区好去处第三名, 自有“人间仙境”之称。2010年更晋升世界地质公园。平均海拔1800米,海拔1500米以上的山峰37座,其中玉皇顶海拔2216米,为白云山第一峰,是看日出观云海的最佳处之一。</p><p><br/></p><p>白云山夏季最高气温不超过26℃,是国内首屈一指的避暑胜地。</p><p><br/></p><p>白云山主要景区有:白云峰、玉皇顶、小黄山、九龙瀑布、原始森林五大观光区和白云湖、高山森林氧吧、高山牡丹园、留侯祠、芦花谷五大休闲区。建议游玩时间2--3天。</p><p><img src=\"/media/ueimages/10070m000000dwnkw8E39_R_1024_10000_Q90_20181025135132_689.jpg\" title=\"\" alt=\"10070m000000dwnkw8E39_R_1024_10000_Q90.jpg\"/></p>', 'diary/2018/10/bg_S7RQs7B.jpg', '2', '0', '1', '2018-10-25 13:51:38.381751', '1', '0', '0');
INSERT INTO `diarys_diary` VALUES ('5', '赏千年银杏林', '<p>每年</p><p>给自己定个小目标,</p><p>春天去看一场花开;</p><p>夏天去看一次大海;</p><p>秋天去看一片银杏。</p><p>带着这个梦想来到洛阳,白云山。</p><p style=\"text-align:center\"><img src=\"http://127.0.0.1:8000/media/1_20181029155011_609.png\" title=\"\" alt=\"1.png\"/></p><p><br/></p><p>洛阳·白云山 </p><p><br/></p>', 'diary/2018/10/1_9UMmOAm.png', '3', '0', '1', '2018-10-29 15:51:24.664372', '19', '3', '0');
INSERT INTO `diarys_diary` VALUES ('6', '全攻略', '<p>在年少的岁月里,从书中初读洛阳的时候,我年轻而朝气蓬勃地心,充满了向往。那股迎面扑来的气息奔放着几千年前的唐风汉雅直闯我的心扉,向往便如美丽的伊洛河水流淌过日月的岁岁年年,古都洛阳在遥远的地方,如一颗明星般闪耀在我的脑际,夕阳红,朝霞更红。</p><p><br/></p><p>怀揣着仰慕的心情,低头在白马的蹄印里读洛阳的时候,残梦便从魏晋的繁华里耸立起一座名为白马的寺院,一柱香点燃历史的明灭,钟声就再也没有沉寂,钟声就在沧桑里坚强而又深情地唱响了几干年。而几千年后的白马,依然站在它最后的蹄印里,谛听着马寺钟声,守望着艰难跋涉的洛阳。</p><p><br/></p><p>行走在洛阳之东,在龙门石窟里读洛阳的时候,心底依稀望见几千年前风雪的黄昏,先民们被铁链紧锁着的身躯和被神光所笼罩的灵魂,那斑斑血迹里痛苦的呻吟声和冰冷石崖上钎锤的敲击声以及撞击出的凄美的火花,石崖上的人归去了,如轻烟细雨般没有痕迹,石头上的文化却留下来了。伊河因此而美丽,龙门因此而名符其实地身价百倍。其实这正是洛阳的不凡之处啊,龙门石窟,那是先祖们穿透岁月、穿透历史烟尘而一直凝望我们的目光…………</p><p style=\"text-align: center;\"><img src=\"/media/6e06f50f6e8741b2938a01e514f6b8f1_R_1024_10000_Q90_20181029155324_809.jpg\" title=\"\" alt=\"6e06f50f6e8741b2938a01e514f6b8f1_R_1024_10000_Q90.jpg\"/></p>', 'diary/2018/10/fb10a87f433747b1bdaad3910f805c5b_R_1024_10000_Q90.jpg', '53', '0', '1', '2018-10-29 15:53:43.925177', '19', '0', '0');
INSERT INTO `diarys_diary` VALUES ('7', '賞花行', '<p>4月中,突然心血來潮,和姐姐到洛陽看牡丹。趕快定行程、訂機票、酒店,因有些事情耽擱,4月21晚出發。</p><p>4月21日</p><p>因為直飛洛陽的票價貴近一倍,故取廣州至鄭州 (深航ZH9607 (18:25-20:40),含稅770元),飛機異常準時,20:40抵鄭,如按原計劃是可以直接坐八逹航空公司的大巴到洛陽(車程三小時,車費80元/人(?)晚上9:00、10:30、12:00),因耽心飛機晚點,改先停鄭州,訂了火車站北側的紅珊瑚酒店。次日早再乘高鐵往洛陽。</p><p>順利乘晚上從新鄭機場至市區的民航大巴,到金水路民航大酒店( 大巴服務至航班結束),</p><p>路程 約一小時,票價20元。</p><p>下車後,原擬打車到5公里外的鄭州火車站,沒想到,兩輛警車就停在民航巴士旁,出租車不能停靠,警察叫我們往前走到三十米外那裡等車。實際上那裡停了幾輛出租車或私家車,都不打錶,往火車站叫價30元。正討價還價間,又來了一輛民航大巴,出租車即時坐地起價:30元包車也不行了,要併車,每人15元。無奈之下,只有與另一年輕人併車,收了我們兩人25。我不明白,為什麼警察就在旁邊,他們也敢這樣做?</p><p>紅珊瑚酒店Red Coral Hotel (四星)溫馨特惠房(雙床雙早) 228元 (由攜程介紹訂)</p><p>郑州 二七区 二马路20号 (火车站北出站口斜对面 ,步行3-4分鐘可到火車站入口)</p><p>這間酒店是老牌四星酒店,外觀顯得有點陳舊。幸而房內床舖較新淨,房間很大,而且包兩位自助早餐 (早餐品種多樣,不錯) ,價位可以接受。有點不足的是只有大堂有WIFI。</p><p>4月22日</p><p>睡到自然醒,享受酒店提供的自助早餐後,乘動車往洛陽。</p><p>鄭州火車站往洛陽龙门站:9:00(D1001_39.5元/人,47分鐘) (列車從鄭州站到西安北)</p><p>(如果想早,從鄭州站始發的還有:7:12 (D5309_39.5元/人,約1 小時) 、8:00 (G1001_59.5元/人,37分鐘)、</p><p>注意:1. 鄭州乘高鐵和動車有兩個站:鄭州站(在二七區)和鄭州東站(在鄭東新區),買票時不要搞錯了。</p><p>2. 洛陽高鐵和動車停靠洛陽城南洛龍區洛陽龍門站,距王城廣場約十二公里。有多班公交車直到市內。</p><p>3. 廣州南至洛陽龍門的高鐵每天有6班,其中3班為廣州南始發。車程約7.5小時,票價不到700元。我們乘飛機表面快,但左右折騰,實在累,兼且時間也沒省。所以應常考慮高鐵。</p><p>10:00AM寄存行李在龙门火车站(每個行李箱15元),預購4.24往西安的動車票(D1001,9:49-12:08)</p><p>打車(約5公里,10.5元)往游龙门石窟、白园 (约4小时)</p><p>龍門石窟為國家5A級景區,門票120元,60-69歲半票,70以上免票。</p><p><img src=\"/media/1ae3ae23ec92443d9126f6bf6daa5f81_R_671_10000_Q90_20181029155559_330.jpg\" title=\"\" alt=\"1ae3ae23ec92443d9126f6bf6daa5f81_R_671_10000_Q90.jpg\"/></p>', 'diary/2018/10/893aebb481754feea54d7124d10b3b7f_R_671_10000_Q90.jpg', '2', '0', '0', '2018-10-29 15:56:09.247553', '19', '0', '0');
INSERT INTO `diarys_diary` VALUES ('8', '千年洛阳', '<p><img src=\"/media/CggYHFbN1-yAHQCsAANf2YxMj6E011_C_350_234_Q90_20181029155827_411.jpg\" style=\"\"/></p><p><img src=\"/media/CggYHVbN1-6ASzkYAAJyMreTpvk475_R_10000_500_Q90_20181029155827_606.jpg\" style=\"\"/></p><p><img src=\"/media/CggYs1bN1-yAUNw5AAOOjgStrss989_R_10000_500_Q90_20181029155827_317.jpg\" style=\"\"/></p><p><img src=\"/media/CggYslbN1-2ARx-PAAItNbzMpP8974_R_10000_500_Q90_20181029155827_667.jpg\" style=\"\"/></p><p><img src=\"/media/CggYtFbN1-yACKs6AAL5e7SJYoQ470_R_1024_10000_Q90_20181029155827_359.jpg\" style=\"\"/></p><p><br/></p>', 'diary/2018/10/CggYs1bN1-yAUNw5AAOOjgStrss989_R_10000_500_Q90.jpg', '9', '0', '1', '2018-10-29 15:58:42.898813', '19', '0', '2');
INSERT INTO `diarys_diary` VALUES ('74', ' 登两千米白云山,赏千年银杏林', '<p>每年</p><p>给自己定个小目标,</p><p>春天去看一场花开;</p><p>夏天去看一次大海;</p><p>秋天去看一片银杏。</p><p>带着这个梦想来到洛阳,白云山。</p><p style=\"text-align:center\"><img src=\"http://127.0.0.1:8000/media/1_20181029155011_609.png\" title=\"\" alt=\"1.png\"/></p><p><br/></p><p>洛阳·白云山 </p><p><br/></p>', 'diary/2018/10/1_9UMmOAm.png', '3', '0', '1', '2018-10-29 15:51:24.664372', '1', '51', '0');
INSERT INTO `diarys_diary` VALUES ('75', ' 洛阳全攻略', '<p>在年少的岁月里,从书中初读洛阳的时候,我年轻而朝气蓬勃地心,充满了向往。那股迎面扑来的气息奔放着几千年前的唐风汉雅直闯我的心扉,向往便如美丽的伊洛河水流淌过日月的岁岁年年,古都洛阳在遥远的地方,如一颗明星般闪耀在我的脑际,夕阳红,朝霞更红。</p><p><br/></p><p>怀揣着仰慕的心情,低头在白马的蹄印里读洛阳的时候,残梦便从魏晋的繁华里耸立起一座名为白马的寺院,一柱香点燃历史的明灭,钟声就再也没有沉寂,钟声就在沧桑里坚强而又深情地唱响了几干年。而几千年后的白马,依然站在它最后的蹄印里,谛听着马寺钟声,守望着艰难跋涉的洛阳。</p><p><br/></p><p>行走在洛阳之东,在龙门石窟里读洛阳的时候,心底依稀望见几千年前风雪的黄昏,先民们被铁链紧锁着的身躯和被神光所笼罩的灵魂,那斑斑血迹里痛苦的呻吟声和冰冷石崖上钎锤的敲击声以及撞击出的凄美的火花,石崖上的人归去了,如轻烟细雨般没有痕迹,石头上的文化却留下来了。伊河因此而美丽,龙门因此而名符其实地身价百倍。其实这正是洛阳的不凡之处啊,龙门石窟,那是先祖们穿透岁月、穿透历史烟尘而一直凝望我们的目光…………</p><p style=\"text-align: center;\"><img src=\"/media/6e06f50f6e8741b2938a01e514f6b8f1_R_1024_10000_Q90_20181029155324_809.jpg\" title=\"\" alt=\"6e06f50f6e8741b2938a01e514f6b8f1_R_1024_10000_Q90.jpg\"/></p>', 'diary/2018/10/fb10a87f433747b1bdaad3910f805c5b_R_1024_10000_Q90.jpg', '73', '6', '1', '2018-10-29 15:53:43.925177', '1', '0', '3');
INSERT INTO `diarys_diary` VALUES ('76', ' 4月洛陽賞花行', '<p>4月中,突然心血來潮,和姐姐到洛陽看牡丹。趕快定行程、訂機票、酒店,因有些事情耽擱,4月21晚出發。</p><p>4月21日</p><p>因為直飛洛陽的票價貴近一倍,故取廣州至鄭州 (深航ZH9607 (18:25-20:40),含稅770元),飛機異常準時,20:40抵鄭,如按原計劃是可以直接坐八逹航空公司的大巴到洛陽(車程三小時,車費80元/人(?)晚上9:00、10:30、12:00),因耽心飛機晚點,改先停鄭州,訂了火車站北側的紅珊瑚酒店。次日早再乘高鐵往洛陽。</p><p>順利乘晚上從新鄭機場至市區的民航大巴,到金水路民航大酒店( 大巴服務至航班結束),</p><p>路程 約一小時,票價20元。</p><p>下車後,原擬打車到5公里外的鄭州火車站,沒想到,兩輛警車就停在民航巴士旁,出租車不能停靠,警察叫我們往前走到三十米外那裡等車。實際上那裡停了幾輛出租車或私家車,都不打錶,往火車站叫價30元。正討價還價間,又來了一輛民航大巴,出租車即時坐地起價:30元包車也不行了,要併車,每人15元。無奈之下,只有與另一年輕人併車,收了我們兩人25。我不明白,為什麼警察就在旁邊,他們也敢這樣做?</p><p>紅珊瑚酒店Red Coral Hotel (四星)溫馨特惠房(雙床雙早) 228元 (由攜程介紹訂)</p><p>郑州 二七区 二马路20号 (火车站北出站口斜对面 ,步行3-4分鐘可到火車站入口)</p><p>這間酒店是老牌四星酒店,外觀顯得有點陳舊。幸而房內床舖較新淨,房間很大,而且包兩位自助早餐 (早餐品種多樣,不錯) ,價位可以接受。有點不足的是只有大堂有WIFI。</p><p>4月22日</p><p>睡到自然醒,享受酒店提供的自助早餐後,乘動車往洛陽。</p><p>鄭州火車站往洛陽龙门站:9:00(D1001_39.5元/人,47分鐘) (列車從鄭州站到西安北)</p><p>(如果想早,從鄭州站始發的還有:7:12 (D5309_39.5元/人,約1 小時) 、8:00 (G1001_59.5元/人,37分鐘)、</p><p>注意:1. 鄭州乘高鐵和動車有兩個站:鄭州站(在二七區)和鄭州東站(在鄭東新區),買票時不要搞錯了。</p><p>2. 洛陽高鐵和動車停靠洛陽城南洛龍區洛陽龍門站,距王城廣場約十二公里。有多班公交車直到市內。</p><p>3. 廣州南至洛陽龍門的高鐵每天有6班,其中3班為廣州南始發。車程約7.5小時,票價不到700元。我們乘飛機表面快,但左右折騰,實在累,兼且時間也沒省。所以應常考慮高鐵。</p><p>10:00AM寄存行李在龙门火车站(每個行李箱15元),預購4.24往西安的動車票(D1001,9:49-12:08)</p><p>打車(約5公里,10.5元)往游龙门石窟、白园 (约4小时)</p><p>龍門石窟為國家5A級景區,門票120元,60-69歲半票,70以上免票。</p><p><img src=\"/media/1ae3ae23ec92443d9126f6bf6daa5f81_R_671_10000_Q90_20181029155559_330.jpg\" title=\"\" alt=\"1ae3ae23ec92443d9126f6bf6daa5f81_R_671_10000_Q90.jpg\"/></p>', 'diary/2018/10/893aebb481754feea54d7124d10b3b7f_R_671_10000_Q90.jpg', '3', '1', '0', '2018-10-29 15:56:09.247553', '19', '8', '1');
INSERT INTO `diarys_diary` VALUES ('77', '古都清明 千年洛阳', '<p><img src=\"/media/CggYHFbN1-yAHQCsAANf2YxMj6E011_C_350_234_Q90_20181029155827_411.jpg\" style=\"\"/></p><p><img src=\"/media/CggYHVbN1-6ASzkYAAJyMreTpvk475_R_10000_500_Q90_20181029155827_606.jpg\" style=\"\"/></p><p><img src=\"/media/CggYs1bN1-yAUNw5AAOOjgStrss989_R_10000_500_Q90_20181029155827_317.jpg\" style=\"\"/></p><p><img src=\"/media/CggYslbN1-2ARx-PAAItNbzMpP8974_R_10000_500_Q90_20181029155827_667.jpg\" style=\"\"/></p><p><img src=\"/media/CggYtFbN1-yACKs6AAL5e7SJYoQ470_R_1024_10000_Q90_20181029155827_359.jpg\" style=\"\"/></p><p><br/></p>', 'diary/2018/10/CggYs1bN1-yAUNw5AAOOjgStrss989_R_10000_500_Q90.jpg', '142', '0', '1', '2018-10-29 15:58:42.898813', '1', '0', '0');
-- ----------------------------
-- Table structure for django_admin_log
-- ----------------------------
DROP TABLE IF EXISTS `django_admin_log`;
CREATE TABLE `django_admin_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`action_time` datetime(6) NOT NULL,
`object_id` longtext,
`object_repr` varchar(200) NOT NULL,
`action_flag` smallint(5) unsigned NOT NULL,
`change_message` longtext NOT NULL,
`content_type_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`),
KEY `django_admin_log_user_id_c564eba6_fk_users_myuser_id` (`user_id`),
CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of django_admin_log
-- ----------------------------
-- ----------------------------
-- Table structure for django_content_type
-- ----------------------------
DROP TABLE IF EXISTS `django_content_type`;
CREATE TABLE `django_content_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of django_content_type
-- ----------------------------
INSERT INTO `django_content_type` VALUES ('1', 'admin', 'logentry');
INSERT INTO `django_content_type` VALUES ('3', 'auth', 'group');
INSERT INTO `django_content_type` VALUES ('2', 'auth', 'permission');
INSERT INTO `django_content_type` VALUES ('25', 'captcha', 'captchastore');
INSERT INTO `django_content_type` VALUES ('4', 'contenttypes', 'contenttype');
INSERT INTO `django_content_type` VALUES ('6', 'diarys', 'diary');
INSERT INTO `django_content_type` VALUES ('7', 'news', 'news');
INSERT INTO `django_content_type` VALUES ('8', 'operation', 'activecomments');
INSERT INTO `django_content_type` VALUES ('9', 'operation', 'diarycomments');
INSERT INTO `django_content_type` VALUES ('32', 'operation', 'productcomments');
INSERT INTO `django_content_type` VALUES ('31', 'operation', 'shopping');
INSERT INTO `django_content_type` VALUES ('28', 'operation', 'shoppingcart');
INSERT INTO `django_content_type` VALUES ('10', 'operation', 'spotscomments');
INSERT INTO `django_content_type` VALUES ('11', 'operation', 'usercollect');
INSERT INTO `django_content_type` VALUES ('27', 'operation', 'userfav');
INSERT INTO `django_content_type` VALUES ('29', 'pay', 'goodsordersmaintable');
INSERT INTO `django_content_type` VALUES ('30', 'pay', 'orderitems');
INSERT INTO `django_content_type` VALUES ('34', 'pay', 'scenicordersmaintable');
INSERT INTO `django_content_type` VALUES ('33', 'pay', 'ticketsordersmaintable');
INSERT INTO `django_content_type` VALUES ('12', 'scenicspots', 'active');
INSERT INTO `django_content_type` VALUES ('13', 'scenicspots', 'gallery');
INSERT INTO `django_content_type` VALUES ('14', 'scenicspots', 'spots');
INSERT INTO `django_content_type` VALUES ('5', 'sessions', 'session');
INSERT INTO `django_content_type` VALUES ('23', 'shop', 'product');
INSERT INTO `django_content_type` VALUES ('24', 'shop', 'propic');
INSERT INTO `django_content_type` VALUES ('26', 'users', 'areainfo');
INSERT INTO `django_content_type` VALUES ('16', 'users', 'banner');
INSERT INTO `django_content_type` VALUES ('17', 'users', 'emailverifyrecord');
INSERT INTO `django_content_type` VALUES ('15', 'users', 'myuser');
INSERT INTO `django_content_type` VALUES ('18', 'users', 'thecontact');
INSERT INTO `django_content_type` VALUES ('19', 'xadmin', 'bookmark');
INSERT INTO `django_content_type` VALUES ('22', 'xadmin', 'log');
INSERT INTO `django_content_type` VALUES ('20', 'xadmin', 'usersettings');
INSERT INTO `django_content_type` VALUES ('21', 'xadmin', 'userwidget');
-- ----------------------------
-- Table structure for django_migrations
-- ----------------------------
DROP TABLE IF EXISTS `django_migrations`;
CREATE TABLE `django_migrations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of django_migrations
-- ----------------------------
INSERT INTO `django_migrations` VALUES ('1', 'contenttypes', '0001_initial', '2018-10-09 16:26:05.433260');
INSERT INTO `django_migrations` VALUES ('2', 'contenttypes', '0002_remove_content_type_name', '2018-10-09 16:26:05.851075');
INSERT INTO `django_migrations` VALUES ('3', 'auth', '0001_initial', '2018-10-09 16:26:07.159414');
INSERT INTO `django_migrations` VALUES ('4', 'auth', '0002_alter_permission_name_max_length', '2018-10-09 16:26:07.469071');
INSERT INTO `django_migrations` VALUES ('5', 'auth', '0003_alter_user_email_max_length', '2018-10-09 16:26:07.489161');
INSERT INTO `django_migrations` VALUES ('6', 'auth', '0004_alter_user_username_opts', '2018-10-09 16:26:07.508064');
INSERT INTO `django_migrations` VALUES ('7', 'auth', '0005_alter_user_last_login_null', '2018-10-09 16:26:07.525505');
INSERT INTO `django_migrations` VALUES ('8', 'auth', '0006_require_contenttypes_0002', '2018-10-09 16:26:07.539623');
INSERT INTO `django_migrations` VALUES ('9', 'auth', '0007_alter_validators_add_error_messages', '2018-10-09 16:26:07.561272');
INSERT INTO `django_migrations` VALUES ('10', 'auth', '0008_alter_user_username_max_length', '2018-10-09 16:26:07.578811');
INSERT INTO `django_migrations` VALUES ('11', 'auth', '0009_alter_user_last_name_max_length', '2018-10-09 16:26:07.596594');
INSERT INTO `django_migrations` VALUES ('12', 'users', '0001_initial', '2018-10-09 16:26:09.742026');
INSERT INTO `django_migrations` VALUES ('13', 'admin', '0001_initial', '2018-10-09 16:26:10.401200');
INSERT INTO `django_migrations` VALUES ('14', 'admin', '0002_logentry_remove_auto_add', '2018-10-09 16:26:10.421689');
INSERT INTO `django_migrations` VALUES ('15', 'admin', '0003_logentry_add_action_flag_choices', '2018-10-09 16:26:10.450370');
INSERT INTO `django_migrations` VALUES ('16', 'diarys', '0001_initial', '2018-10-09 16:26:10.564613');
INSERT INTO `django_migrations` VALUES ('17', 'diarys', '0002_diary_user', '2018-10-09 16:26:10.936283');
INSERT INTO `django_migrations` VALUES ('18', 'news', '0001_initial', '2018-10-09 16:26:11.069816');
INSERT INTO `django_migrations` VALUES ('19', 'scenicspots', '0001_initial', '2018-10-09 16:26:11.858810');
INSERT INTO `django_migrations` VALUES ('20', 'operation', '0001_initial', '2018-10-09 16:26:12.484342');
INSERT INTO `django_migrations` VALUES ('21', 'operation', '0002_auto_20181009_1624', '2018-10-09 16:26:15.011204');
INSERT INTO `django_migrations` VALUES ('22', 'sessions', '0001_initial', '2018-10-09 16:26:15.222733');
INSERT INTO `django_migrations` VALUES ('23', 'xadmin', '0001_initial', '2018-10-09 16:26:16.579197');
INSERT INTO `django_migrations` VALUES ('24', 'xadmin', '0002_log', '2018-10-09 16:26:17.276652');
INSERT INTO `django_migrations` VALUES ('25', 'xadmin', '0003_auto_20160715_0100', '2018-10-09 16:26:17.598662');
INSERT INTO `django_migrations` VALUES ('26', 'shop', '0001_initial', '2018-10-10 09:56:09.849007');
INSERT INTO `django_migrations` VALUES ('27', 'news', '0002_auto_20181011_0944', '2018-10-11 09:44:43.587982');
INSERT INTO `django_migrations` VALUES ('28', 'news', '0003_auto_20181011_1059', '2018-10-11 10:59:30.523816');
INSERT INTO `django_migrations` VALUES ('29', 'captcha', '0001_initial', '2018-10-11 14:11:54.926549');
INSERT INTO `django_migrations` VALUES ('30', 'scenicspots', '0002_auto_20181015_1654', '2018-10-15 16:54:27.987588');
INSERT INTO `django_migrations` VALUES ('31', 'scenicspots', '0003_auto_20181016_1412', '2018-10-16 14:12:47.106173');
INSERT INTO `django_migrations` VALUES ('32', 'scenicspots', '0003_auto_20181016_1605', '2018-10-16 16:05:56.341874');
INSERT INTO `django_migrations` VALUES ('33', 'scenicspots', '0004_auto_20181016_1607', '2018-10-16 16:07:04.562935');
INSERT INTO `django_migrations` VALUES ('34', 'scenicspots', '0005_auto_20181016_1608', '2018-10-16 16:08:24.317636');
INSERT INTO `django_migrations` VALUES ('35', 'users', '0002_myuser_integral', '2018-10-17 09:50:27.796235');
INSERT INTO `django_migrations` VALUES ('36', 'users', '0003_myuser_check_time', '2018-10-17 14:44:34.508524');
INSERT INTO `django_migrations` VALUES ('37', 'users', '0004_auto_20181018_1011', '2018-10-18 10:11:24.027408');
INSERT INTO `django_migrations` VALUES ('38', 'users', '0005_areainfo', '2018-10-18 10:26:50.224997');
INSERT INTO `django_migrations` VALUES ('39', 'users', '0006_auto_20181018_1043', '2018-10-18 10:44:09.789843');
INSERT INTO `django_migrations` VALUES ('40', 'users', '0004_auto_20181018_1048', '2018-10-18 10:49:05.642659');
INSERT INTO `django_migrations` VALUES ('41', 'users', '0005_auto_20181018_1101', '2018-10-18 11:01:48.904530');
INSERT INTO `django_migrations` VALUES ('42', 'users', '0006_auto_20181018_1506', '2018-10-18 15:07:57.965127');
INSERT INTO `django_migrations` VALUES ('43', 'users', '0007_auto_20181018_1559', '2018-10-18 15:59:30.366503');
INSERT INTO `django_migrations` VALUES ('44', 'users', '0004_auto_20181018_1601', '2018-10-18 16:01:17.792776');
INSERT INTO `django_migrations` VALUES ('45', 'users', '0005_auto_20181018_1623', '2018-10-18 16:24:04.737184');
INSERT INTO `django_migrations` VALUES ('46', 'users', '0006_auto_20181018_1625', '2018-10-18 16:25:18.133600');
INSERT INTO `django_migrations` VALUES ('47', 'users', '0006_auto_20181018_1627', '2018-10-18 16:27:58.880720');
INSERT INTO `django_migrations` VALUES ('48', 'users', '0007_auto_20181019_1006', '2018-10-19 10:06:06.415892');
INSERT INTO `django_migrations` VALUES ('49', 'users', '0008_auto_20181019_1416', '2018-10-19 14:16:46.260110');
INSERT INTO `django_migrations` VALUES ('50', 'users', '0007_auto_20181019_1452', '2018-10-19 15:26:44.480658');
INSERT INTO `django_migrations` VALUES ('51', 'users', '0008_auto_20181019_1523', '2018-10-19 15:27:09.875443');
INSERT INTO `django_migrations` VALUES ('52', 'diarys', '0003_auto_20181025_1137', '2018-10-25 11:37:35.109152');
INSERT INTO `django_migrations` VALUES ('53', 'diarys', '0004_auto_20181025_1403', '2018-10-25 14:03:49.659776');
INSERT INTO `django_migrations` VALUES ('54', 'diarys', '0003_auto_20181026_1325', '2018-10-26 13:25:39.725773');
INSERT INTO `django_migrations` VALUES ('55', 'diarys', '0004_auto_20181026_1450', '2018-10-26 14:51:03.916641');
INSERT INTO `django_migrations` VALUES ('56', 'diarys', '0005_diary_praisenum', '2018-10-29 16:25:12.485427');
INSERT INTO `django_migrations` VALUES ('57', 'diarys', '0006_diary_collectnum', '2018-10-29 16:29:17.860055');
INSERT INTO `django_migrations` VALUES ('58', 'operation', '0003_userfav', '2018-10-31 10:03:11.776788');
INSERT INTO `django_migrations` VALUES ('59', 'shop', '0002_auto_20181101_1411', '2018-11-01 14:11:35.125966');
INSERT INTO `django_migrations` VALUES ('60', 'shop', '0003_propic_add_time', '2018-11-01 14:24:05.931082');
INSERT INTO `django_migrations` VALUES ('61', 'shop', '0004_auto_20181101_1433', '2018-11-01 14:33:41.060981');
INSERT INTO `django_migrations` VALUES ('62', 'shop', '0005_auto_20181101_1520', '2018-11-01 15:20:30.030885');
INSERT INTO `django_migrations` VALUES ('63', 'operation', '0004_shoppingcart', '2018-11-02 14:18:44.006037');
INSERT INTO `django_migrations` VALUES ('64', 'operation', '0005_auto_20181106_0941', '2018-11-06 09:42:00.064744');
INSERT INTO `django_migrations` VALUES ('65', 'pay', '0001_initial', '2018-11-08 13:59:49.988765');
INSERT INTO `django_migrations` VALUES ('66', 'pay', '0002_auto_20181108_1406', '2018-11-08 14:06:37.056286');
INSERT INTO `django_migrations` VALUES ('67', 'pay', '0003_auto_20181109_1110', '2018-11-09 11:10:45.960591');
INSERT INTO `django_migrations` VALUES ('68', 'pay', '0004_auto_20181109_1323', '2018-11-09 13:23:52.491480');
INSERT INTO `django_migrations` VALUES ('69', 'pay', '0002_orderitems_good_price', '2018-11-09 14:00:00.964442');
INSERT INTO `django_migrations` VALUES ('70', 'pay', '0003_auto_20181109_1404', '2018-11-09 14:04:11.181572');
INSERT INTO `django_migrations` VALUES ('71', 'pay', '0004_orderitems_good_image', '2018-11-09 14:12:05.059083');
INSERT INTO `django_migrations` VALUES ('72', 'pay', '0005_orderitems_good_id', '2018-11-09 15:26:31.905550');
INSERT INTO `django_migrations` VALUES ('73', 'operation', '0006_shopping', '2018-11-12 10:29:12.530515');
INSERT INTO `django_migrations` VALUES ('74', 'operation', '0007_productcomments', '2018-11-12 15:14:51.659297');
INSERT INTO `django_migrations` VALUES ('75', 'pay', '0006_ticketsordersmaintable', '2018-11-13 15:04:13.132703');
INSERT INTO `django_migrations` VALUES ('76', 'pay', '0007_ticketsordersmaintable_cdk', '2018-11-14 10:20:53.136136');
INSERT INTO `django_migrations` VALUES ('77', 'pay', '0008_auto_20181114_1036', '2018-11-14 10:36:06.076438');
INSERT INTO `django_migrations` VALUES ('78', 'pay', '0009_auto_20181114_1317', '2018-11-14 13:17:10.539366');
INSERT INTO `django_migrations` VALUES ('79', 'scenicspots', '0003_auto_20181016_1625', '2018-11-19 10:41:36.210767');
INSERT INTO `django_migrations` VALUES ('80', 'scenicspots', '0004_auto_20181119_1037', '2018-11-19 10:41:36.322340');
INSERT INTO `django_migrations` VALUES ('81', 'pay', '0010_auto_20181119_1545', '2018-11-19 15:45:46.302588');
INSERT INTO `django_migrations` VALUES ('82', 'users', '0009_auto_20181109_1338', '2018-11-20 11:48:47.917988');
INSERT INTO `django_migrations` VALUES ('83', 'users', '0010_remove_banner_index', '2018-11-20 11:48:48.206575');
INSERT INTO `django_migrations` VALUES ('84', 'users', '0011_auto_20181120_1353', '2018-11-20 13:54:07.160925');
-- ----------------------------
-- Table structure for django_session
-- ----------------------------
DROP TABLE IF EXISTS `django_session`;
CREATE TABLE `django_session` (
`session_key` varchar(40) NOT NULL,
`session_data` longtext NOT NULL,
`expire_date` datetime(6) NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_expire_date_a5c62663` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of django_session
-- ----------------------------
INSERT INTO `django_session` VALUES ('5b9yqp0jwrw9erg53kuf16mtx03mpyne', 'ODUzY2NlMDAxZGJiYmM0MGViOGI4OTdmZjRmODY0ZDUwYTlkNWYyYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIwOTY5MDFiYmZmMGRjNjI3ZTM5NGU3ODE4ZTc5ODZhNTNhZmFiYjU3IiwiTElTVF9RVUVSWSI6W1sic2hvcCIsInByb2R1Y3QiXSwiIl0sIndpemFyZF94YWRtaW51c2Vyd2lkZ2V0X2FkbWluX3dpemFyZF9mb3JtX3BsdWdpbiI6eyJzdGVwIjpudWxsLCJzdGVwX2RhdGEiOnt9LCJzdGVwX2ZpbGVzIjp7fSwiZXh0cmFfZGF0YSI6e319fQ==', '2018-11-15 16:04:43.816724');
INSERT INTO `django_session` VALUES ('80yzhy03f4fd629kifkk73d0z05eoy4t', 'MWM4NzgwOTU3YWNlZGNjY2E4YzYwNjBmOGRiNmFjNDgwMTUyMWZhNTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIwOTY5MDFiYmZmMGRjNjI3ZTM5NGU3ODE4ZTc5ODZhNTNhZmFiYjU3IiwiTElTVF9RVUVSWSI6W1sidXNlcnMiLCJiYW5uZXIiXSwiIl0sIm5hdl9tZW51IjoiW3tcInRpdGxlXCI6IFwiVXNlcnNcIiwgXCJtZW51c1wiOiBbe1widGl0bGVcIjogXCJcdTc1MjhcdTYyMzdcdTRmZTFcdTYwNmZcIiwgXCJ1cmxcIjogXCIveGFkbWluL3VzZXJzL215dXNlci9cIiwgXCJpY29uXCI6IFwiZmEgZmEtdXNlclwiLCBcIm9yZGVyXCI6IDN9LCB7XCJ0aXRsZVwiOiBcIlx1OGY2ZVx1NjRhZFx1NTZmZVwiLCBcInVybFwiOiBcIi94YWRtaW4vdXNlcnMvYmFubmVyL1wiLCBcImljb25cIjogXCJmYSBmYS1waG90b1wiLCBcIm9yZGVyXCI6IDExfV0sIFwiZmlyc3RfaWNvblwiOiBcImZhIGZhLXVzZXJcIiwgXCJmaXJzdF91cmxcIjogXCIveGFkbWluL3VzZXJzL215dXNlci9cIn0sIHtcInRpdGxlXCI6IFwiXHU1NTQ2XHU1N2NlXHU0ZmUxXHU2MDZmXCIsIFwibWVudXNcIjogW3tcInRpdGxlXCI6IFwiXHU1NTQ2XHU1NGMxXHU0ZmUxXHU2MDZmXCIsIFwidXJsXCI6IFwiL3hhZG1pbi9zaG9wL3Byb2R1Y3QvXCIsIFwiaWNvblwiOiBcImZhIGZhLXNob3BwaW5nLWNhcnRcIiwgXCJvcmRlclwiOiA5fSwge1widGl0bGVcIjogXCJcdTU1NDZcdTU0YzFcdTU2ZmVcdTcyNDdcIiwgXCJ1cmxcIjogXCIveGFkbWluL3Nob3AvcHJvcGljL1wiLCBcImljb25cIjogXCJmYSBmYS1waWN0dXJlLW9cIiwgXCJvcmRlclwiOiAxMH1dLCBcImZpcnN0X2ljb25cIjogXCJmYSBmYS1zaG9wcGluZy1jYXJ0XCIsIFwiZmlyc3RfdXJsXCI6IFwiL3hhZG1pbi9zaG9wL3Byb2R1Y3QvXCJ9LCB7XCJ0aXRsZVwiOiBcIlx1NjViMFx1OTVmYlx1OGQ0NFx1OGJhZlwiLCBcIm1lbnVzXCI6IFt7XCJ0aXRsZVwiOiBcIlx1NjViMFx1OTVmYlx1NGZlMVx1NjA2ZlwiLCBcInVybFwiOiBcIi94YWRtaW4vbmV3cy9uZXdzL1wiLCBcImljb25cIjogXCJmYSBmYS1uZXdzcGFwZXItb1wiLCBcIm9yZGVyXCI6IDV9XSwgXCJmaXJzdF9pY29uXCI6IFwiZmEgZmEtbmV3c3BhcGVyLW9cIiwgXCJmaXJzdF91cmxcIjogXCIveGFkbWluL25ld3MvbmV3cy9cIn0sIHtcInRpdGxlXCI6IFwiXHU2NjZmXHU1MzNhXHU1MjE3XHU4ODY4XCIsIFwibWVudXNcIjogW3tcInRpdGxlXCI6IFwiXHU2NWM1XHU2ZTM4XHU2NjZmXHU1MzNhXCIsIFwidXJsXCI6IFwiL3hhZG1pbi9zY2VuaWNzcG90cy9zcG90cy9cIiwgXCJpY29uXCI6IFwiZmEgZmEtYmFua1wiLCBcIm9yZGVyXCI6IDZ9LCB7XCJ0aXRsZVwiOiBcIlx1OGY2ZVx1NjRhZFx1NTZmZVwiLCBcInVybFwiOiBcIi94YWRtaW4vc2Nlbmljc3BvdHMvZ2FsbGVyeS9cIiwgXCJpY29uXCI6IFwiZmEgZmEtcGljdHVyZS1vXCIsIFwib3JkZXJcIjogN30sIHtcInRpdGxlXCI6IFwiXHU2NWM1XHU2ZTM4XHU2ZDNiXHU1MmE4XCIsIFwidXJsXCI6IFwiL3hhZG1pbi9zY2VuaWNzcG90cy9hY3RpdmUvXCIsIFwiaWNvblwiOiBcImZhIGZhLWNsaXBib2FyZFwiLCBcIm9yZGVyXCI6IDh9XSwgXCJmaXJzdF9pY29uXCI6IFwiZmEgZmEtYmFua1wiLCBcImZpcnN0X3VybFwiOiBcIi94YWRtaW4vc2Nlbmljc3BvdHMvc3BvdHMvXCJ9LCB7XCJ0aXRsZVwiOiBcIlx1N2JhMVx1NzQwNlwiLCBcIm1lbnVzXCI6IFt7XCJ0aXRsZVwiOiBcIlx1NjVlNVx1NWZkN1x1OGJiMFx1NWY1NVwiLCBcInVybFwiOiBcIi94YWRtaW4veGFkbWluL2xvZy9cIiwgXCJpY29uXCI6IFwiZmEgZmEtY29nXCIsIFwib3JkZXJcIjogMTN9XSwgXCJmaXJzdF9pY29uXCI6IFwiZmEgZmEtY29nXCIsIFwiZmlyc3RfdXJsXCI6IFwiL3hhZG1pbi94YWRtaW4vbG9nL1wifSwge1widGl0bGVcIjogXCJcdThiYTRcdThiYzFcdTU0OGNcdTYzODhcdTY3NDNcIiwgXCJtZW51c1wiOiBbe1widGl0bGVcIjogXCJcdTdlYzRcIiwgXCJ1cmxcIjogXCIveGFkbWluL2F1dGgvZ3JvdXAvXCIsIFwiaWNvblwiOiBcImZhIGZhLWdyb3VwXCIsIFwib3JkZXJcIjogMn0sIHtcInRpdGxlXCI6IFwiXHU2NzQzXHU5NjUwXCIsIFwidXJsXCI6IFwiL3hhZG1pbi9hdXRoL3Blcm1pc3Npb24vXCIsIFwiaWNvblwiOiBcImZhIGZhLWxvY2tcIiwgXCJvcmRlclwiOiA0fV0sIFwiZmlyc3RfaWNvblwiOiBcImZhIGZhLWdyb3VwXCIsIFwiZmlyc3RfdXJsXCI6IFwiL3hhZG1pbi9hdXRoL2dyb3VwL1wifV0ifQ==', '2018-12-05 14:37:41.626802');
INSERT INTO `django_session` VALUES ('ev7jwhjt20x2hsa2ma1o0xs1hu0qngow', 'YThkOWE0M2ZjNmZiODkwOTg3MmVmNjQwNzNlMTVlOGU5ZDM3OWE2NTp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzBhYmFmYWY1ZjZhZDY3MTAzODE0N2U2MjllZmRjMzgyM2Q5N2FkYiJ9', '2018-10-26 14:32:18.516868');
INSERT INTO `django_session` VALUES ('s9333wadrnmd1l5q93m71jd6hghx4prm', 'MTZkYTdiZjVlYmY1MTJlMTdjYzAyYzJmNDc5YjEzNjMzNjkxZDQ3Nzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1NTIzMTZkYzYwOGUzZGY4MmQ1ZDUwYTc2ZWE3NWUyOGZlZmU4YjEwIiwiX3Nlc3Npb25fZXhwaXJ5IjowfQ==', '2018-10-26 16:39:26.919838');
-- ----------------------------
-- Table structure for news_news
-- ----------------------------
DROP TABLE IF EXISTS `news_news`;
CREATE TABLE `news_news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) NOT NULL,
`content` longtext NOT NULL,
`image` varchar(100) NOT NULL,
`checknum` int(11) NOT NULL,
`classification` varchar(10) NOT NULL,
`add_times` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of news_news
-- ----------------------------
INSERT INTO `news_news` VALUES ('1', '河南90后运动员摘得亚残会金牌', '24岁的爱笑的90后姑娘,又拿金牌了。10月9日中午,从印度尼西亚雅加达传来消息,郑州大学体育学院的姑娘李露,拿到了T45/46/47第三届亚洲残疾人运动会田径200米冠军。\r\n\r\n 照片里,李露身着比赛服,披着鲜艳的五星国旗,笑得格外灿烂。全国残运会冠军、里约残奥会冠军、残疾人世锦赛冠军、亚洲残运会冠军……李露用努力与实力,终于拿到了属于自己的“大满贯”。', 'news/2018/10/TVgz-hktxqai3239835.jpg', '5', 'hot', '2018-10-10 10:40:00.000000');
INSERT INTO `news_news` VALUES ('2', '洛阳市将沿瀍河建隋唐大运河文化公园', '近日,市城乡规划委员会2018年第十次会议召开,审议并原则通过了《洛阳隋唐大运河文化公园景观规划设计方案》《洛宁县城乡总体规划(2017—2035)》《洛阳轨道交通控制中心方案》《隆安东方明珠三期建筑单体设计方案》等。洛阳日报今日继续对相关规划方案进行解读。敬请关注。', 'news/2018/10/00300203755_5fdd830f.jpg', '1', 'life', '2018-10-10 11:05:00.000000');
INSERT INTO `news_news` VALUES ('3', '河洛典故:前倨后恭', '“前倨后恭”,起先傲慢,然后恭敬,形容对人的态度前后截然不同。\r\n\r\n 这个典故的主人公,是苏秦和他的嫂子。\r\n\r\n 苏秦,洛阳人,战国时期著名的纵横家、外交家、军事家。\r\n\r\n 苏秦年轻时拜鬼谷子为师,学习纵横术。学成后,他到秦国劝秦王“连横”,但建议未被采纳。最后,盘缠用完了,他只好穿着草鞋狼狈离开秦国,回到故乡。\r\n\r\n “归至家,妻不下纴,嫂不为炊,父母不与言。”苏秦回到老家,妻子不下织布机,嫂子不给他做饭,父母不和他说话。\r\n\r\n 受此冷遇,苏秦更加发奋读书。读书读困了,他就拿一把锥子,用力刺自己的大腿,以此自省。\r\n\r\n 苏秦主攻姜太公的兵书,一年后,他将此书研究透了,于是再次出山,游说国君。\r\n\r\n 这次他游说的主题是“合纵”。他先来到赵国,侃侃而谈,有理有据,说得赵王心花怒放,连连称好,于是封他为宰相,赐其兵车一百辆、锦绣一千匹、白璧一百对、黄金一万镒(yì,古代重量单位,一镒合二十两,一说二十四两),让他带着这些东西去游说其他国家,共同抗秦。\r\n\r\n 苏秦成功说动齐、楚、燕、魏、韩五国,加上赵国,六国“合纵”,他被推为“纵约长”,六国都聘他为宰相。\r\n\r\n 苏秦说服楚王后,回赵国向赵王汇报,途中经过洛阳,周显王听说了,吓得不得了,赶紧派人清扫道路,在洛阳城外迎接他。他的家人都跪在地上,不敢抬起头来看他。\r\n\r\n 《史记》中记载:“苏秦笑谓其嫂曰:‘何前倨而后恭也?’”\r\n\r\n 苏秦故意让嫂子难堪,笑着问她:“你为什么以前那么傲慢,现在却这么恭敬?”\r\n\r\n 他的嫂子回答:“因为你现在官高钱多。”', 'news/2018/10/ac4bd11373f0820221facfa542fbfbedab641b3b.jpg', '11', 'culture', '2018-10-10 11:07:00.000000');
INSERT INTO `news_news` VALUES ('4', '洛阳:描绘“诗和远方”新画卷', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\">金秋的河洛大地,风光旖旎,美不胜收。刚刚落幕的2018洛阳河洛文化旅游节好戏连台,吸引了八方来客。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 进入“十三五”以来,我市用抓文化的理念抓旅游、用抓旅游的方法抓文化,着力加快文旅融合步伐,积极发展智慧旅游、全域旅游,为节会活动注入了新活力,推动了文化旅游产业的转型升级和提质增效。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"532\" src=\"http://news.lyd.com.cn/pic/003/002/039/00300203976_e0d829ed.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">洛邑古城文峰塔</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 文旅融合</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 助推节会创新提升</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> “不出洛阳就能逛国际展会,还能观赏原汁原味的非遗展示,挑选各式各样的特色商品,这样的博览会,多多益善!”今年中秋假期,精品荟萃的首届中原文化旅游产业博览会让前来观展的市民和游客纷纷称赞、流连忘返。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 这场以“创新、融合、共赢、发展”为主题的文化旅游盛会,是今年河洛文化旅游节的一大亮点。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 据悉,首届中原文化旅游产业博览会设置13个主题展区和服务功能区,展览面积达3万平方米,来自国内外的1500多家文化旅游企业参展,让广大市民和游客共享异彩纷呈的文化旅游盛宴;来自俄罗斯、法国、美国等30多个国家和地区的100家国际采购商与中原地区100余家文化旅游企业进行了洽谈对接,助推中原文旅融合、产业转型;来自国内文化旅游领域的行业专家、高校学者齐聚一堂,围绕洛阳文化旅游产业融合发展建言献策……</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 文化是旅游的灵魂,旅游是文化的载体。作为文旅融合的重头戏,本届博览会是我市积极顺应文化旅游融合发展新趋势、推动文化旅游产业转型升级、加快国际文化旅游名城建设的一次全新布局。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 2004年,我市举办首届河洛文化旅游节,目的在于以十一黄金周为中心拉动洛阳秋季旅游市场。近年,河洛文化旅游节影响日益扩大,贴上“河洛文化”这个标签,瞄准“文化旅游”这个市场,正努力打造成既有文化特色又有旅游优势的品牌盛会。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 同时,首届中原文化旅游产业博览会打破路径依赖、拓宽运作视野,首次与河洛文化旅游节两会合一、相互促进,在更深层次、更广领域、更高起点推动文化和旅游深度融合。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 根在河洛——客家文化学术交流会、“丝路起点·异域风情”文艺巡演、百强旅行商(洛阳)采购大会……纵览今年河洛文化旅游节的13项活动安排,基本上都是为“突出文旅融合”而谋,内容与形式不断创新的河洛文化旅游节,正努力“让诗和远方走在一起”。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"399\" src=\"http://news.lyd.com.cn/pic/003/002/039/00300203975_41e28442.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">皮影表演</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">以节惠民</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 群众共享发展成果</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 刚刚过去的十一黄金周,我市游客接待量再创新高。短短七天,前来观光度假的游客超过628万人次。在洛阳,游客不仅能欣赏到美景,还能感受到惠民政策给群众带来的获得感和幸福感。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 今年河洛文化旅游节期间,我市延续了以往的“旅游年票正常使用、文化活动免费看”等惠民措施,在坚持“以节惠民”中,为人们带来一场异彩纷呈的文化旅游盛宴。作为一大亮点,首届中原文化旅游产业博览会不收取任何门票,免费进行非遗等各类文化展演的惠民举措,把博览会变为一场别开生面的文化惠民盛宴。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 依托河洛文化旅游节与文化旅游产业博览会的“节会新组合”,洛阳在与民共享中“分好蛋糕”,写实写深惠民“大文章”。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 文化旅游的盛会,人民群众的节日。近年,我市“以节惠民”重磅举措不断,从去年牡丹文化节推出“旅游年票不受限、部分公园不收费、社会车辆不禁行、餐饮住宿控涨幅”等四项惠民举措,到去年河洛文化旅游节延展惠民范围、丰富惠民内容,扩大为“景区免费或半价,精品剧目预约领票免费看,环城高速免费通行”等惠民大礼包,再到今年牡丹文化节的“5+1”惠民政策,洛阳“以节惠民”不断丰富内涵和刷新样式,直接带动了文化旅游人气的“爆棚”,在市民和游客中留下了好口碑。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 在业内人士看来,以节惠民的“洛阳模式”,体现了共享发展理念和以人为本的执政理念,让本地群众享受到了节会的红利,有利于打破“门票经济”壁垒,推动文化旅游业迈向高质量发展,把节会带来的巨量旅游人次转化成更多效益,使节会真正成为人民的节日、百姓的盛会。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 让群众感到满意的不仅是这些惠民政策。进入“十三五”以来,围绕牡丹文化节和河洛文化旅游节两大节会,我市坚持“以节促建、以节促管、以节推介、利民惠民、全面提升”的办节宗旨,使两大节会成为弘扬优秀文化、促进多产融合、建设美丽城市、幸福广大群众的重要纽带和平台,也推进了各项工作全面提升。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"579\" src=\"http://news.lyd.com.cn/pic/003/002/039/00300203973_ddf8ac3a.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">参观洛阳博物馆</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">以节为媒</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 加快产业转型升级</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 走进新时代,人民群众的美好生活需求不断增长,已从“到此一游”转变为“深度体验”。要让静态的历史文化在旅游产品中活化,满足游客的多元化需求,加快文化旅游产业转型升级是发力的关键。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 今年的政府工作报告明确提出,积极发展智慧旅游、全域旅游,实现文化旅游产业由“老三篇”向“新三篇”、“门票经济”向“产业经济”、“旅游城市”向“城市旅游”的转型升级。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 市旅发委相关负责人表示,围绕“建设国际文化旅游名城”这一目标,我市将依托牡丹文化节、河洛文化旅游节等节会,充分发挥洛阳文化旅游资源优势,着力推动文化旅游产业由“老三篇”向“新三篇”、“门票经济”向“产业经济”、“旅游城市”向“城市旅游”转型发展,打造洛阳文化旅游“升级版”。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 文化旅游产业的竞争也是品牌的竞争。我市将进一步提升牡丹文化节、河洛文化旅游节的国际知名度和影响力,深度开拓海外客源市场,积极引客入洛,把特色鲜明的文化旅游产品推向世界,不断提升文化旅游产业的核心竞争力,擦亮“古今辉映、诗和远方”的城市品牌。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 文化旅游产品有特色才能吸引游客。我市将深入挖掘洛阳特色文化旅游资源,把历史活化为故事、把资源转化为优势,推动文化旅游产业与农业、工业、科技、体育、创意等深度融合,推出更具特色的节会活动,培育更丰富的文化旅游新业态,打造更多精品文化旅游项目。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 借力智慧旅游,将洛阳厚重的历史文化讲好、讲活。我市将着力推进智慧景区、智慧旅行社、智慧酒店等建设,积极推进全市景区、酒店、文化旅游企业建设电子商务平台,开展网上预订、在线支付等电子商务业务,加快建设集城市形象展示、智慧旅游体验、游客咨询投诉服务、旅游产品预订、旅游产业监测、旅游应急指挥、旅游票务服务等于一体的智慧旅游服务中心,以智慧旅游建设推进文化旅游产业转型升级。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 我市还将按照国际旅游目的地标准,持续推进旅游标准化建设,不断完善各城市区、各县(市)的旅游集散中心、旅游咨询网点、旅游交通标志、旅游停车场、自驾车营地、旅游公厕、无障碍设施等旅游基础设施,提升旅游公共服务水平,助推全域旅游发展。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 把文化基因注入旅游资源,为旅游供给丰富文化内涵,着力加快文旅融合步伐,推动文化旅游产业迈向高质量发展。如今的洛阳,正描绘一幅“诗和远方”新画卷。(洛阳日报记者 戚帅华 图片由记者 曾宪平 鲁博 刘冰 摄)</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"392\" src=\"http://news.lyd.com.cn/pic/003/002/039/00300203977_93ecf7e7.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">洛浦风光</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 连线基层</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> “以节惠民”效应明显</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 今年十一黄金周,家住老城区的孙磊和朋友一起去龙门石窟、关林等景区游玩,他们是刷旅游年票进入景区的。“在没有取消旅游年票使用限制之前,只有在外地亲戚朋友来洛阳时,才会去这些景区逛一逛。现在拿着旅游年票逛景区不用再买票,在洛阳游玩变得更自在了。”说起旅游年票惠民政策,孙磊不住地称赞。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 今年河洛文化旅游节期间,洛阳旅游年票仍可正常使用,旅游年票所涵盖的景区都设有绿色通道,越来越多的居民持旅游年票赏花观景,惠民政策让市民得到了实实在在的实惠。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 声音</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 洛阳文化旅游资源丰富,发展文化旅游有着得天独厚的优势。近年,洛阳的文化旅游品牌知名度不断提高,但在国际上的宣传和推广还不够,应持续加强国际化视野“营销”洛阳,进一步提升洛阳的国际知名度和影响力,叫响洛阳文化旅游品牌。</p><p><br/></p>', 'news/2018/10/00300203976_e0d829ed.jpg', '4', 'culture', '2018-10-11 10:41:00.000000');
INSERT INTO `news_news` VALUES ('5', '30多个国家300余位知名摄影家用镜头推介洛阳', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\">作为今年河洛文化旅游节重大活动之一,第二十六届亚洲影艺联盟大会暨“世界摄影家看洛阳”摄影采风活动于近日圆满落幕。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 此次活动由河南省摄影家协会、亚洲影艺联盟、丝路影像国际联盟、洛阳市摄影家协会共同主办,以“新时代、新丝路、新影像”为主题。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 作为此次活动主办方之一的亚洲影艺联盟,由摄影大师郎静山联合亚洲多个国家(地区)的主要摄影团体共同创立,是经国际影艺联盟(FIAP)认可的世界四大摄影组织之一。</p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"600\" src=\"http://news.lyd.com.cn/pic/003/002/035/00300203533_2bbd1d33.jpg\" width=\"450\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">游龙门 张翠玲 摄</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 在此次活动期间,来自日本、缅甸、斯里兰卡、泰国、印度尼西亚、印度、新加坡、马来西亚等30多个国家及中国台湾、香港、澳门的300余位知名摄影家,走进龙门石窟、白马寺、魏家坡、三彩小镇、爱和小镇等景点。洛阳厚重的历史文化、时尚的城市风貌、美丽的自然风光和独特的风俗民情,给摄影家们留下深刻印象。他们纷纷表示,要再到洛阳一游。一名来自缅甸的摄影家说,古都洛阳有看不完的景色和拍不完的摄影题材。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"600\" src=\"http://news.lyd.com.cn/pic/003/002/035/00300203532_58dcd1b9.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: center;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">看过来 韩建斌 摄</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 在此次活动期间,还举办了“花与世界——国际摄影大展”“丝路影像——世界摄影师获奖作品展”“丝路传奇——四国摄影交流展”“世界的眼睛——‘亚洲影艺联盟’‘丝路影像国际联盟’成员组织交流展”四场大型摄影展览,并出版同名画册。</p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"600\" src=\"http://news.lyd.com.cn/pic/003/002/035/00300203531_d3520204.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: center;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">爱和小镇 关建华 摄</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 此次活动的一大亮点是在洛宁县三彩(国际)陶艺村建立了国际摄影创作基地。该创作基地落户我市,将吸引更多来自世界各地的知名摄影家走进洛阳,用细腻的光影向世界推介古都洛阳,通过艺术扶贫、摄影扶贫,进一步助推洛阳文化旅游产业发展,提升洛阳的知名度。</p><p><br/></p>', 'news/2018/10/00300203530_d346d26b.jpg', '2', 'hot', '2018-10-11 10:59:00.000000');
INSERT INTO `news_news` VALUES ('6', '首届中原文化旅游产业博览会圆满落幕', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\">昨日,首届中原文化旅游产业博览会在洛阳会展中心圆满落幕。本届博览会共接待观展市民和游客3.8万人次,这场以“创新、融合、共赢、发展”为主题的文化旅游盛会,在3天的时间里可谓盛况空前亮点纷呈。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"><br/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"533\" src=\"http://news.lyd.com.cn/pic/003/002/007/00300200781_d74fd6de.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">搭建“一带一路”交流合作平台</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">-文旅融合捧盛宴</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 首届中原文化旅游产业博览会共设出彩中原馆、“一带一路”国际馆、印象洛阳馆3个展馆,展览面积达3万平方米,来自国内外的1500多家文化旅游企业参展,展览面积大,参展企业多。博览会设置有序馆、出彩中原展区、省辖市精品展区、陶瓷源陶瓷大师精品展区、博物馆之都(文博)展区、书香满城展区、非遗展区、全域旅游展区、智慧文旅展区、工美文创展区、休闲生活展区、中原文创旅游产品大赛暨“老家礼物”评选区、“一带一路”(国际)展区等13个主题展区和服务功能区,内容丰富、精品荟萃,让广大市民和游客共享异彩纷呈的文化旅游盛宴。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">- “国际采购”成果丰</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 在本届博览会期间举办的“一带一路”国际采购洽谈会上,来自西班牙、意大利、俄罗斯、法国、美国、澳大利亚、埃及、土耳其等30多个国家和地区的100家国际采购商与中原地区100余家文化旅游企业进行了洽谈对接,最终达成合作意向36个,总金额达4.3亿美元,为中原地区深化同世界各国交流合作搭建了重要平台。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 本届博览会期间,还以“文旅新时代、产融新思路”为主题,举办了“一带一路”文化旅游产业论坛。论坛上,来自国内文化旅游领域的行业专家、高校学者齐聚一堂,围绕洛阳文化旅游产业融合发展、文化旅游品牌打造等话题建言献策,助推我市文化旅游产业发展。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">-会场展示“国际范儿”</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 巴基斯坦的玉石、印度的铜雕、西班牙的葡萄酒……本届博览会设置有“一带一路”(国际)展区,吸引了来自西班牙、意大利、法国、德国、俄罗斯、加拿大、澳大利亚、韩国、泰国、马来西亚、印度、日本、加纳、肯尼亚等30多个国家和地区的企业参展,参展商品包括陶瓷工艺品、木制工艺品、玉石工艺品及燕窝、咖啡、葡萄酒等,国际化、多元化的元素更丰富,让市民在家门口就能观赏和购买异域特色商品。</p><p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"524\" src=\"http://news.lyd.com.cn/pic/003/002/007/00300200782_e17693d3.jpg\" width=\"800\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: center;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">开创文旅融合新时代</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> -文化精品“讲故事”</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 本届博览会注重展示文化精品,其中,博物馆之都(文博)展区集中展示我市“博物馆之都”建设亮点,非遗展区展示了6个国家级、11个省级非物质文化遗产代表性项目。除了我市的洛阳宫灯、孟津剪纸、洛宁竹编等,还有灵宝皮影戏、淮阳泥泥狗、开封汴绣等外地的非遗项目,让观众大饱眼福。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> -互动体验魅力足</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 本届博览会上,一些高科技企业带来了智能语音交互机器人、VR(虚拟现实)和AR(增强现实)等体验设备,参观者带上VR设备,就可以在一些景区虚拟漫游,通过智慧化手段增强旅游产品与游客的互动性。同时,我市文化旅游产业在智慧化体验、智慧化管理、智慧化营销等方面的亮点也得到展示,展现了科技与文化旅游产业融合的魅力。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">-文创产品促升级</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 本届博览会期间举办了中原文创旅游产品大赛暨“老家礼物”评选活动,吸引了来自河南、安徽、山东、陕西、山西等地的200多家企业参展,参展作品500多件,涉及陶艺、瓷器、刺绣、竹编、剪纸等。其中,我市多件参展商品获奖。大赛旨在引导本地企业创新开发理念,推出更多特色鲜明、内涵丰富、便捷实用的文创旅游产品,为全市文创旅游产品创新升级带来更多动力。</p><p><br/></p>', 'news/2018/10/00300200783_0cabb0bc.jpg', '1', 'active', '2018-10-11 11:01:00.000000');
INSERT INTO `news_news` VALUES ('7', '洛阳地铁1号线又有两个隧洞单线贯通', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\">昨日,我市地铁建设又传来好消息——地铁1号线应天门站至丽景门站区间、史家湾站至杨湾站区间实现单线洞通!至此,地铁1号线全线已实现三条隧道贯通。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"><img src=\"http://news.lyd.com.cn/pic/003/002/019/00300201907_785dd758.jpg\"/></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">地铁1号线应天门站至丽景门站区间南线贯通</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 此次洞通的为地铁1号线应天门站至丽景门站区间南线,全长780米,服役的盾构机是“牡丹13号”,它于5月29日从应天门站始发,9月27日该条隧道贯通。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 这台盾构机直径6.47米,巨型娇艳的状元红牡丹在盾构机刀盘上“绽放”,它还开过“粉丝见面会”,不少晚报的幸运读者还到现场见识过它的高颜值。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 当记者再次看到它时,它斑驳的刀盘上满是黏土、砂石。该区间盾构负责人张雄介绍,同样彩绘的盾构机在郑州、西安等地施工完毕时,都还能看到原貌,但我市地质层结构复杂,该作业区域卵石含量及砂层块石含量高,对刀盘的磨损较为严重,导致“牡丹13号”的容颜受损严重,最严重的部位刀片磨损了2.5厘米左右,好的地方刀片也被磨损0.6厘米。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> “接下来,‘牡丹13号’将被送回厂里进行修整,更换部件,然后重新上岗。”张雄说,预计10月20日前后它将从地铁1号线应天门站出发,向周王城广场站掘进。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">史家湾站至杨湾站:一口气“行进”1.6公里不换刀,全国罕见</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 此次洞通的还有地铁1号线史家湾站至杨湾站区间北线,该段长1621米,服役的盾构机为“牡丹2号”,它于3月31日从史家湾站始发,9月28日该条隧道贯通。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 该区间是我市地铁1号线正线施工最长的区间,也是地质结构最复杂的区间,整个施工区处于砂卵石混合板结层,且地下水丰沛,施工难度大。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> “在这样的地质条件下,通常盾构机每掘进500米左右就需要更换一次刀片。”该区间段项目负责人王小刚说,更换一次刀片通常会延误一个半月的工期,且盾构停滞段容易出现地面沉降,不但给施工人员带来安全隐患,也易引发地面道路沉陷,影响市民出行安全。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 为避免中途更换刀片,该区间承建单位定制了盾构机,将液压驱动改为电机驱动,使得盾构机动力更足、提速更快,避免了刀片卡死的情况。此外刀盘、刀片均进行了改良,增加了刀片数量和刀盘的耐磨性。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 承建单位还专门从成都等地调来6名有相同地质条件施工工作经验的司机,制定了严密的渣土改良方法,准确控制各项技术参数,使盾构机花最少的损耗行进最长的距离。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 最终,“牡丹2号”完成了掘进6个月、1.6公里不更换刀片的壮举,这在全国同等地质条件施工中都属罕见。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">预计10月底,地铁1号线将有6条隧道实现贯通</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 市轨道交通有限公司工程一部副部长康跃进介绍,截至目前,洛阳地铁1号线18个车站已全部进入主体结构施工,并已累计下井15台盾构机,累计掘进8000多米。已实现贯通的3条隧道分别是塔湾站至史家湾站区间南线、应天门站至丽景门站区间南线、史家湾站至杨湾站区间北线。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 根据施工计划,预计10月底,史家湾站至杨湾站区间南线、应天门站至丽景门站区间北线、塔湾站至启明南路站区间北线也将贯通。届时,地铁1号线将有6条隧道实现贯通,其中史家湾站至杨湾站、应天门站至丽景门站均为双洞贯通。</p><p><br/></p>', 'news/2018/10/00300201907_785dd758.jpg', '2', 'hot', '2018-10-11 11:02:00.000000');
INSERT INTO `news_news` VALUES ('8', '“双创”英才 洛城探秘', '<p><span style=\"margin: 0px; padding: 0px; border: 0px;\"><img border=\"0\" height=\"396\" src=\"http://news.lyd.com.cn/pic/003/002/044/00300204463_22935061.jpg\" width=\"600\" style=\"margin: 0px auto; padding: 0px; border: 0px; max-width: 300px; height: auto; display: block;\"/></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: center; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: 楷体;\">洛阳北玻研制的4.5米世界最大弧长弯钢玻璃</span></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 13日上午,在洛参加第七届中国创新创业大赛先进制造行业总决赛的先进制造参赛企业代表,参观了东方红农耕博物馆、中国一拖、洛阳北玻、金鹭公司、洛阳博物馆,感悟洛阳当地先进制造优秀企业的创新精神,感受河洛大地积极创新创业的氛围。这是参赛企业代表在中国一拖生产线,感受“共和国制造”及背后的创新精神。</p><p><br/></p>', 'news/2018/10/00300204462_64b4dfa2.jpg', '3', 'culture', '2018-10-15 09:57:00.000000');
INSERT INTO `news_news` VALUES ('9', '洛阳牡丹', '<p><a href=\"http://shop.bytravel.cn/produce/738B9EBB5B50526A5200/\" style=\"color: rgb(0, 0, 153); text-decoration-line: none;\"><img src=\"http://h2.bytravel.cn/shop/head/120.gif\" hspace=\"2\" vspace=\"2\" class=\"hpic\" alt=\"洛阳牡丹\" style=\"border: 1px solid rgb(170, 170, 170);\"/></a></p><p></p><p>洛阳牡丹为地理标志保护产品。</p><p> 洛阳是著名的牡丹之乡,有许多吟咏赞美牡丹的诗句留传于世,唐代诗人刘禹锡就有“唯有牡丹真国色,花开时节动帝京”的诗句,到了宋代诗人李正封的“国色朝酣酒,天香染夜衣”一句更使牡丹获得了“国色天香”的称号。 <br/></p><p style=\"line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px;\"><br/></p><p style=\"line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px;\"> 洛阳牡丹千姿百态,根据颜色、花形、产地、种植等不同特点,可以分成90多个品种,其中以“姚黄”、“魏紫”最是有名。 <br/></p><p style=\"line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px;\"> 春日赏牡丹的习俗由来以久,最早始于唐代,赏花时间最长可达20多天。从1982年开始,洛阳市把每年的4月15日至25日定为“牡丹花会”,在赏花的同时还举办丰富多彩的灯展、诗会、影展、书画展等文化娱乐活动,每年花会期间,中外游客纷至沓来,络绎不绝,盛况空前。</p><p><br/></p>', 'news/2018/10/mudan.jpg', '1', 'specialty', '2018-10-15 10:25:00.000000');
INSERT INTO `news_news` VALUES ('10', '孟津黄河鲤鱼', '<p><span style=\"font-family: 宋体; font-size: 14px; background-color: rgb(255, 255, 255);\"> “黄河三尺鲤,本在</span><a href=\"http://shop.bytravel.cn/produce/index994.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153); font-family: 宋体; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\">孟津</a><span style=\"font-family: 宋体; font-size: 14px; background-color: rgb(255, 255, 255);\">居”。这里所产鲤鱼尾巴浅红、肚皮鲜白,肉质细嫩,味道鲜美,无泥腥味,营养丰富,滋补健身,为宴席佳肴。</span></p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"><br/></p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 孟津<a href=\"http://shop.bytravel.cn/produce/9EC46CB39CA49C7C/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">黄河鲤鱼</a>是<a href=\"http://shop.bytravel.cn/produce/index124.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">河南</a>省<a href=\"http://shop.bytravel.cn/produce/index221.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">洛阳</a>市孟津县的特产。孟津以东黄河河道开始放宽,河床宽而浅,含沙量少,透明度高,水中富含鱼类生长所需的各种营养盐类,此处的鲤鱼因而味道鲜美。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 唐朝大诗人李白曾赋诗:“黄河三尺鲤,本在孟津居,点额不成龙,归来伴凡鱼。”这恐怕是孟津红烧黄河鲤鱼最好的广告词。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 孟津县会盟镇调优水产养殖品种结构,突出特色产业。大力发展黄河鲤鱼养殖生产,加快黄河鲤鱼产业的发展,打造洛阳最大的万亩无公害黄河鲤鱼养殖基地,计划年产3万吨、实现产值4亿元。</p><p><br/></p>', 'news/2018/10/liyu.jpg', '0', 'specialty', '2018-10-15 10:28:00.000000');
INSERT INTO `news_news` VALUES ('11', '洛阳唐三彩', '<p><a href=\"http://shop.bytravel.cn/produce/index221.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153); font-family: 宋体; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\">洛阳</a><a href=\"http://shop.bytravel.cn/produce/55104E095F69/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153); font-family: 宋体; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\">唐三彩</a><span style=\"font-family: 宋体; font-size: 14px; background-color: rgb(255, 255, 255);\">品种繁多,内容丰富,囊括了当时社会生活的各个方面。唐三彩主要用作陪葬明器,有俑像类和生活器皿类。俑像类主要有人物俑和动物俑。人物俑题材广泛,主要有妇女、文吏俑、武士俑等。唐三彩女俑取材于唐代社会活生生的女性人物,有立俑、坐俑、乐舞俑、乐唱俑、骑马俑、对镜梳妆俑等,着重表现唐代妇女姿态自由、面容丰腴、肌肤细腻、双手纤巧、两足丰柔的形象。文吏俑是唐朝社会文臣的形象,在社会上有较高的社会地位和优裕的生活条件。但“伴君如伴虎”,所以这些人物文静端庄、思绪深沉、气派不凡,虽说衣帽齐整、峨冠博带,仍不能掩饰内心的惶恐。武士俑,是唐王朝武装力量的缩影,多为英俊潇洒的年轻战士,有的站立,有的骑马,拉弓射箭。唐三彩器胡人、乐舞、杂技俑中从另一个侧面表现出唐人生活的多样化,丰富化,可谓千姿百态,色彩纷呈。再现了唐代盛世时中原与边疆各族人民</span><a href=\"http://shop.bytravel.cn/produce/index2998.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153); font-family: 宋体; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\">友好</a><span style=\"font-family: 宋体; font-size: 14px; background-color: rgb(255, 255, 255);\">相处、中外频繁交往的情景。</span></p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"><br/></p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 洛阳出土的唐三彩已有300多个品种,生动地反映出当时繁荣的社会面貌和精湛的釉陶工艺。洛阳龙门<a href=\"http://beijing.bytravel.cn/Scenery/xiangshan/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">香山</a>出土的三彩高颈瓶,是仿照佛教法器中的净水瓶烧制的,而龙首杯、凤首壶则是仿西亚流行的兽首杯、扁壶制成的。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 从近年出土的三彩器物分析,盛唐是唐三彩制作的极盛时期,品种丰富,做工精美,产量巨大;天宝以后数量逐渐减少;安史之乱以后,其制作进入尾声,逐渐衰落。唐代三彩釉工艺对宋三彩和清三彩都有影响,在<a href=\"http://japan.bytravel.cn/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">日本</a>曾仿制成所谓“<a href=\"http://japan.bytravel.cn/Scenery/Nara/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">奈良</a>三彩”,<a href=\"http://as.bytravel.cn/v/26/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">朝鲜</a>半岛曾仿制成所谓“<a href=\"http://shop.bytravel.cn/produce/index958.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">新罗</a>三彩”。在今<a href=\"http://as.bytravel.cn/v/68/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">乌兹别克</a>斯坦撒马尔罕出土有三彩碗,今<a href=\"http://as.bytravel.cn/v/72/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">伊拉克</a>、<a href=\"http://as.bytravel.cn/v/76/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">伊朗</a>、<a href=\"http://as.bytravel.cn/v/58/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">叙利亚</a>、<a href=\"http://aftour.bytravel.cn/v/3/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">埃及</a>和<a href=\"http://aftour.bytravel.cn/v/16/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">苏丹</a>境内都发现有洛阳唐三彩,充分说明了当地人对唐三彩的喜爱,这也是唐代洛阳对外文化交流、通商贸易的重要物证。1976年,在洛阳附近<a href=\"http://shop.bytravel.cn/produce/index698.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">巩义</a>市(唐时为洛州巩县)的小黄冶、<a href=\"http://shop.bytravel.cn/produce/59279EC4/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">大黄</a>冶发现三彩窑址、作坊,经考证,是当时洛阳唐三彩的重要产地。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 唐三彩的制作工艺十分复杂。除少数红陶胎为普通陶土烧制外,多数采用比较纯净的白色高岭土烧制。这种土具有很强的可塑性,晾干时不会开裂。唐三彩的制作工艺较为复杂,先将高岭土舂捣、洗滤、制胎,再将制好的坯胎放在窑内烧至1100℃左右,然后取出挂彩施釉,再入窑内以900℃左右的氧化焰进行第二次焙烧,就可以生产出绚丽多彩的各种器物。三彩釉质的主要成分是硅酸铝,呈色剂则为种类不同的金属氧化物,如浅黄为铁或锑、褐黄为铁、绿为铜、蓝为铜或钴、紫为锰。用得最多的三种颜色是黄、绿、白,还有蓝、赭、紫、黑等。釉中的铅质助溶剂使釉汁在烧制品上流淌,形成丰富瑰丽的变化,所谓三彩实则釉色变化多端,并非只有三种颜色。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 唐三彩是中国古代<a href=\"http://shop.bytravel.cn/produce/967674F7/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">陶瓷</a>艺术宝库中一朵绚丽夺目的奇葩,是中国唐代工艺美术的精华之作,它吸纳了中国绘画、<a href=\"http://usa.bytravel.cn/jd/Sculpture/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">雕塑</a>等工艺美术的优点,采用印花、堆贴、刻画等形式的装饰图案,造型浑厚丰满,工整细腻,线条简朴、流畅,具有独特的艺术风格和鲜明的民族特色。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 自清光绪年间在洛阳发现首批唐三彩以来,中外古董商争相来洛阳重金购买。为满足当时文物界对唐三彩的需求,洛阳一带出现了<a href=\"http://shop.bytravel.cn/produce/4EFF55104E095F69/\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">仿唐三彩</a>的作坊,开始了仿唐三彩的制作,但仿品粗糙,效果不佳。新中国成立后,在中央领导的关注下,设立专门机构研究唐三彩的制作工艺,使“洛阳唐三彩”的制作工艺和技术水平达到了一个新的高度。目前,洛阳生产唐三彩的工厂多达数十家,尤以洛阳<a href=\"http://shop.bytravel.cn/produce2/7F8E672F967674F7.html\" target=\"_blank\" class=\"blue\" style=\"color: rgb(0, 0, 153);\">美术陶瓷</a>厂生产的“九都牌”唐三彩最为有名。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 洛阳唐三彩曾作为国家珍贵礼品,赠送给30多个国家的元首和政府首脑。目前,唐三彩仍然是古都洛阳传统的出口商品,远销世界五十多个国家和地区,深受世界各国人民的青睐。</p><p><br/></p>', 'news/2018/10/tangsancai.jpg', '0', 'specialty', '2018-10-15 10:32:00.000000');
INSERT INTO `news_news` VALUES ('12', '不翻汤', '<p><span style=\"color: rgb(51, 51, 51); font-family: arial; text-align: justify; background-color: rgb(255, 255, 255);\">洛阳不翻汤是一道色香味俱全的地方传统名吃。味道纯正、酸辣利口、油而不腻。已有120多年的历史。用小勺舀一些稀绿豆面糊往平底锅里一倒,即成一张类似春卷的薄片,不用翻个就熟,所以就叫"不翻"。再把两张晶莹翠绿的"不翻"叠着放在碗里,舀些滚烫的猪骨头汤浇在上面,放上些粉条、木耳等,还放些醋、胡椒粉,这样一碗不翻汤就做好了。</span></p>', 'news/2018/10/bufantang.jpg', '4', 'food', '2018-10-15 10:34:00.000000');
INSERT INTO `news_news` VALUES ('13', '双11,洛阳人花了8亿多元 收发快件1390万件', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> “双11”买的东西,您都收到了吗?</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 阿里巴巴数据显示,今年“双11”,洛阳人贡献了8.236亿元,比去年多花了2.403亿元。昨日下午,记者从市邮政管理局了解到,我市今年“双11”期间(11日至16日)的快件业务量达到1390万件,比去年“双11”的989.78万件增加约400万件。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 1390万件是啥概念?</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 以平均每个快件20厘米长来计算,如果把这些快件连起来,其长度将达到2780公里</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 几乎可以从洛阳排到乌鲁木齐</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 这段距离,我们开车走高速公路(以时速100公里计算),跑一天一夜还跑不完</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 在百度地图上测算洛阳到乌鲁木齐的距离约为2896公里</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">在这6天里</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"> 我市平均每分钟收发件约1609件</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> ●平均到我市快递行业3500余名从业人员身上</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> ●平均每人每天要发送快件约620件</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 当然,这已经远远超出了快递员的日工作量,所以各快递品牌普遍在“双11”期间聘请“外援”,比如来自我市各高校勤工助学的大学生等。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 以平均每个快件1公斤来计算</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 这些快件摞在一起的重量将达1.39万吨</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 每头成年亚洲象的体重约为5吨</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 也就是说今年“双11”我市全部快件的重量相当于2780头成年亚洲象</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 在这1390万件快件中</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\">进港量(由外地发往我市)达560万件</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 同比增长约34.4%</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 出港量(由我市发往外地)达450万件</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 同比增长约51%</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 中转量达380万件</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 同比增长约38.6%</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 而在2017年“双11”期间,我市快件的进港量为416.86万件,出港量为298.83万件,经我市中转的快件量达到274.09万件。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">我市快递数据速读</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 33目前全市快递品牌33个</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 3百世汇通、圆通、韵达排我市“双11”快件量前3名</p><article id=\"article-CEVMA6N600018AOR\" style=\"margin: 0px 0px 0.2rem; padding: 0px 0.3rem 0.4rem; border-bottom: 1px solid rgb(230, 230, 230); background-color: rgb(246, 246, 246);\"><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 800全市自动智能快递柜目前有800多组,洛龙区最多</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 2在国家邮政局发布的2017年快递服务满意度调查结果中,洛阳在50个样本城市中排名第2位</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 99.6我市的揽收件实名录入率在99.6%以上</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 在1390万件的背后,是“快递+”战略及末端派送能力的增强:</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">“快递+”战略</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 目前,我市已经实现乡镇快递100%覆盖,初步搭建起“农产品进城和工业品下乡”的通道,日发货量达到5.5万件,网络销售量连年提升。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> 偃师布鞋、新安樱桃、洛阳牡丹、洛宁苹果等走出洛阳,走向各地。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 128);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">快递“三进”工程</strong></span></p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify;\"> “三进”即进机关、进社区、进高校,是破解“最后一公里”投递难题的关键。</p></article>', 'news/2018/11/kuaidi.jpeg', '0', 'active', '2018-11-12 11:34:00.000000');
INSERT INTO `news_news` VALUES ('14', '央视纪录片《大戏记忆》在洛拍摄', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 记者昨日从市文广新局获悉,日前,央视大型纪录片《大戏记忆》豫剧篇《穆桂英挂帅》在我市取景拍摄,97岁高龄的马金凤先生专程参与,还与戏迷朋友进行了互动。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 豫剧《穆桂英挂帅》是豫剧大师马金凤的代表剧目,该剧一经问世就引起轰动,独创了我国戏剧表演艺术中“帅旦”这一行当。数十年来,由马金凤主演的豫剧《穆桂英挂帅》红遍大江南北,成为豫剧“马派”的优秀传统保留剧目。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 市文广新局相关负责人介绍,纪录片在洛拍摄期间,97岁高龄的马金凤先生专程参与,还同戏迷朋友进行了互动。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 记者了解到,纪录片《大戏记忆》豫剧篇选取了《花木兰》《穆桂英挂帅》《程婴救孤》三个剧目进行拍摄。该片以大戏为载体,挖掘大戏背后的鲜活人物和动人故事,同时运用新的技术手段,使中国传统戏曲艺术与当下先进的虚拟现实技术相融合,从而更好地传播和弘扬戏曲艺术。</p><p><br/></p>', 'news/2018/11/c67fb8715a2190683b0926576d37ef00.jpg', '0', 'active', '2018-10-20 11:38:00.000000');
INSERT INTO `news_news` VALUES ('15', '第五届龙门诗会举行', '<p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\">18日晚,第五届龙门诗会在洛阳师范学院举行。如水夜色中,饱含深情的朗诵为观众呈献了一场诗词盛宴。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 本届诗会围绕“运河诗情”主题,分为水运、物运、城运、国运4个篇章,节目异彩纷呈。中国作家协会诗歌委员会主任、《诗刊》原主编叶延滨,《中国作家》杂志社文学部主任方文,中国诗歌学会理事张况,《北京文学》杂志社主编助理王童等诗人参加诗会。</p><p style=\"margin-top: 0.6rem; margin-bottom: 0.6rem; padding: 0px; border: 0px; text-align: justify; color: rgb(64, 64, 64); font-family: STHeiti, "Microsoft YaHei", Helvetica, Arial, sans-serif; font-size: 17.28px; white-space: normal; background-color: rgb(246, 246, 246);\"> 从2014年至今,龙门诗会已成功举办5届,先后邀请余光中、汪国真、郑愁予等20多位海内外著名诗人、学者,以诗歌为媒介,传承河洛文化,进行文化交流。</p><p><br/></p>', 'news/2018/11/146111130.jpg', '0', 'active', '2018-10-10 09:41:00.000000');
-- ----------------------------
-- Table structure for operation_activecomments
-- ----------------------------
DROP TABLE IF EXISTS `operation_activecomments`;
CREATE TABLE `operation_activecomments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`comments` varchar(200) NOT NULL,
`add_time` datetime(6) NOT NULL,
`active_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_activecomm_active_id_fa517fb5_fk_scenicspo` (`active_id`),
KEY `operation_activecomments_user_id_ae1153b0_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_activecomm_active_id_fa517fb5_fk_scenicspo` FOREIGN KEY (`active_id`) REFERENCES `scenicspots_active` (`id`),
CONSTRAINT `operation_activecomments_user_id_ae1153b0_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_activecomments
-- ----------------------------
INSERT INTO `operation_activecomments` VALUES ('1', '龙门石窟是洛阳最经典的景点,其中西山石窟是龙门最精华的部分,包括奉先寺的卢舍那佛像和古阳洞中的“龙门二十品”', '2018-11-19 17:07:42.503174', '2', '1');
INSERT INTO `operation_activecomments` VALUES ('2', '独立成团·私家享受,完美!', '2018-11-20 10:10:49.023945', '3', '1');
-- ----------------------------
-- Table structure for operation_diarycomments
-- ----------------------------
DROP TABLE IF EXISTS `operation_diarycomments`;
CREATE TABLE `operation_diarycomments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`comments` varchar(200) NOT NULL,
`add_time` datetime(6) NOT NULL,
`diary_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_diarycomments_diary_id_a5054431_fk_diarys_diary_id` (`diary_id`),
KEY `operation_diarycomments_user_id_90fe7301_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_diarycomments_diary_id_a5054431_fk_diarys_diary_id` FOREIGN KEY (`diary_id`) REFERENCES `diarys_diary` (`id`),
CONSTRAINT `operation_diarycomments_user_id_90fe7301_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_diarycomments
-- ----------------------------
INSERT INTO `operation_diarycomments` VALUES ('1', '一般化', '2018-10-31 15:20:43.142073', '76', '1');
INSERT INTO `operation_diarycomments` VALUES ('2', '还可以', '2018-10-31 15:44:29.000000', '75', '19');
INSERT INTO `operation_diarycomments` VALUES ('3', '学习了', '2018-10-31 15:49:02.384543', '75', '1');
INSERT INTO `operation_diarycomments` VALUES ('4', '很好', '2018-10-31 15:49:58.802799', '75', '19');
INSERT INTO `operation_diarycomments` VALUES ('5', 'hahahahahahhahah', '2018-10-31 15:51:28.044170', '75', '1');
INSERT INTO `operation_diarycomments` VALUES ('6', '好好好好好', '2018-10-31 16:17:25.236691', '75', '1');
INSERT INTO `operation_diarycomments` VALUES ('7', '很好很好很好!', '2018-11-14 15:31:24.000000', '75', '19');
-- ----------------------------
-- Table structure for operation_productcomments
-- ----------------------------
DROP TABLE IF EXISTS `operation_productcomments`;
CREATE TABLE `operation_productcomments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_num` varchar(25) NOT NULL,
`comments` varchar(200) NOT NULL,
`add_time` datetime(6) NOT NULL,
`product_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_productcomments_product_id_07f2dc10_fk_shop_product_id` (`product_id`),
KEY `operation_productcomments_user_id_c7452db3_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_productcomments_product_id_07f2dc10_fk_shop_product_id` FOREIGN KEY (`product_id`) REFERENCES `shop_product` (`id`),
CONSTRAINT `operation_productcomments_user_id_c7452db3_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_productcomments
-- ----------------------------
INSERT INTO `operation_productcomments` VALUES ('1', '1541999329971653321', '很好看的摆件!', '2018-11-12 16:22:17.564157', '6', '1');
-- ----------------------------
-- Table structure for operation_shopping
-- ----------------------------
DROP TABLE IF EXISTS `operation_shopping`;
CREATE TABLE `operation_shopping` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`num` int(11) NOT NULL,
`add_time` datetime(6) NOT NULL,
`product_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_shopping_product_id_13d02d24_fk_shop_product_id` (`product_id`),
KEY `operation_shopping_user_id_0b58005c_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_shopping_product_id_13d02d24_fk_shop_product_id` FOREIGN KEY (`product_id`) REFERENCES `shop_product` (`id`),
CONSTRAINT `operation_shopping_user_id_0b58005c_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_shopping
-- ----------------------------
INSERT INTO `operation_shopping` VALUES ('8', '4', '2018-11-12 11:08:55.376533', '8', '1');
INSERT INTO `operation_shopping` VALUES ('9', '1', '2018-11-12 11:17:27.335778', '6', '1');
INSERT INTO `operation_shopping` VALUES ('10', '1', '2018-11-12 13:07:37.909377', '5', '1');
INSERT INTO `operation_shopping` VALUES ('11', '1', '2018-11-13 13:14:13.822066', '3', '1');
-- ----------------------------
-- Table structure for operation_shoppingcart
-- ----------------------------
DROP TABLE IF EXISTS `operation_shoppingcart`;
CREATE TABLE `operation_shoppingcart` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`num` int(11) NOT NULL,
`add_time` datetime(6) NOT NULL,
`product_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`is_check` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_shoppingcart_product_id_39e6948f_fk_shop_product_id` (`product_id`),
KEY `operation_shoppingcart_user_id_afb642bb_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_shoppingcart_product_id_39e6948f_fk_shop_product_id` FOREIGN KEY (`product_id`) REFERENCES `shop_product` (`id`),
CONSTRAINT `operation_shoppingcart_user_id_afb642bb_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_shoppingcart
-- ----------------------------
INSERT INTO `operation_shoppingcart` VALUES ('1', '1', '2018-11-02 15:27:57.042176', '7', '1', '1');
INSERT INTO `operation_shoppingcart` VALUES ('5', '10', '2018-11-09 14:02:08.433645', '5', '1', '0');
INSERT INTO `operation_shoppingcart` VALUES ('6', '3', '2018-11-09 15:21:18.795222', '8', '1', '0');
INSERT INTO `operation_shoppingcart` VALUES ('7', '1', '2018-11-09 15:22:19.405650', '6', '1', '1');
INSERT INTO `operation_shoppingcart` VALUES ('8', '12', '2018-11-09 15:28:33.228581', '1', '1', '0');
-- ----------------------------
-- Table structure for operation_spotscomments
-- ----------------------------
DROP TABLE IF EXISTS `operation_spotscomments`;
CREATE TABLE `operation_spotscomments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`comments` varchar(200) NOT NULL,
`add_time` datetime(6) NOT NULL,
`spots_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_spotscomme_spots_id_9e05aeab_fk_scenicspo` (`spots_id`),
KEY `operation_spotscomments_user_id_1ab65cb3_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_spotscomme_spots_id_9e05aeab_fk_scenicspo` FOREIGN KEY (`spots_id`) REFERENCES `scenicspots_spots` (`id`),
CONSTRAINT `operation_spotscomments_user_id_1ab65cb3_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_spotscomments
-- ----------------------------
INSERT INTO `operation_spotscomments` VALUES ('1', '白马寺本身并不大,就是那五座殿宇;可白马寺景区却很大,全部走完至少要有两小时。挺好的!', '2018-11-14 14:11:23.012778', '4', '1');
INSERT INTO `operation_spotscomments` VALUES ('2', '花园以隋唐历史文化为底蕴,以牡丹文化为主要内容,融历史文化、牡丹文化和园林景观为一体,充分展示了牡丹之美、之清、之幽', '2018-11-19 17:07:01.251005', '5', '1');
-- ----------------------------
-- Table structure for operation_usercollect
-- ----------------------------
DROP TABLE IF EXISTS `operation_usercollect`;
CREATE TABLE `operation_usercollect` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`add_time` datetime(6) NOT NULL,
`diary_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_usercollect_diary_id_645e38c5_fk_diarys_diary_id` (`diary_id`),
KEY `operation_usercollect_user_id_bd2b08b4_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_usercollect_diary_id_645e38c5_fk_diarys_diary_id` FOREIGN KEY (`diary_id`) REFERENCES `diarys_diary` (`id`),
CONSTRAINT `operation_usercollect_user_id_bd2b08b4_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_usercollect
-- ----------------------------
INSERT INTO `operation_usercollect` VALUES ('4', '2018-11-14 16:45:32.729416', '8', '1');
INSERT INTO `operation_usercollect` VALUES ('5', '2018-11-14 16:45:39.214790', '76', '1');
INSERT INTO `operation_usercollect` VALUES ('23', '2018-11-15 10:09:58.238369', '75', '1');
-- ----------------------------
-- Table structure for operation_userfav
-- ----------------------------
DROP TABLE IF EXISTS `operation_userfav`;
CREATE TABLE `operation_userfav` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`add_time` datetime(6) NOT NULL,
`diary_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `operation_userfav_diary_id_15f80041_fk_diarys_diary_id` (`diary_id`),
KEY `operation_userfav_user_id_1f1a4c7e_fk_users_myuser_id` (`user_id`),
CONSTRAINT `operation_userfav_diary_id_15f80041_fk_diarys_diary_id` FOREIGN KEY (`diary_id`) REFERENCES `diarys_diary` (`id`),
CONSTRAINT `operation_userfav_user_id_1f1a4c7e_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of operation_userfav
-- ----------------------------
-- ----------------------------
-- Table structure for pay_goodsordersmaintable
-- ----------------------------
DROP TABLE IF EXISTS `pay_goodsordersmaintable`;
CREATE TABLE `pay_goodsordersmaintable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_num` varchar(25) NOT NULL,
`order_describe` varchar(50) NOT NULL,
`total_amount` decimal(11,2) NOT NULL,
`consignee` varchar(30) NOT NULL,
`address` varchar(100) NOT NULL,
`mobile` varchar(11) NOT NULL,
`zip_code` varchar(6) NOT NULL,
`order_state` varchar(3) NOT NULL,
`create_time` datetime(6) NOT NULL,
`pay_time` datetime(6) DEFAULT NULL,
`received_time` datetime(6) DEFAULT NULL,
`finish_time` datetime(6) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `pay_goodsordersmaintable_user_id_a9d1ec06_fk_users_myuser_id` (`user_id`),
CONSTRAINT `pay_goodsordersmaintable_user_id_a9d1ec06_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of pay_goodsordersmaintable
-- ----------------------------
INSERT INTO `pay_goodsordersmaintable` VALUES ('1', '1541742473926987561', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品', '1598.00', 'ABC', '河南 洛阳 洛龙区 洛龙区123123', '12345678910', '000000', 'yzf', '2018-11-09 13:47:54.061815', '2018-11-09 13:48:27.810196', null, null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('2', '1541743460533560781', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品等多件商品', '2318.00', 'ABC', '河南 洛阳 洛龙区 洛龙区123123', '12345678910', '000000', 'yzf', '2018-11-09 14:04:20.671379', '2018-11-09 14:04:52.403942', '2018-11-13 16:28:30.732406', null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('3', '1541748091988500191', '德芙 Dove巧克力分享碗装 丝滑牛奶巧克力 糖果巧克力', '89.40', '黄鹤', '浙江 温州 龙湾区 江南皮革厂', '18888888888', '123456', 'ysh', '2018-11-09 15:21:32.077866', '2018-11-09 15:22:03.476689', '2018-11-12 14:59:26.761479', null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('4', '1541748152642443961', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '498.00', '黄鹤', '浙江 温州 龙湾区 江南皮革厂', '18888888888', '123456', 'wzf', '2018-11-09 15:22:32.765393', null, null, null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('5', '1541748525478583981', '红心柚子10斤整箱福建平和管溪蜜柚新鲜水果包邮红肉密柚', '89.40', 'ABC', '河南 洛阳 洛龙区 洛龙区123123', '12345678910', '000000', 'yzf', '2018-11-09 15:28:45.602637', '2018-11-12 14:42:06.874718', null, null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('6', '1541985947829919171', '红心柚子10斤整箱福建平和管溪蜜柚新鲜水果包邮红肉密柚', '357.60', '黄鹤', '浙江 温州 龙湾区 江南皮革厂', '18888888888', '123456', 'yzf', '2018-11-12 09:25:47.941859', '2018-11-12 09:26:29.903241', null, null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('7', '1541999260727173981', '黄豆江西农家非转基因自种 5斤打豆浆生豆芽专用散装小黄豆', '72.00', '黄鹤', '浙江 温州 龙湾区 江南皮革厂', '18888888888', '123456', 'ysh', '2018-11-12 13:07:40.769128', '2018-11-12 13:08:13.367202', '2018-11-13 16:28:24.196619', null, '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('8', '1541999329971653321', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '498.00', 'zhiqi123', '河南 郑州 二七区 二七区123', '13345678910', '000000', 'ywc', '2018-11-12 13:08:50.050936', '2018-11-12 13:09:21.050126', '2018-11-12 14:53:59.056294', '2018-11-12 16:22:17.590178', '1');
INSERT INTO `pay_goodsordersmaintable` VALUES ('10', '1542098120652654161', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品等多件商品', '2096.00', '黄鹤', '浙江 温州 龙湾区 江南皮革厂', '18888888888', '123456', 'ysh', '2018-11-13 16:35:20.783212', '2018-11-13 16:35:55.580379', '2018-11-13 16:35:58.684523', null, '1');
-- ----------------------------
-- Table structure for pay_orderitems
-- ----------------------------
DROP TABLE IF EXISTS `pay_orderitems`;
CREATE TABLE `pay_orderitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`good_name` varchar(30) NOT NULL,
`good_num` int(11) NOT NULL,
`order_num` varchar(25) NOT NULL,
`good_price` double NOT NULL,
`good_image` varchar(100) NOT NULL,
`good_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of pay_orderitems
-- ----------------------------
INSERT INTO `pay_orderitems` VALUES ('1', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品', '1', '1541742473926987561', '1598', 'product/mainimg/2018/11/123asd.jpeg', '7');
INSERT INTO `pay_orderitems` VALUES ('2', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品', '1', '1541743460533560781', '1598', 'product/mainimg/2018/11/123asd.jpeg', '7');
INSERT INTO `pay_orderitems` VALUES ('3', '黄豆江西农家非转基因自种 5斤打豆浆生豆芽专用散装小黄豆', '10', '1541743460533560781', '72', 'product/mainimg/2018/11/u8602493881365701743fm200gp0.jpg', '5');
INSERT INTO `pay_orderitems` VALUES ('6', '德芙 Dove巧克力分享碗装 丝滑牛奶巧克力 糖果巧克力', '3', '1541748091988500191', '29.8', 'product/mainimg/2018/11/timg.jpeg', '8');
INSERT INTO `pay_orderitems` VALUES ('7', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '1', '1541748152642443961', '498', 'product/mainimg/2018/11/342355.jpeg', '6');
INSERT INTO `pay_orderitems` VALUES ('8', '红心柚子10斤整箱福建平和管溪蜜柚新鲜水果包邮红肉密柚', '3', '1541748525478583981', '29.8', 'product/mainimg/2018/11/u8997057393192590278fm26gp0.jpg', '1');
INSERT INTO `pay_orderitems` VALUES ('9', '红心柚子10斤整箱福建平和管溪蜜柚新鲜水果包邮红肉密柚', '12', '1541985947829919171', '29.8', 'product/mainimg/2018/11/u8997057393192590278fm26gp0.jpg', '1');
INSERT INTO `pay_orderitems` VALUES ('10', '黄豆江西农家非转基因自种 5斤打豆浆生豆芽专用散装小黄豆', '1', '1541999260727173981', '72', 'product/mainimg/2018/11/u8602493881365701743fm200gp0.jpg', '5');
INSERT INTO `pay_orderitems` VALUES ('11', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '1', '1541999329971653321', '498', 'product/mainimg/2018/11/342355.jpeg', '6');
INSERT INTO `pay_orderitems` VALUES ('12', '德芙 Dove巧克力分享碗装 丝滑牛奶巧克力 糖果巧克力', '3', '1542097549359671461', '29.8', 'product/mainimg/2018/11/timg.jpeg', '8');
INSERT INTO `pay_orderitems` VALUES ('13', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '2', '1542097549359671461', '498', 'product/mainimg/2018/11/342355.jpeg', '6');
INSERT INTO `pay_orderitems` VALUES ('14', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品', '1', '1542098120652654161', '1598', 'product/mainimg/2018/11/123asd.jpeg', '7');
INSERT INTO `pay_orderitems` VALUES ('15', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '1', '1542098120652654161', '498', 'product/mainimg/2018/11/342355.jpeg', '6');
-- ----------------------------
-- Table structure for pay_scenicordersmaintable
-- ----------------------------
DROP TABLE IF EXISTS `pay_scenicordersmaintable`;
CREATE TABLE `pay_scenicordersmaintable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`scenic_name` varchar(30) NOT NULL,
`buy_num` int(11) NOT NULL,
`ticket_price` double NOT NULL,
`scenic_image` varchar(100) NOT NULL,
`scenic_id` int(11) NOT NULL,
`order_num` varchar(25) NOT NULL,
`cdk` varchar(25) NOT NULL,
`order_describe` varchar(50) NOT NULL,
`total_amount` decimal(11,2) NOT NULL,
`consignee` varchar(30) NOT NULL,
`mobile` varchar(11) NOT NULL,
`order_state` varchar(3) NOT NULL,
`classification` varchar(2) NOT NULL,
`create_time` datetime(6) NOT NULL,
`pay_time` datetime(6) DEFAULT NULL,
`received_time` datetime(6) DEFAULT NULL,
`finish_time` datetime(6) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `pay_scenicordersmaintable_user_id_1fd20704_fk_users_myuser_id` (`user_id`),
CONSTRAINT `pay_scenicordersmaintable_user_id_1fd20704_fk_users_myuser_id` FOREIGN KEY (`user_id`) REFERENCES `users_myuser` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of pay_scenicordersmaintable
-- ----------------------------
INSERT INTO `pay_scenicordersmaintable` VALUES ('2', '中国国花园', '1', '10', 'spots/thumbnail/2018/10/timg_7Squhac.jpeg', '5', '154261410049883401', '9Por5-hhOAk-jFbqr-CvB78', '中国国花园门票', '10.00', '黄鹤', '18888888888', 'ywc', 'mp', '2018-11-19 15:55:00.500821', '2018-11-19 15:55:42.774384', null, '2018-11-19 17:07:01.332485', '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('3', '洛阳白马寺', '2', '50', 'spots/thumbnail/2018/10/b151f8198618367a39ac6bc927738bd4b31ce5f9_a4KWxIC.jpg', '4', '154261510662321741', 'amjtW-6zhVy-j2oir-nWmfA', '洛阳白马寺门票', '100.00', '慕容铁蛋', '13255684466', 'yzf', 'mp', '2018-11-19 16:11:46.626726', '2018-11-19 16:12:31.405169', null, null, '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('4', '鸡冠洞', '1', '80', 'spots/thumbnail/2018/10/eb4f9f6b-bebf-44b5-835a-5d356ab3119c_480_320_T7UrY8k.jpg', '3', '154261531998408111', 'rcr4X-iaZjV-PJwZ2-8AMFF', '鸡冠洞门票', '80.00', '李白', '13345678910', 'yzf', 'mp', '2018-11-19 16:15:19.987236', '2018-11-19 16:15:49.953833', null, null, '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('5', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '1', '399', 'active/2018/11/longmenshiku_VmtBGlg.jpeg', '2', '1542616228676335021', 'JYp52-xRRdQ-lRtfk-x8dNJ', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '399.00', '黄鹤', '18888888888', 'ywc', 'hd', '2018-11-19 16:30:28.679494', '2018-11-19 16:31:04.595318', null, '2018-11-19 17:07:42.604363', '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('6', '洛阳龙门石窟+白马寺院+少林寺+龙潭大峡谷3日2晚跟团游', '2', '699', 'active/2018/11/shaolin.jpeg', '1', '1542616675465996671', '', '洛阳龙门石窟+白马寺院+少林寺+龙潭大峡谷3日2晚跟团游', '1398.00', '黄鹤', '18888888888', 'wzf', 'hd', '2018-11-19 16:37:55.468917', null, null, null, '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('7', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '1', '399', 'active/2018/11/longmenshiku_VmtBGlg.jpeg', '2', '1542678331860761191', 'cuU2X-rPgCP-BiAA3-XVG0I', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '399.00', '黄鹤', '18888888888', 'yzf', 'hd', '2018-11-20 09:45:32.086806', '2018-11-20 09:46:40.816136', null, null, '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('8', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '1', '399', 'active/2018/11/longmenshiku_VmtBGlg.jpeg', '2', '1542678357330589961', '8G0xr-XUdDa-m0BIt-WbmMi', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '399.00', '慕容铁主', '18835641234', 'yzf', 'hd', '2018-11-20 09:45:57.367523', '2018-11-20 10:10:07.016571', null, null, '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('9', '洛阳+云台山4日私家团(4钻)·『独立成团·私家享受』', '2', '2995', 'active/2018/11/sdfsdfsdgsdgss.jpeg', '3', '1542678468301508341', 'IjYJf-2Hpqx-mGAdm-BIpHY', '洛阳+云台山4日私家团(4钻)·『独立成团·私家享受』', '5990.00', '黄鹤', '18888888888', 'ywc', 'hd', '2018-11-20 09:47:48.349429', '2018-11-20 09:48:20.097284', null, '2018-11-20 10:10:49.130609', '1');
INSERT INTO `pay_scenicordersmaintable` VALUES ('10', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '1', '399', 'active/2018/11/longmenshiku_VmtBGlg.jpeg', '2', '1542678937707499421', 'zSRRq-DTOxV-O9tX2-UxJHv', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '399.00', '鲁迅', '12345678910', 'yzf', 'hd', '2018-11-20 09:55:37.712928', '2018-11-20 09:56:26.595082', null, null, '1');
-- ----------------------------
-- Table structure for scenicspots_active
-- ----------------------------
DROP TABLE IF EXISTS `scenicspots_active`;
CREATE TABLE `scenicspots_active` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(30) NOT NULL,
`introduce` longtext NOT NULL,
`image` varchar(100) NOT NULL,
`classification` varchar(10) NOT NULL,
`phone` varchar(15) NOT NULL,
`go_time` datetime(6) NOT NULL,
`address` varchar(50) NOT NULL,
`price` double NOT NULL,
`now_num` int(11) NOT NULL,
`all_num` int(11) NOT NULL,
`add_time` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of scenicspots_active
-- ----------------------------
INSERT INTO `scenicspots_active` VALUES ('1', '洛阳龙门石窟+白马寺院+少林寺+龙潭大峡谷3日2晚跟团游', '<h3 class=\"hd\" data-reactid=\"302\" style=\"margin: 0px; padding: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 24px; line-height: 1; font-family: "microsoft yahei"; text-align: center; white-space: normal;\">费用</h3><ul class=\"mod_info_box list-paddingleft-2\" data-reactid=\"304\" style=\"margin: 0px 0px 20px; padding: 0px 0px 0px 115px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 24px; min-height: 48px;\"><li><p>费用包含</p></li><li><p><br/></p></li><ul class=\"txt_list list-paddingleft-2\" data-reactid=\"307\" style=\"list-style-type: square;\"><li><p>往返旅游巴士</p></li><li><p>行程所列酒店住宿费用</p></li><li><p>酒店标准2人间</p></li><li><p>行程内所列餐食,具体情况请见行程推荐/安排。</p></li><li><p>当地中文导游服务。</p></li><li><p>行程中所列景点首道大门票龙门石窟、白马寺、少林寺、龙潭大峡谷</p></li><li><p>身高0.8--1.2米(含),不占床,儿童只含当地用车,其余产生自理</p></li></ul></ul><ul class=\"mod_info_box list-paddingleft-2\" data-reactid=\"315\" style=\"margin: 0px 0px 20px; padding: 0px 0px 0px 115px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 24px; min-height: 48px;\"><li><p>自理费用</p></li><li><p><br/></p></li><ul class=\"txt_list list-paddingleft-2\" data-reactid=\"318\" style=\"list-style-type: square;\"><li><p>超重行李的托运费、保管费; 因交通延阻、罢工、天气、机器故障等不可抗力原因所导致的额外费用: 酒店内洗衣、理发、电话、传真、收费电视、饮品、烟酒等个人消费; 自由活动期间的用车服务; 提供导游服务的产品在自由活动期间无陪同服务; 当地参加的自费以及“费用包含”中不包含的其它项目。</p></li></ul></ul><p><br/></p>', 'active/2018/11/shaolin.jpeg', 'natural', '0379-00000000', '2019-01-20 08:00:00.000000', '洛阳火车站', '699', '0', '30', '2018-11-19 10:43:00.000000');
INSERT INTO `scenicspots_active` VALUES ('2', '洛阳2日1晚跟团游·龙门石窟-白马寺-少林寺纯玩2日游', '<h3 class=\"mult_data_tit\" style=\"margin: 0px 0px 20px; padding: 0px; font-weight: 100; font-size: 22px;\"><p>洛阳_龙门石窟_白马寺_洛阳</p></h3><h5 style=\"margin: 0px; padding: 10px 0px 0px; font-weight: 100; font-size: 18px;\"><span class=\"i_sce\" style=\"background-repeat: no-repeat; display: inline-block; vertical-align: middle; position: relative; top: -1px; height: 20px; width: 20px; margin: 5px 0px 0px -87px; background-image: url("//pic.c-ctrip.com/VacationOnlinePic/vacation_v2/searchresult/ico_travel03.png"); background-position: 0px -40px; float: left;\"></span>08:00</h5><h4 class=\"sce_tit\" style=\"margin: 0px; padding: 0px; font-weight: 100; font-size: 18px;\">前往景点:<a data-json=\"{"GSScenicSpotID":77498,"PreName":"","Name":"龙门石窟","SuffixName":""}\" class=\"J_mapPointHook\" style=\"color: rgb(25, 160, 240); outline: none;\">龙门石窟</a><span class=\"mult_score\" style=\"font-size: 12px; color: rgb(25, 160, 240); margin-left: 25px;\"><span style=\"margin: 0px; padding: 0px; font-size: 18px;\">4.6</span>/5分</span></h4><p>早8:00乘车赴世界文化遗产、中国武术发源地少林寺景区游览,少林寺,又名僧人寺,以禅宗和武术并称于世,有“禅宗祖廷,中国汉传佛教禅宗祖庭。少林寺属国家5A级旅游景区。联合国教科文组织将少林寺、“天地之中”等8处11项历史建筑列为世界文化遗产。包括:少林寺寺院、 功夫表演、 塔林,(参观时间约3小时),中餐后(自理)下午16:00左右到达古都洛阳,结束愉快旅程。<br/></p><p>。。。。。。。。。。。。。。</p><p>。。。。。。。</p><p>。。。。。。。</p><p>。。。。。。。</p><p>。。。。。。。</p><p><br/> </p><p style=\"position: absolute; width: 1px; height: 1px; overflow: hidden; left: -1000px; white-space: nowrap; top: 365px;\"><span style=\"white-space: normal;\">。。。。。。。</span></p>', 'active/2018/11/longmenshiku_VmtBGlg.jpeg', 'natural', '0379-00000000', '2018-12-20 09:00:00.000000', '龙门石窟门口', '399', '4', '25', '2018-11-19 11:02:00.000000');
INSERT INTO `scenicspots_active` VALUES ('3', '洛阳+云台山4日私家团(4钻)·『独立成团·私家享受』', '<ul data-reactid=\"88\" style=\"padding: 0px; color: rgb(34, 34, 34); font-family: "microsoft yahei"; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\" class=\" list-paddingleft-2\"><li><p><span style=\"font-size: 20px; color: rgb(255, 0, 0);\"><strong>★ 私人定制:每张订单独立成团,管家式导游服务,专车,人多价更优!</strong></span></p></li><li><p><span style=\"font-size: 20px; color: rgb(255, 0, 0);\"><strong>★ 龙门石窟+少林寺;云台山体验刺激玻璃栈道!景点门票全含,全程纯玩无购物!</strong></span></p></li><li><p><span style=\"font-size: 20px; color: rgb(255, 0, 0);\"><strong>★ 一晚宿洛阳,一晚宿云台山景区内,边走边住!全程纯玩无购物,回归纯真旅游!</strong></span></p></li></ul><p><br/></p>', 'active/2018/11/sdfsdfsdgsdgss.jpeg', 'leisure', '0379-00000000', '2019-03-20 08:00:00.000000', '洛阳火车站', '2995', '2', '10', '2018-11-19 11:09:00.000000');
-- ----------------------------
-- Table structure for scenicspots_gallery
-- ----------------------------
DROP TABLE IF EXISTS `scenicspots_gallery`;
CREATE TABLE `scenicspots_gallery` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`image` varchar(100) NOT NULL,
`add_time` datetime(6) NOT NULL,
`spots_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `scenicspots_gallery_spots_id_43d90e33_fk_scenicspots_spots_id` (`spots_id`),
CONSTRAINT `scenicspots_gallery_spots_id_43d90e33_fk_scenicspots_spots_id` FOREIGN KEY (`spots_id`) REFERENCES `scenicspots_spots` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of scenicspots_gallery
-- ----------------------------
INSERT INTO `scenicspots_gallery` VALUES ('1', '往事越千年', 'spots/banner/2018/10/timg.jpeg', '2018-10-16 14:31:00.000000', '1');
INSERT INTO `scenicspots_gallery` VALUES ('2', '远景', 'spots/banner/2018/10/timg_1.jpeg', '2018-10-16 14:32:00.000000', '1');
INSERT INTO `scenicspots_gallery` VALUES ('3', '庐舍那大佛', 'spots/banner/2018/10/timg_2.jpeg', '2018-10-16 14:33:00.000000', '1');
INSERT INTO `scenicspots_gallery` VALUES ('4', '奉先寺', 'spots/banner/2018/10/timg_3.jpeg', '2018-10-16 14:34:00.000000', '1');
INSERT INTO `scenicspots_gallery` VALUES ('5', '全景', 'spots/banner/2018/10/u3190787190571207846fm26gp0.jpg', '2018-10-16 14:34:00.000000', '1');
INSERT INTO `scenicspots_gallery` VALUES ('6', '白云山风光1', 'spots/banner/2018/10/43f2_b.jpg', '2018-10-16 14:35:00.000000', '2');
INSERT INTO `scenicspots_gallery` VALUES ('7', '白云山风光2', 'spots/banner/2018/10/2017050105.jpg', '2018-10-16 14:37:00.000000', '2');
INSERT INTO `scenicspots_gallery` VALUES ('8', '白云山风光3', 'spots/banner/2018/10/d01373f082025aafe06feaf1f0edab64034f1aae.jpg', '2018-10-16 14:37:00.000000', '2');
INSERT INTO `scenicspots_gallery` VALUES ('9', '全景', 'spots/banner/2018/10/国花园.jpeg', '2018-10-16 14:38:00.000000', '5');
INSERT INTO `scenicspots_gallery` VALUES ('10', '东门', 'spots/banner/2018/10/sdfasfsd.jpeg', '2018-10-16 14:39:00.000000', '5');
INSERT INTO `scenicspots_gallery` VALUES ('11', '西门', 'spots/banner/2018/10/15643.jpeg', '2018-10-16 14:39:00.000000', '5');
INSERT INTO `scenicspots_gallery` VALUES ('12', '马寺钟声', 'spots/banner/2018/10/dsefsfg.jpeg', '2018-10-16 14:40:00.000000', '4');
INSERT INTO `scenicspots_gallery` VALUES ('13', '白马寺', 'spots/banner/2018/10/safasfg.jpeg', '2018-10-16 14:41:00.000000', '4');
INSERT INTO `scenicspots_gallery` VALUES ('14', '马寺印象', 'spots/banner/2018/10/dfsafsfg.jpeg', '2018-10-16 14:41:00.000000', '4');
INSERT INTO `scenicspots_gallery` VALUES ('15', '鸡冠洞1', 'spots/banner/2018/10/013e355875ca65a801219c77a66943.jpg1280w_1l_2o_100sh.jpg', '2018-10-16 14:43:00.000000', '3');
INSERT INTO `scenicspots_gallery` VALUES ('16', '鸡冠洞2', 'spots/banner/2018/10/bf096b63f6246b60138698a0e1f81a4c500fa25d.jpg', '2018-10-16 14:43:00.000000', '3');
INSERT INTO `scenicspots_gallery` VALUES ('17', '鸡冠洞3', 'spots/banner/2018/10/dbb44aed2e738bd4e03f33fbab8b87d6267ff9da.jpg', '2018-10-16 14:44:00.000000', '3');
INSERT INTO `scenicspots_gallery` VALUES ('18', '鸡冠洞4', 'spots/banner/2018/10/f703738da9773912282ad258f3198618367ae2ff.jpg', '2018-10-16 14:44:00.000000', '3');
INSERT INTO `scenicspots_gallery` VALUES ('19', '鸡冠洞5', 'spots/banner/2018/10/u5763711552706764766fm26gp0.jpg', '2018-10-16 14:44:00.000000', '3');
-- ----------------------------
-- Table structure for scenicspots_spots
-- ----------------------------
DROP TABLE IF EXISTS `scenicspots_spots`;
CREATE TABLE `scenicspots_spots` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`content` longtext NOT NULL,
`image` varchar(100) NOT NULL,
`picture` varchar(100) NOT NULL,
`classification` varchar(10) NOT NULL,
`phone` varchar(15) NOT NULL,
`businessHours` varchar(10) NOT NULL,
`address` varchar(50) NOT NULL,
`price` double NOT NULL,
`add_times` datetime(6) NOT NULL,
`x` decimal(9,6) NOT NULL,
`y` decimal(9,6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of scenicspots_spots
-- ----------------------------
INSERT INTO `scenicspots_spots` VALUES ('1', '龙门石窟', '<p><span style=\"background-color: rgb(255, 255, 255); font-family: 宋体; font-size: 14px;\"> 龙门石窟位于洛阳市区南12公里处,是与大同云岗石窟、敦煌千佛洞石窟齐名的我国三大石窟之一,国家5A景区。</span><br/> </p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 龙门是一个风景秀丽的地方,这里有东、西两座青山对峙,伊水缓缓北流。远远望去,犹如一座天然门阙,所以古称“伊阙”。“伊阙”,自古以来,已成为游龙门的第一景观。唐诗人白居易曾说过:“洛阳四郊山水之胜,龙门首焉”。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 龙门石窟始凿于北魏孝文帝迁都洛阳(公元494年)前后,后来,历经东魏、北齐、北周,到隋唐至宋等朝代又连续大规模营造达400余年之久。密布于伊水东西两山的峭壁上,南北长达1公里,共有97000余尊佛像,1300多个石窟。现存窟龛2345个,题记和碑刻3600余品,佛塔50余座,造像10万余尊。其中最大的佛像高达17.14米,最小的仅有2厘米。这些都体现出了我国古代劳动人民很高的艺术造诣。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 奉先寺是龙门唐代石窟中最大的一个石窟,长宽各30余米。据碑文记载,此窟开凿于唐代武则天时期,历时三年。洞中佛像明显体现了唐代佛像艺术特点,面形丰肥、两耳下垂,形态0、安详、温存、亲切,极为动人。石窟正中卢舍那佛坐像为龙门石窟最大佛像,身高17.14米,头高4米,耳朵长1.9米,造型丰满,仪表堂皇,衣纹流畅,具有高度的艺术感染力,实在是一件精美绝伦的艺术杰作。据佛经说,卢舍那意即光明普照。这尊佛像,丰颐秀目,嘴角微翘,呈微笑状,头部稍低,略作俯视态,宛若一位睿智而慈祥的中年妇女,令人敬而不惧。有人评论说,在塑造这尊佛像时,把高尚的情操、丰富的感情、开阔的胸怀和典雅的外貌完美地结合在一起,因此,她具有巨大的艺术魅力。卢舍那佛像两边还有二弟子迦叶和阿难,形态温顺虔诚,二菩萨和善开朗。天王手托宝塔,显得魁梧刚劲。而力士像就更动人了,只见他右手叉腰,左手合十,威武雄壮。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 金刚力士雕像比卢舍那佛像旁的力士像更加动人,是龙门石窟中的珍品,1953年清理洞窟积土时,在极南洞附近发现的,是被盗凿而未能运走遗留下的。只见金刚力士两眼暴突,怒视前方,二手握拳,胸上、手、腿上的肌肉高高隆起。整座雕像造型粗犷豪放,雄健有力,气势逼人。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 龙门石窟中另一个著名洞窟是宾阳洞。这个窟前后用了24年才完成,是开凿时间最长的一个洞窟。洞内有11尊大佛像。主像释迦牟尼像,高鼻大眼、体态端祥,左右二边有弟子、菩萨侍立,佛和菩萨面相清瘦,目大额平,衣锦纹理周密刻划,有明显西域艺术痕迹。窟顶雕有飞天,挺健飘逸,是北魏中期石雕艺术的杰作。洞中原有两幅大型浮雕《皇帝礼佛图》、《太后礼佛图》,画面上分别以魏孝文帝和文明皇太后为中心,前簇后拥,组成礼佛行列,构图精美,雕刻细致,艺术价值很高,是一幅反映当时帝王生活的图画。可惜被美国人勾结中国奸商盗运到美国,现分别藏于美国堪萨斯城纳尔逊艺术馆和纽约市艺术博物馆。而洞口唐宰相书法家褚遂良书碑铭,很值得一览。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 万佛洞在宾阳洞南边,洞中刻像丰富,南北石壁上刻满了小佛像,很多佛像仅一寸,或几厘米高,计有1500多尊。正壁菩萨佛像端坐于束腰八角莲花座上。束腰处有四力士,肩托仰莲。后壁刻有莲花54枝,每枝花上坐着一菩萨或供养人,壁顶上浮雕伎乐人,个个婀娜多姿,形象逼真。沿口南壁上还有一座观音菩萨像,手提净瓶举尘尾,体态圆润丰满,姿势优美,十分传神。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 古阳洞也很出名。这里有丰富造像题记,为人称道的龙门十二品,大部分集中在这里。清代学者康有为盛赞这里的书法之美为:魄力雄强、气象浑穆、笔法跳越、点画峻厚、意态奇逸、精神飞动、骨法洞达、结构天成、血肉丰美。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 还有一个药方洞,刻有140个药方,反映了我国古代医学的成就。把一些药方刻在石碑上或洞窟中,在别的地方也有发现,这是古代医学成就传之后世的一个重要方法。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 龙门石窟不仅仅是佛像雕刻技艺精湛,而石窟中造像题记也不乏艺术精品。龙门石窟造像题记遍布许许多多的洞窟,约有3600品,其中龙门二十品,是我国优秀文化遗产的一部分,在国内外学术界、书法界有很广泛的影响。龙门二十品,十九品集中于古阳洞,另有一品在西山中部偏南老龙洞崖壁的慈香窟里。古阳洞是龙门石窟中开凿最早的一个窟,凿于北魏孝文帝迁都洛阳前一年。洞内小佛龛琳琅满目,雕刻精巧。</p><p style=\"font-size: 14px; font-family: 宋体; line-height: 22.4px; padding: 0px; white-space: normal; background-color: rgb(255, 255, 255);\"> 龙门石窟保留著大量的宗教、美术、书法、音乐、服饰、医药、建筑和中外交通等方面的实物史料。因此,它堪称为一座大型石刻艺术博物馆。它与甘肃敦煌莫高窟、山西大同云冈石窟并称为中国三大石刻艺术宝库。2000年11月洛阳龙门石窟被联合国教科文组织遗产委员会列入《世界遗产名录》。</p><p><br/> </p>', 'spots/thumbnail/2018/10/下载_0iTJ0CT.jpeg', 'spots/mainfigure/2018/10/u30829683821652909244fm200gp0_VO5wJX9.jpg', 'natural', '0379-65980972', '全年', '洛阳市洛龙区238省道', '120', '2018-10-16 09:50:00.000000', '112.485281', '34.567362');
INSERT INTO `scenicspots_spots` VALUES ('2', '洛阳白云山', '<p>白云山位于河南省<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%B4%9B%E9%98%B3\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">洛阳</a>市<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E5%B5%A9%E5%8E%BF/2542808\" data-lemmaid=\"2542808\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">嵩县</a>南部<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E4%BC%8F%E7%89%9B%E5%B1%B1/1177338\" data-lemmaid=\"1177338\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">伏牛山</a>腹地原始林区,总面积168平方公里,动物204种,植物1991种,森林覆盖率98.5%以上,被专家学者誉为“<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E8%87%AA%E7%84%B6%E5%8D%9A%E7%89%A9%E9%A6%86/7493762\" data-lemmaid=\"7493762\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">自然博物馆</a>”。</p><p>海拔1500米以上的山峰37座,其中玉皇顶海拔2216米,为白云山第一峰,是看<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%97%A5%E5%87%BA/25307\" data-lemmaid=\"25307\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">日出</a>观云海的最佳处之一。</p><p>白云山(Baiyun Mountain):<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E4%B8%96%E7%95%8C%E5%9C%B0%E8%B4%A8%E5%85%AC%E5%9B%AD/3604728\" data-lemmaid=\"3604728\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">世界地质公园</a>,<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E5%9B%BD%E5%AE%B6AAAAA%E7%BA%A7%E6%97%85%E6%B8%B8%E6%99%AF%E5%8C%BA\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">国家AAAAA级旅游景区</a>,国家级森林公园、<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E5%9B%BD%E5%AE%B6%E7%BA%A7%E8%87%AA%E7%84%B6%E4%BF%9D%E6%8A%A4%E5%8C%BA/7516695\" data-lemmaid=\"7516695\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">国家级自然保护区</a>,中国十佳休闲胜地,中国最美地方之一,河南省十佳景区好去处第三名。<span class=\"sup--normal\" data-sup=\"1\" style=\"font-size: 12px; line-height: 0; position: relative; vertical-align: baseline; top: -0.5em; margin-left: 2px; color: rgb(51, 102, 204); cursor: pointer; padding: 0px 2px;\"> [1]</span><a style=\"color: rgb(19, 110, 194); position: relative; top: -50px; font-size: 0px; line-height: 0;\" name=\"ref_[1]_5065565\"></a> </p><p>白云山主要景区有:白云峰、玉皇顶、鸡角曼(小黄山)、九龙瀑布、原始森林五大观光区和白云湖、高山<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%A3%AE%E6%9E%97%E6%B0%A7%E5%90%A7/6827100\" data-lemmaid=\"6827100\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">森林氧吧</a>、高山牡丹园、<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E7%95%99%E4%BE%AF%E7%A5%A0/9710395\" data-lemmaid=\"9710395\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">留侯祠</a>、芦花谷五大休闲区。</p><p><a target=\"_blank\" href=\"https://baike.baidu.com/item/%E7%99%BD%E4%BA%91%E5%B1%B1/1365\" data-lemmaid=\"1365\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">白云山</a>融山、石、水、洞、林、草、花、鸟、兽为一体,雄、险、奇、幽、美、妙交相生辉,形成各具特色的景观区,成为中原地区集观光旅游、度假避暑、科研实习、寻古探幽为一体的复合型旅游区,被誉为“人间仙境”、“中原名山”。</p><p><br/> </p>', 'spots/thumbnail/2018/10/5aa745f69bc83_9oqheqt_CxnpWIh.jpg', 'spots/mainfigure/2018/10/659ac7198618367a4cec2e7a2e738bd4b21ce578_DQK3MNA.jpg', 'leisure', '0379-66586666', '全年', '河南省洛阳市嵩县南部伏牛山腹地原始林区', '75', '2018-10-16 09:57:00.000000', '111.859577', '33.680906');
INSERT INTO `scenicspots_spots` VALUES ('3', '鸡冠洞', '<p><span style=\"color: rgb(51, 51, 51); font-family: arial, "Microsoft YaHei", 宋体, sans-serif, tahoma; font-size: 14px; background-color: rgb(255, 255, 255);\">大型石灰岩溶洞,喀斯特岩溶地貌,鸡冠洞长达5600米,供观赏长度1800余米,观赏面积2.3万平方米。5A级景区。此类洞穴在北方少见,被誉为北国第一洞府。八大景区,玉柱潭、溢彩殿、叠帏宫、洞天河、聚仙宫、瑶池宫、藏秀阁、石林坊。溢彩殿顶悬挂的钟乳石,地面上的石笋星罗棋布、流光溢彩,故而得名。各个景区都各有特色,奇异美丽。</span></p><p><br/> </p><p>鸡冠洞位于河南省<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%B4%9B%E9%98%B3%E5%B8%82\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">洛阳市</a><a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%A0%BE%E5%B7%9D%E5%8E%BF/2542573\" data-lemmaid=\"2542573\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">栾川县</a>,县城西三公里,<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E7%A7%A6%E5%B2%AD\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">秦岭</a>余脉<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E4%BC%8F%E7%89%9B%E5%B1%B1\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">伏牛山</a>支脉鸡冠山的半山腰上,海拔1021米。</p><p>鸡冠洞是一处大型的石灰岩溶洞,喀斯特岩溶地貌,鸡冠洞长达5600米,供观赏长度1800余米,观赏面积2.3万平方米。此类洞穴在北方少见,被誉为北国第一洞府。</p><p>2012年1月9日被中国国家旅游局授予国家5A级旅游景区称号。</p><p><br/> </p>', 'spots/thumbnail/2018/10/eb4f9f6b-bebf-44b5-835a-5d356ab3119c_480_320_T7UrY8k.jpg', 'spots/mainfigure/2018/10/50047581-5abe-400f-90cf-5b4dd9b1a6b5_480_320_8udunHe.jpg', 'natural', '0379-00000000', '全年', '河南省洛阳市栾川县城西三公里', '80', '2018-10-16 09:59:00.000000', '111.577142', '33.789745');
INSERT INTO `scenicspots_spots` VALUES ('4', '洛阳白马寺', '<p><a target=\"_blank\" href=\"https://baike.baidu.com/item/%E7%99%BD%E9%A9%AC%E5%AF%BA/4680\" data-lemmaid=\"4680\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">白马寺</a>位于河南省洛阳市老城以东12公里,洛龙区白马寺镇内。创建于<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E4%B8%9C%E6%B1%89/395223\" data-lemmaid=\"395223\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">东汉</a>永平十一年(公元68年),中国第一<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E5%8F%A4%E5%88%B9/6565710\" data-lemmaid=\"6565710\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">古刹</a>,世界著名伽蓝,是佛教传入中国后兴建的第一座官办寺院,有<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E4%B8%AD%E5%9B%BD%E4%BD%9B%E6%95%99/364238\" data-lemmaid=\"364238\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">中国佛教</a>的“祖庭”和“释源”之称,距今已有1900多年的历史。现存的遗址古迹为元、明、清时所留。寺内保存了大量元代夹纻干漆造像如三世佛、二天将、十八罗汉等,弥足珍贵。</p><p>1961年,白马寺被中华人民共和国国务院公布为第一批<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E5%85%A8%E5%9B%BD%E9%87%8D%E7%82%B9%E6%96%87%E7%89%A9%E4%BF%9D%E6%8A%A4%E5%8D%95%E4%BD%8D\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">全国重点文物保护单位</a>。1983年,被国务院确定为全国<a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%B1%89%E4%BC%A0%E4%BD%9B%E6%95%99/3498693\" data-lemmaid=\"3498693\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">汉传佛教</a>重点寺院。2001年1月,白马寺被国家旅游局命名为首批<a target=\"_blank\" href=\"https://baike.baidu.com/item/AAAA%E7%BA%A7%E6%99%AF%E5%8C%BA\" style=\"color: rgb(19, 110, 194); text-decoration-line: none;\">AAAA级景区</a>。</p><p><br/> </p>', 'spots/thumbnail/2018/10/b151f8198618367a39ac6bc927738bd4b31ce5f9_a4KWxIC.jpg', 'spots/mainfigure/2018/10/908fa0ec08fa513d21fb78ca346d55fbb2fbd954_x4azeuQ.jpg', 'natural', '0379-63781065', '全年', '河南省洛阳市洛龙区白马寺镇', '50', '2018-10-16 10:03:00.000000', '112.611892', '34.727587');
INSERT INTO `scenicspots_spots` VALUES ('5', '中国国花园', '<p><span style=\"color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">中国国花园始建于2001年9月,是我国目前最大的牡丹专类观赏园,位于河南省洛阳市洛河南岸隋唐城遗址之上,东起洛龙路,西至</span><a target=\"_blank\" href=\"https://baike.baidu.com/item/%E7%89%A1%E4%B8%B9%E6%A1%A5\" style=\"color: rgb(19, 110, 194); text-decoration-line: none; font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; white-space: normal; background-color: rgb(255, 255, 255);\">牡丹桥</a><span style=\"color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">,南临洛宜路,北依</span><a target=\"_blank\" href=\"https://baike.baidu.com/item/%E6%B4%9B%E6%B2%B3\" style=\"color: rgb(19, 110, 194); text-decoration-line: none; font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; white-space: normal; background-color: rgb(255, 255, 255);\">洛河</a><span style=\"color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">,东西长2400米,南北最宽524米,占地1548亩。中国国花园以隋唐历史文化为底蕴,以牡丹文化为主要内容,融历史文化、牡丹文化和园林景观为一体,充分展示了牡丹之美、之清、之幽,享有“中国国花第一园”之美誉。自西向东共分为六个景区,即:西入口景区、牡丹文化区、牡丹历史文化区、堤面游赏区、东入口景区、生产管理区。其中种植牡丹1000多个品种50万株,包含牡丹的九大色系,种植乔、灌木及各类植物100多个品种200余万株。在环境布置上以植物见长,自然</span><a class=\"lemma-album layout-right nslog:10000206\" title=\"洛阳半龛居士刘中州牡丹画册页\" href=\"https://baike.baidu.com/pic/%E4%B8%AD%E5%9B%BD%E5%9B%BD%E8%8A%B1%E5%9B%AD/2955321/10333718/5fdf8db1cb134954cb1c01c3544e9258d1094a13?fr=lemma&ct=cover\" target=\"_blank\" nslog-type=\"10000206\" style=\"color: rgb(19, 110, 194); text-decoration-line: none; display: block; width: 221px; border-bottom: 0px; margin: 10px 0px; position: relative; float: right; clear: right; font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; white-space: normal; background-color: rgb(255, 255, 255);\"></a></p><p></p><p><span style=\"color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">流畅,突出体现了传统</span><a target=\"_blank\" href=\"https://baike.baidu.com/item/%E7%9A%87%E5%AE%B6%E5%9B%AD%E6%9E%97\" style=\"color: rgb(19, 110, 194); text-decoration-line: none; font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">皇家园林</a><span style=\"color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">的造园风格。</span></p><p><br/></p>', 'spots/thumbnail/2018/10/timg_7Squhac.jpeg', 'spots/mainfigure/2018/10/timg_1_cKWahDn_H3hLvUv.jpeg', 'leisure', '0379-65522119', '全年', '东门:洛阳桥南,西门:牡丹桥南', '10', '2018-10-16 10:07:00.000000', '112.465145', '34.661831');
-- ----------------------------
-- Table structure for shop_product
-- ----------------------------
DROP TABLE IF EXISTS `shop_product`;
CREATE TABLE `shop_product` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`price` double NOT NULL,
`num` int(11) NOT NULL,
`freight` int(11) NOT NULL,
`origin` varchar(20) NOT NULL,
`pro_type` varchar(3) NOT NULL,
`buyers` int(11) NOT NULL,
`comments` int(11) NOT NULL,
`details` longtext NOT NULL,
`add_time` datetime(6) NOT NULL,
`mainimg` varchar(100) NOT NULL,
`remind` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of shop_product
-- ----------------------------
INSERT INTO `shop_product` VALUES ('1', '红心柚子10斤整箱福建平和管溪蜜柚新鲜水果包邮红肉密柚', '29.8', '473', '0', '福建漳州', 'sg', '30', '0', '<p><span style=\"color: rgb(255, 0, 0);\"><em><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">新品上市</span></em></span></p><p><span style=\"color: rgb(255, 0, 0);\"><em><span style=\"font-size: 24px; font-family: 隶书, SimLi;\"><br/> </span></em></span></p><p><span style=\"color: rgb(255, 0, 0);\"><em><span style=\"font-size: 24px; font-family: 隶书, SimLi;\"><img src=\"/media/shop/ueditor/image_20181101141949_382.png\" title=\"\" alt=\"image.png\"/> </span></em></span></p><p><span style=\"color: rgb(255, 0, 0);\"><em><span style=\"font-size: 24px; font-family: 隶书, SimLi;\"><br/> </span></em></span></p><p><span style=\"color: rgb(255, 0, 0);\"><em><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍<em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0);\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0);\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0);\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0);\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0);\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0);\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em><em style=\"color: rgb(255, 0, 0); white-space: normal;\"><span style=\"font-size: 24px; font-family: 隶书, SimLi;\">产品介绍</span></em></span></em></span></p>', '2018-08-01 10:11:00.000000', 'product/mainimg/2018/11/u8997057393192590278fm26gp0.jpg', '此商品为鲜活易腐类,不支持7天无理由退货');
INSERT INTO `shop_product` VALUES ('2', '无籽青柠檬 皮薄汁多新鲜水果 500g', '10', '553', '10', '福建厦门', 'sg', '0', '0', '<p><img src=\"/media/shop/ueditor/image_20181101142048_101.png\" title=\"\" alt=\"image.png\"/> </p>', '2018-10-06 14:20:00.000000', 'product/mainimg/2018/11/546475.jpeg', '此商品为鲜活易腐类,不支持7天无理由退货');
INSERT INTO `shop_product` VALUES ('3', '新鲜有机水果大红寒富苹果农场现摘红富士甜脆可口1斤包邮', '10', '561', '0', '辽宁鞍山', 'sg', '50', '0', '<p style=\"text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\">脆甜多汁大苹果</span></p><p style=\"text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\">脆甜多汁大苹果</span></span></p><p style=\"text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\">脆甜多汁大苹果</span></span></span></p><p style=\"text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\">脆甜多汁大苹果</span></span></span></span></p><p style=\"text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\"><span style=\"color: rgb(227, 108, 9); font-size: 36px; text-align: center;\">脆甜多汁大苹果</span></span></span></span></span></p>', '2018-11-01 14:36:00.000000', 'product/mainimg/2018/11/34553434.jpeg', null);
INSERT INTO `shop_product` VALUES ('4', '东北大米新米 农家自产长粒香大米5kg精选不抛光散装粳米10', '59', '129', '5', '东北', 'ncp', '0', '0', '<p>大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介大米简介</p>', '2018-11-01 14:42:00.000000', 'product/mainimg/2018/11/2142345.jpeg', null);
INSERT INTO `shop_product` VALUES ('5', '黄豆江西农家非转基因自种 5斤打豆浆生豆芽专用散装小黄豆', '72', '1402', '0', '江西', 'ncp', '15', '0', '<ul class=\"parameter2 p-parameter-list list-paddingleft-2\" style=\"list-style-type: none;\"><li><p style=\"text-align: center;\"><span style=\"color: rgb(255, 0, 0);\">商品名称:黄豆江西农家非转基因自种 5斤打豆浆生豆芽专用散装小黄豆</span></p></li><li><p style=\"text-align: center;\"><span style=\"color: rgb(255, 0, 0);\">商品编号:32519106186</span></p></li><li><p style=\"text-align: center;\"><span style=\"color: rgb(255, 0, 0);\">商品毛重:2.5kg</span></p></li><li><p style=\"text-align: center;\"><span style=\"color: rgb(255, 0, 0);\">货号:557403272799</span></p></li><li><p style=\"text-align: center;\"><span style=\"color: rgb(255, 0, 0);\">分类:黄豆</span></p></li></ul><p><br/> </p>', '2018-11-01 14:48:00.000000', 'product/mainimg/2018/11/u8602493881365701743fm200gp0.jpg', null);
INSERT INTO `shop_product` VALUES ('6', '纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺', '498', '25', '0', '广东中山', 'gyp', '3', '0', '<ul class=\"parameter2 p-parameter-list list-paddingleft-2\" style=\"list-style-type: none;\"><li><p>商品名称:纯铜梅花鹿摆件新中式家居客厅装饰品玄关茶几电视柜创意艺术工艺品办公室书房铜摆设开业招财乔迁礼物礼品 铜梅花鹿</p></li><li><p>商品编号:00000000</p></li><li><p>商品毛重:1.5kg</p></li><li><p>材质:铜</p></li><li><p>风格:新中式</p></li><li><p>类型:桌面摆件</p></li><li><p>分类:装饰摆件</p></li><li><p>适用场景:客厅,玄关,书房,餐厅</p></li></ul><p><br/> </p>', '2018-11-01 14:51:00.000000', 'product/mainimg/2018/11/342355.jpeg', '支持七天无理由退货');
INSERT INTO `shop_product` VALUES ('7', '木制帆船33cm深蓝色2050 客厅酒柜电视柜摆件家居装饰品', '1598', '45', '0', '浙江义乌', 'gyp', '21', '0', '<ul class=\"parameter2 p-parameter-list list-paddingleft-2\" style=\"list-style-type: none;\"><li><p>商品名称:墨斗鱼木制帆船33cm 深蓝色2050</p></li><li><p>商品编号:7476412</p></li><li><p>商品毛重:0.66kg</p></li><li><p>商品产地:浙江义乌</p></li><li><p>材质:木质</p></li><li><p>风格:现代简约</p></li><li><p>类型:桌面摆件</p></li><li><p>外观造型:建筑</p></li><li><p>分类:装饰摆件</p></li><li><p>用途:事业</p></li><li><p>适用场景:客厅,玄关,书房,餐厅</p></li></ul><p><br/> </p>', '2018-11-01 14:54:00.000000', 'product/mainimg/2018/11/123asd.jpeg', '支持七天无理由退货');
INSERT INTO `shop_product` VALUES ('8', '德芙 Dove巧克力分享碗装 丝滑牛奶巧克力 糖果巧克力', '29.8', '839', '0', '北京', 'fsp', '1', '0', '<ul class=\"parameter2 p-parameter-list list-paddingleft-2\" style=\"list-style-type: none;\"><li><p>商品名称:德芙牛奶巧克力</p></li><li><p>商品编号:1178879</p></li><li><p>商品毛重:310.00g</p></li><li><p>商品产地:北京/嘉兴</p></li><li><p>国产/进口:国产</p></li><li><p>分类:巧克力</p></li><li><p>形状:排块</p></li></ul><p><br/> </p>', '2018-11-01 14:55:00.000000', 'product/mainimg/2018/11/timg.jpeg', '');
-- ----------------------------
-- Table structure for shop_propic
-- ----------------------------
DROP TABLE IF EXISTS `shop_propic`;
CREATE TABLE `shop_propic` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`image` varchar(100) NOT NULL,
`product_id` int(11) NOT NULL,
`add_time` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
KEY `shop_propic_product_id_32f51b91_fk_shop_product_id` (`product_id`),
CONSTRAINT `shop_propic_product_id_32f51b91_fk_shop_product_id` FOREIGN KEY (`product_id`) REFERENCES `shop_product` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of shop_propic
-- ----------------------------
INSERT INTO `shop_propic` VALUES ('1', 'product/2018/11/sdadasdsf.jpeg', '1', '2018-11-01 14:33:00.000000');
INSERT INTO `shop_propic` VALUES ('2', 'product/2018/11/u13169828951304490032fm26gp0.jpg', '1', '2018-11-01 14:34:00.000000');
INSERT INTO `shop_propic` VALUES ('3', 'product/2018/11/u18929235521492736427fm200gp0.jpg', '1', '2018-11-01 14:34:00.000000');
INSERT INTO `shop_propic` VALUES ('5', 'product/2018/11/youzi1.jpeg', '1', '2018-11-01 14:34:00.000000');
INSERT INTO `shop_propic` VALUES ('6', 'product/2018/11/u5982165093666614667fm26gp0.jpg', '2', '2018-11-01 14:35:00.000000');
INSERT INTO `shop_propic` VALUES ('7', 'product/2018/11/u7601192363179539404fm26gp0.jpg', '2', '2018-11-01 14:36:00.000000');
INSERT INTO `shop_propic` VALUES ('8', 'product/2018/11/u10823352311037865581fm200gp0.jpg', '2', '2018-11-01 14:36:00.000000');
INSERT INTO `shop_propic` VALUES ('9', 'product/2018/11/u13006401731507832118fm200gp0.jpg', '3', '2018-11-01 14:39:00.000000');
INSERT INTO `shop_propic` VALUES ('10', 'product/2018/11/u21326009963129401320fm200gp0.jpg', '3', '2018-11-01 14:40:00.000000');
INSERT INTO `shop_propic` VALUES ('11', 'product/2018/11/u2619906361712776241fm200gp0.jpg', '3', '2018-11-01 14:40:00.000000');
INSERT INTO `shop_propic` VALUES ('12', 'product/2018/11/5b6176c3N4ace3d7a.jpg', '4', '2018-11-01 14:46:00.000000');
INSERT INTO `shop_propic` VALUES ('13', 'product/2018/11/5b6176caNdd0e0859.jpg', '4', '2018-11-01 14:47:00.000000');
INSERT INTO `shop_propic` VALUES ('14', 'product/2018/11/u21469647391264340391fm200gp0.jpg', '5', '2018-11-01 14:50:00.000000');
INSERT INTO `shop_propic` VALUES ('15', 'product/2018/11/u22923944891760817181fm200gp0.jpg', '5', '2018-11-01 14:50:00.000000');
INSERT INTO `shop_propic` VALUES ('16', 'product/2018/11/u257853416681158271fm200gp0.jpg', '5', '2018-11-01 14:50:00.000000');
INSERT INTO `shop_propic` VALUES ('17', 'product/2018/11/u42067941022732747374fm26gp0.jpg', '5', '2018-11-01 14:50:00.000000');
INSERT INTO `shop_propic` VALUES ('18', 'product/2018/11/5b5edba5N60720245.jpg', '6', '2018-11-01 14:53:00.000000');
INSERT INTO `shop_propic` VALUES ('19', 'product/2018/11/5b5edba6N904080ff.jpg', '6', '2018-11-01 14:53:00.000000');
INSERT INTO `shop_propic` VALUES ('20', 'product/2018/11/5b068a12N6bb7b1e4.jpg', '7', '2018-11-01 14:55:00.000000');
INSERT INTO `shop_propic` VALUES ('21', 'product/2018/11/u12968643141600296057fm26gp0.jpg', '8', '2018-11-01 14:59:00.000000');
INSERT INTO `shop_propic` VALUES ('22', 'product/2018/11/u23076616973972066607fm26gp0.jpg', '8', '2018-11-01 14:59:00.000000');
INSERT INTO `shop_propic` VALUES ('23', 'product/2018/11/u36642129033322461283fm26gp0.jpg', '8', '2018-11-01 14:59:00.000000');
-- ----------------------------
-- Table structure for users_areainfo
-- ----------------------------
DROP TABLE IF EXISTS `users_areainfo`;
CREATE TABLE `users_areainfo` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(30) NOT NULL,
`Parent_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `users_areainfo_Parent_id_1438e84c_fk_users_areainfo_id` (`Parent_id`),
CONSTRAINT `users_areainfo_Parent_id_1438e84c_fk_users_areainfo_id` FOREIGN KEY (`Parent_id`) REFERENCES `users_areainfo` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=990101 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of users_areainfo
-- ----------------------------
INSERT INTO `users_areainfo` VALUES ('110000', '北京', '0');
INSERT INTO `users_areainfo` VALUES ('110100', '北京市', '110000');
INSERT INTO `users_areainfo` VALUES ('110101', '东城', '110100');
INSERT INTO `users_areainfo` VALUES ('110102', '西城', '110100');
INSERT INTO `users_areainfo` VALUES ('110103', '崇文', '110100');
INSERT INTO `users_areainfo` VALUES ('110104', '宣武', '110100');
INSERT INTO `users_areainfo` VALUES ('110105', '朝阳', '110100');
INSERT INTO `users_areainfo` VALUES ('110106', '丰台', '110100');
INSERT INTO `users_areainfo` VALUES ('110107', '石景山', '110100');
INSERT INTO `users_areainfo` VALUES ('110108', '海淀', '110100');
INSERT INTO `users_areainfo` VALUES ('110109', '门头沟', '110100');
INSERT INTO `users_areainfo` VALUES ('110111', '房山', '110100');
INSERT INTO `users_areainfo` VALUES ('110112', '通州', '110100');
INSERT INTO `users_areainfo` VALUES ('110113', '顺义', '110100');
INSERT INTO `users_areainfo` VALUES ('110114', '昌平', '110100');
INSERT INTO `users_areainfo` VALUES ('110115', '大兴', '110100');
INSERT INTO `users_areainfo` VALUES ('110116', '怀柔', '110100');
INSERT INTO `users_areainfo` VALUES ('110117', '平谷', '110100');
INSERT INTO `users_areainfo` VALUES ('110228', '密云', '110100');
INSERT INTO `users_areainfo` VALUES ('110229', '延庆', '110100');
INSERT INTO `users_areainfo` VALUES ('110230', '其它', '110100');
INSERT INTO `users_areainfo` VALUES ('120000', '天津', '0');
INSERT INTO `users_areainfo` VALUES ('120100', '天津市', '120000');
INSERT INTO `users_areainfo` VALUES ('120101', '和平', '120100');
INSERT INTO `users_areainfo` VALUES ('120102', '河东', '120100');
INSERT INTO `users_areainfo` VALUES ('120103', '河西', '120100');