This repository has been archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_hrbkcwl.sql
5271 lines (5163 loc) · 541 KB
/
db_hrbkcwl.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 : localhost_3306
Source Server Version : 50553
Source Host : localhost:3306
Source Database : db_yabuli
Target Server Type : MYSQL
Target Server Version : 50553
File Encoding : 65001
Date: 2018-05-31 13:56:51
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for cool_ad
-- ----------------------------
DROP TABLE IF EXISTS `cool_ad`;
CREATE TABLE `cool_ad` (
`ad_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '广告名称',
`type_id` tinyint(5) NOT NULL COMMENT '所属位置',
`pic` varchar(200) NOT NULL DEFAULT '' COMMENT '广告图片URL',
`url` varchar(200) NOT NULL DEFAULT '' COMMENT '广告链接',
`addtime` int(11) NOT NULL COMMENT '添加时间',
`sort` int(11) NOT NULL COMMENT '排序',
`open` tinyint(2) NOT NULL COMMENT '1=审核 0=未审核',
`content` varchar(225) DEFAULT '' COMMENT '广告内容',
PRIMARY KEY (`ad_id`),
KEY `plug_ad_adtypeid` (`type_id`)
) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_ad
-- ----------------------------
INSERT INTO `cool_ad` VALUES ('35', '平安融e贷', '10', '/uploads/20171010/e245a1886f7f276c8c3843aefc113aaf.jpg', '#', '1506391556', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('36', '哈尔滨大剧院', '10', '/uploads/20171010/b9f19816b9b71e6f039e67b2c4351a13.jpg', '#.', '1506391739', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('37', '哈尔滨工业大学', '10', '/uploads/20171010/cec4332c551c2475d795ab1ba2d1a520.jpg', '#.', '1506391774', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('38', '阿蒙木业', '10', '/uploads/20171010/35939915f228c59ddd97b813b1b8455b.jpg', '#.', '1506391793', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('39', '晓峰律师', '10', '/uploads/20171010/2bf04fa1a878c6027ea3be15080cd698.jpg', '#.', '1506391809', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('40', '汤火功夫', '10', '/uploads/20171010/9cabdf51c808b13a83442def3386ee69.jpg', '#.', '1506391829', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('41', '积善家香肠工坊', '10', '/uploads/20171010/d4dc617bff4b5b8cbb2b3542a0de25d4.jpg', 'http://www.baidu.com', '1506392144', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('42', '北方艺考', '10', '/uploads/20171010/f011aba52e7381fa1efdb233a2f74578.jpg', '#', '1507639979', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('43', '释尚商城', '10', '/uploads/20171010/419e793035d7057c67b53216990e5c33.jpg', '#', '1507640097', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('44', '格罗斯红酒', '10', '/uploads/20171010/38dbe8238a6252663cd4cbe2f20c6cbc.jpg', '#', '1507640125', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('45', 'picheir', '10', '/uploads/20171010/06d668b2661b367ed15dce90d570a287.jpg', '#', '1507640154', '50', '1', '');
INSERT INTO `cool_ad` VALUES ('46', '哈尔滨轮滑协会', '10', '/uploads/20171010/d3edc11e12d9c3e736235dd203e52917.jpg', '#', '1507640193', '50', '1', '');
-- ----------------------------
-- Table structure for cool_addons
-- ----------------------------
DROP TABLE IF EXISTS `cool_addons`;
CREATE TABLE `cool_addons` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`name` varchar(40) NOT NULL COMMENT '插件名或标识',
`title` varchar(20) NOT NULL DEFAULT '' COMMENT '中文名',
`description` text COMMENT '插件描述',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
`config` text COMMENT '配置',
`author` varchar(40) DEFAULT '' COMMENT '作者',
`version` varchar(20) DEFAULT '' COMMENT '版本号',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '安装时间',
`has_adminlist` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否有后台列表',
`is_weixin` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COMMENT='插件表';
-- ----------------------------
-- Records of cool_addons
-- ----------------------------
INSERT INTO `cool_addons` VALUES ('46', 'invoiceform', '发票系统', '发票系统管理', '1', '{\"display\":\"1\"}', 'by wzs', '0.1', '1527661050', '0', '1');
INSERT INTO `cool_addons` VALUES ('45', 'diyform', '预订系统', '客房预订,会议预订管理', '1', '{\"display\":\"1\"}', 'by wzs', '0.1', '1527661017', '0', '1');
INSERT INTO `cool_addons` VALUES ('48', 'memberform', '会员系统', '会员系统管理', '1', '{\"display\":\"1\"}', 'by wzs', '0.1', '1527733995', '0', '1');
-- ----------------------------
-- Table structure for cool_admin
-- ----------------------------
DROP TABLE IF EXISTS `cool_admin`;
CREATE TABLE `cool_admin` (
`admin_id` tinyint(4) NOT NULL AUTO_INCREMENT COMMENT '管理员ID',
`username` varchar(20) NOT NULL COMMENT '管理员用户名',
`pwd` varchar(70) NOT NULL COMMENT '管理员密码',
`group_id` mediumint(8) DEFAULT NULL COMMENT '分组ID',
`email` varchar(30) DEFAULT NULL COMMENT '邮箱',
`realname` varchar(10) DEFAULT NULL COMMENT '真实姓名',
`tel` varchar(30) DEFAULT NULL COMMENT '电话号码',
`ip` varchar(20) DEFAULT NULL COMMENT 'IP地址',
`add_time` int(11) DEFAULT NULL COMMENT '添加时间',
`mdemail` varchar(50) DEFAULT '0' COMMENT '传递修改密码参数加密',
`is_open` tinyint(2) DEFAULT '0' COMMENT '审核状态',
PRIMARY KEY (`admin_id`),
KEY `admin_username` (`username`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_admin
-- ----------------------------
INSERT INTO `cool_admin` VALUES ('1', 'admin', '0192023a7bbd73250516f069df18b500', '1', '[email protected]', '', '18792402229', '127.0.0.1', '1482132862', '0', '1');
INSERT INTO `cool_admin` VALUES ('9', 'wzs28150', '0192023a7bbd73250516f069df18b500', '3', '[email protected]', null, '18745170304', '127.0.0.1', '1527470238', '0', '0');
-- ----------------------------
-- Table structure for cool_ad_type
-- ----------------------------
DROP TABLE IF EXISTS `cool_ad_type`;
CREATE TABLE `cool_ad_type` (
`type_id` tinyint(5) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '广告位名称',
`sort` int(11) NOT NULL COMMENT '广告位排序',
PRIMARY KEY (`type_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_ad_type
-- ----------------------------
INSERT INTO `cool_ad_type` VALUES ('1', '顶部轮播', '1');
INSERT INTO `cool_ad_type` VALUES ('10', '【关于我们】我们合作的客户', '50');
-- ----------------------------
-- Table structure for cool_article
-- ----------------------------
DROP TABLE IF EXISTS `cool_article`;
CREATE TABLE `cool_article` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`userid` int(8) unsigned NOT NULL DEFAULT '0',
`username` varchar(40) NOT NULL DEFAULT '',
`title` varchar(120) NOT NULL DEFAULT '',
`title_style` varchar(225) NOT NULL DEFAULT '',
`thumb` varchar(225) NOT NULL DEFAULT '',
`keywords` varchar(120) NOT NULL DEFAULT '',
`description` mediumtext NOT NULL,
`content` text NOT NULL,
`template` varchar(40) NOT NULL DEFAULT '',
`posid` tinyint(2) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`recommend` tinyint(1) unsigned NOT NULL DEFAULT '0',
`readgroup` varchar(100) NOT NULL DEFAULT '',
`readpoint` smallint(5) NOT NULL DEFAULT '0',
`listorder` int(10) unsigned NOT NULL DEFAULT '0',
`hits` int(11) unsigned NOT NULL DEFAULT '0',
`createtime` int(11) unsigned NOT NULL DEFAULT '0',
`updatetime` int(11) unsigned NOT NULL DEFAULT '0',
`copyfrom` varchar(255) NOT NULL DEFAULT 'CLTPHP',
`fromlink` varchar(255) NOT NULL DEFAULT 'http://www.cltphp.com/',
PRIMARY KEY (`id`),
KEY `status` (`id`,`status`,`listorder`),
KEY `catid` (`id`,`catid`,`status`),
KEY `listorder` (`id`,`catid`,`status`,`listorder`)
) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_article
-- ----------------------------
-- ----------------------------
-- Table structure for cool_auth_group
-- ----------------------------
DROP TABLE IF EXISTS `cool_auth_group`;
CREATE TABLE `cool_auth_group` (
`group_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '全新ID',
`title` char(100) NOT NULL DEFAULT '' COMMENT '标题',
`status` tinyint(1) DEFAULT '0' COMMENT '状态',
`rules` longtext COMMENT '规则',
`addtime` int(11) NOT NULL COMMENT '添加时间',
PRIMARY KEY (`group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_auth_group
-- ----------------------------
INSERT INTO `cool_auth_group` VALUES ('1', '超级管理员', '1', '0,276,1,2,270,15,16,119,120,121,145,17,149,116,117,118,181,151,18,108,114,112,109,110,111,3,5,128,127,126,4,230,232,129,27,29,161,163,164,162,38,167,182,169,166,28,48,247,248,31,32,249,250,251,45,170,171,175,174,173,46,176,183,179,178,265,206,207,212,208,213,258,259,260,261,262,209,215,214,263,210,217,216,264,211,266,277,189,190,193,192,240,239,241,243,244,245,242,246,274,275,7,9,14,234,13,235,236,237,238,280,196,197,202,198,252,253,254,255,256,203,205,204,257,272,278,267,279,281,282,283,284,285,286,287,288,289,290,291,292,293,294,298,299,300,301,302,303,304,305,306,', '1465114224');
INSERT INTO `cool_auth_group` VALUES ('2', '管理员', '1', '1,15,16,120,146,40,41,7,8,12,139,11,136,154,137,138,135,25,140,141,142,9,13,157,158,159,160,155,14,156,27,29,37,161,163,164,162,38,167,182,168,169,165,166,35,36,39,28,31,32,33,34,44,45,170,171,172,173,174,175,46,176,183,177,178,179,48,49,281,282,283,284,285,286,287,288,289,290,291,292,293,294,298,299,300,301,302,303,304,305,306,', '1465114224');
INSERT INTO `cool_auth_group` VALUES ('3', '文章管理员', '1', '27,29,161,163,164,162,38,167,182,169,166,277,189,190,193,192,240,239,241,243,244,245,242,246,7,9,14,234,13,235,236,237,238,', '1465114224');
-- ----------------------------
-- Table structure for cool_auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `cool_auth_rule`;
CREATE TABLE `cool_auth_rule` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`href` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
`authopen` tinyint(2) NOT NULL DEFAULT '1',
`icon` varchar(20) DEFAULT NULL COMMENT '样式',
`condition` char(100) DEFAULT '',
`pid` int(5) NOT NULL DEFAULT '0' COMMENT '父栏目ID',
`sort` int(11) DEFAULT '0' COMMENT '排序',
`addtime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`zt` int(1) DEFAULT NULL,
`menustatus` tinyint(1) DEFAULT NULL,
`catid` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=307 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_auth_rule
-- ----------------------------
INSERT INTO `cool_auth_rule` VALUES ('1', 'System', '系统设置', '1', '1', '0', 'icon-cogs', '', '276', '0', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('2', 'System/system', '系统设置', '1', '1', '0', '', '', '1', '1', '1446535789', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('3', 'Database/database', '数据库管理', '1', '1', '0', 'icon-database', '', '276', '2', '1446535805', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('4', 'Database/restore', '还原数据库', '1', '1', '0', '', '', '3', '10', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('5', 'Database/database', '数据库备份', '1', '1', '0', '', '', '3', '1', '1446535834', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('7', 'Category', '栏目管理', '1', '1', '0', 'icon-list', '', '277', '4', '1446535875', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('9', 'Category/index', '栏目列表', '1', '1', '0', '', '', '7', '0', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('13', 'Category/edit', '操作-修改', '1', '1', '0', '', '', '9', '3', '1446535750', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('14', 'Category/add', '操作-添加', '1', '1', '0', '', '', '9', '0', '1446535750', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('15', 'Auth/adminList', '权限管理', '1', '1', '0', 'icon-lifebuoy', '', '276', '1', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('16', 'Auth/adminList', '管理员列表', '1', '1', '0', '', '', '15', '0', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('17', 'Auth/adminGroup', '用户组列表', '1', '1', '0', '', '', '15', '1', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('18', 'Auth/adminRule', '权限管理', '1', '1', '0', '', '', '15', '2', '1446535750', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('23', 'Help/soft', '软件下载', '1', '1', '0', '', '', '22', '50', '1446711421', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('27', 'Users', '会员管理', '1', '1', '0', 'icon-user', '', '276', '5', '1447231507', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('28', 'Function', '网站功能', '1', '1', '0', 'icon-cog', '', '276', '6', '1447231590', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('29', 'Users/index', '会员列表', '1', '1', '0', '', '', '27', '10', '1447232085', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('31', 'Link/index', '友情链接', '1', '1', '0', '', '', '28', '2', '1447232183', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('32', 'Link/add', '操作-添加', '1', '1', '0', '', '', '31', '1', '1447639935', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('36', 'We/we_menu', '自定义菜单', '1', '1', '0', '', '', '35', '50', '1447842477', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('38', 'Users/userGroup', '会员组', '1', '1', '0', '', '', '27', '50', '1448413248', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('39', 'We/we_menu', '自定义菜单', '1', '1', '0', '', '', '36', '50', '1448501584', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('45', 'Ad/index', '广告管理', '1', '1', '0', '', '', '28', '3', '1450314297', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('46', 'Ad/type', '广告位管理', '1', '1', '0', '', '', '28', '4', '1450314324', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('48', 'Message/index', '留言管理', '1', '1', '0', '', '', '28', '1', '1451267354', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('105', 'System/runsys', '操作-保存', '1', '1', '0', '', '', '6', '50', '1461036331', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('106', 'System/runwesys', '操作-保存', '1', '1', '0', '', '', '10', '50', '1461037680', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('107', 'System/runemail', '操作-保存', '1', '1', '0', '', '', '19', '50', '1461039346', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('108', 'Auth/ruleAdd', '操作-添加', '1', '1', '0', '', '', '18', '0', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('109', 'Auth/ruleState', '操作-状态', '1', '1', '0', '', '', '18', '5', '1461550949', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('110', 'Auth/ruleTz', '操作-验证', '1', '1', '0', '', '', '18', '6', '1461551129', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('111', 'Auth/ruleorder', '操作-排序', '1', '1', '0', '', '', '18', '7', '1461551263', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('112', 'Auth/ruleDel', '操作-删除', '1', '1', '0', '', '', '18', '4', '1461551536', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('114', 'Auth/ruleEdit', '操作-修改', '1', '1', '0', '', '', '18', '2', '1461551913', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('116', 'Auth/groupEdit', '操作-修改', '1', '1', '0', '', '', '17', '3', '1461552326', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('117', 'Auth/groupDel', '操作-删除', '1', '1', '0', '', '', '17', '30', '1461552349', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('118', 'Auth/groupAccess', '操作-权限', '1', '1', '0', '', '', '17', '40', '1461552404', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('119', 'Auth/adminAdd', '操作-添加', '1', '1', '0', '', '', '16', '0', '1461553162', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('120', 'Auth/adminEdit', '操作-修改', '1', '1', '0', '', '', '16', '2', '1461554130', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('121', 'Auth/adminDel', '操作-删除', '1', '1', '0', '', '', '16', '4', '1461554152', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('122', 'System/source_runadd', '操作-添加', '1', '1', '0', '', '', '43', '10', '1461036331', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('123', 'System/source_order', '操作-排序', '1', '1', '0', '', '', '43', '50', '1461037680', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('124', 'System/source_runedit', '操作-改存', '1', '1', '0', '', '', '43', '30', '1461039346', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('125', 'System/source_del', '操作-删除', '1', '1', '0', '', '', '43', '40', '146103934', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('126', 'Database/export', '操作-备份', '1', '1', '0', '', '', '5', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('127', 'Database/optimize', '操作-优化', '1', '1', '0', '', '', '5', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('128', 'Database/repair', '操作-修复', '1', '1', '0', '', '', '5', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('129', 'Database/delSqlFiles', '操作-删除', '1', '1', '0', '', '', '4', '3', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('130', 'System/bxgs_state', '操作-状态', '1', '1', '0', '', '', '67', '5', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('131', 'System/bxgs_edit', '操作-修改', '1', '1', '0', '', '', '67', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('132', 'System/bxgs_runedit', '操作-改存', '1', '1', '0', '', '', '67', '2', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('134', 'System/myinfo_runedit', '个人资料修改', '1', '1', '0', '', '', '68', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('236', 'Category/del', '操作-删除', '1', '1', '0', '', '', '9', '5', '1497424900', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('230', 'Database/restoreData', '操作-还原', '1', '1', '0', '', '', '4', '1', '1497423595', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('145', 'Auth/adminState', '操作-状态', '1', '1', '0', '', '', '16', '5', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('149', 'Auth/groupAdd', '操作-添加', '1', '1', '0', '', '', '17', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('151', 'Auth/groupRunaccess', '操作-权存', '1', '1', '0', '', '', '17', '50', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('153', 'System/bxgs_runadd', '操作-添存', '1', '1', '0', '', '', '66', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('234', 'Category/insert', '操作-添存', '1', '1', '0', '', '', '9', '2', '1497424143', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('240', 'Module/del', '操作-删除', '1', '1', '0', '', '', '190', '4', '1497425850', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('239', 'Module/moduleState', '操作-状态', '1', '1', '0', '', '', '190', '5', '1497425764', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('238', 'page/edit', '单页编辑', '1', '1', '0', '', '', '7', '2', '1497425142', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('237', 'Category/cOrder', '操作-排序', '1', '1', '0', '', '', '9', '6', '1497424979', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('161', 'Users/usersState', '操作-状态', '1', '1', '0', '', '', '29', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('162', 'Users/delall', '操作-全部删除', '1', '1', '0', '', '', '29', '4', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('163', 'Users/edit', '操作-编辑', '1', '1', '0', '', '', '29', '2', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('164', 'Users/usersDel', '操作-删除', '1', '1', '0', '', '', '29', '3', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('247', 'Message/del', '操作-删除', '1', '1', '0', '', '', '48', '1', '1497427449', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('166', 'Users/groupOrder', '操作-排序', '1', '1', '0', '', '', '38', '50', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('167', 'Users/groupAdd', '操作-添加', '1', '1', '0', '', '', '38', '10', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('169', 'Users/groupDel', '操作-删除', '1', '1', '0', '', '', '38', '30', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('170', 'Ad/add', '操作-添加', '1', '1', '0', '', '', '45', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('171', 'Ad/edit', '操作-修改', '1', '1', '0', '', '', '45', '2', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('173', 'Ad/del', '操作-删除', '1', '1', '0', '', '', '45', '5', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('174', 'Ad/adOrder', '操作-排序', '1', '1', '0', '', '', '45', '4', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('175', 'Ad/editState', '操作-状态', '1', '1', '0', '', '', '45', '3', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('176', 'Ad/addType', '操作-添加', '1', '1', '0', '', '', '46', '1', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('252', 'Template/edit', '操作-编辑', '1', '1', '0', '', '', '197', '3', '1497428906', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('178', 'Ad/delType', '操作-删除', '1', '1', '0', '', '', '46', '4', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('179', 'Ad/typeOrder', '操作-排序', '1', '1', '0', '', '', '46', '3', '1461550835', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('180', 'System/source_edit', '操作-修改', '1', '1', '0', '', '', '43', '20', '1461832933', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('181', 'Auth/groupState', '操作-状态', '1', '1', '0', '', '', '17', '50', '1461834340', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('182', 'Users/groupEdit', '操作-修改', '1', '1', '0', '', '', '38', '15', '1461834780', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('183', 'Ad/editType', '操作-修改', '1', '1', '0', '', '', '46', '2', '1461834988', '1', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('188', 'Plug/donation', '捐赠列表', '1', '1', '0', '', '', '187', '50', '1466563673', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('189', 'Module', '模型管理', '1', '1', '0', 'icon-ungroup', '', '277', '3', '1466825363', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('190', 'Module/index', '模型列表', '1', '1', '0', '', '', '189', '1', '1466826681', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('192', 'Module/edit', '操作-修改', '1', '1', '0', '', '', '190', '2', '1467007920', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('193', 'Module/add', '操作-添加', '1', '1', '0', '', '', '190', '1', '1467007955', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('196', 'Template', '模版管理', '1', '1', '0', 'icon-embed2', '', '280', '7', '1481857304', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('197', 'Template/index', '模版管理', '1', '1', '0', '', '', '196', '1', '1481857540', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('198', 'Template/insert', '操作-添存', '1', '1', '0', '', '', '197', '2', '1481857587', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('202', 'Template/add', '操作-添加', '1', '1', '0', '', '', '197', '1', '1481859447', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('203', 'Debris/index', '碎片管理', '1', '1', '0', '', '', '196', '2', '1484797759', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('204', 'Debris/edit', '操作-编辑', '1', '1', '0', '', '', '203', '2', '1484797849', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('205', 'Debris/add', '操作-添加', '1', '1', '0', '', '', '203', '1', '1484797878', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('206', 'Wechat', '微信管理', '1', '1', '0', 'icon-bubbles2', '', '276', '8', '1487063570', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('207', 'Wechat/index', '公众号管理', '1', '1', '0', '', '', '206', '1', '1487063705', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('208', 'Wechat/menu', '菜单管理', '1', '1', '0', '', '', '206', '2', '1487063765', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('209', 'Wechat/text', '文本回复', '1', '1', '0', '', '', '206', '3', '1487063834', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('210', 'Wechat/img', '图文回复', '1', '1', '0', '', '', '206', '4', '1487063858', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('211', 'Wechat/news', '消息推送', '1', '1', '0', '', '', '206', '5', '1487063934', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('212', 'Wechat/weixin', '操作-设置', '1', '1', '0', '', '', '207', '1', '1487064541', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('213', 'Wechat/addMenu', '操作-添加', '1', '1', '0', '', '', '208', '1', '1487149151', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('214', 'Wechat/editText', '操作-编辑', '1', '1', '0', '', '', '209', '2', '1487233984', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('215', 'Wechat/addText', '操作-添加', '1', '1', '0', '', '', '209', '1', '1487234062', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('216', 'Wechat/editImg', '操作-编辑', '1', '1', '0', '', '', '210', '2', '1487318148', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('217', 'Wechat/addImg', '操作-添加', '1', '1', '0', '', '', '210', '1', '1487318175', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('232', 'Database/downFile', '操作-下载', '1', '1', '0', '', '', '4', '2', '1497423744', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('235', 'Category/catUpdate', '操作-该存', '1', '1', '0', '', '', '9', '4', '1497424301', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('241', 'Module/field', '模型字段', '1', '1', '0', '', '', '190', '6', '1497425972', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('242', 'Module/fieldStatus', '操作-状态', '1', '1', '0', '', '', '241', '4', '1497426044', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('243', 'Module/fieldAdd', '操作-添加', '1', '1', '0', '', '', '241', '1', '1497426089', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('244', 'Module/fieldEdit', '操作-修改', '1', '1', '0', '', '', '241', '2', '1497426134', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('245', 'Module/listOrder', '操作-排序', '1', '1', '0', '', '', '241', '3', '1497426179', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('246', 'Module/fieldDel', '操作-删除', '1', '1', '0', '', '', '241', '5', '1497426241', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('248', 'Message/delall', '操作-删除全部', '1', '1', '0', '', '', '48', '2', '1497427534', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('249', 'Link/edit', '操作-编辑', '1', '1', '0', '', '', '31', '2', '1497427694', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('250', 'Link/linkState', '操作-状态', '1', '1', '0', '', '', '31', '3', '1497427734', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('251', 'Link/del', '操作-删除', '1', '1', '0', '', '', '31', '4', '1497427780', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('253', 'Template/update', '操作-改存', '1', '1', '0', '', '', '197', '4', '1497428951', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('254', 'Template/delete', '操作-删除', '1', '1', '0', '', '', '197', '5', '1497429018', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('255', 'Template/images', '媒体文件管理', '1', '1', '0', '', '', '197', '6', '1497429157', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('256', 'Template/imgDel', '操作-文件删除', '1', '1', '0', '', '', '255', '1', '1497429217', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('257', 'Debris/del', '操作-删除', '1', '1', '0', '', '', '203', '3', '1497429416', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('258', 'Wechat/editMenu', '操作-编辑', '1', '1', '0', '', '', '208', '2', '1497429671', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('259', 'Wechat/menuOrder', '操作-排序', '1', '1', '0', '', '', '208', '3', '1497429707', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('260', 'Wechat/menuState', '操作-状态', '1', '1', '0', '', '', '208', '4', '1497429764', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('261', 'Wechat/delMenu', '操作-删除', '1', '1', '0', '', '', '208', '5', '1497429822', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('262', 'Wechat/createMenu', '操作-生成菜单', '1', '1', '0', '', '', '208', '6', '1497429886', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('263', 'Wechat/delText', '操作-删除', '1', '1', '0', '', '', '209', '3', '1497430020', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('264', 'Wechat/delImg', '操作-删除', '1', '1', '0', '', '', '210', '3', '1497430159', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('265', 'Donation/index', '捐赠管理', '1', '1', '0', '', '', '28', '5', '1498101716', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('266', 'Wechat/news', '多图文回复', '1', '1', '0', '', '', '206', '7', '1501221710', '0', '0', null);
INSERT INTO `cool_auth_rule` VALUES ('267', 'Addons/index', '插件管理', '1', '1', '1', 'icon-power-cord', '', '278', '8', '1501466560', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('270', 'System/email', '邮箱配置', '1', '1', '0', '', '', '1', '2', '1502331829', '0', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('272', 'Debris/type', '碎片分类', '1', '1', '1', '', '', '196', '3', '1504082720', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('276', 'index/main.html', '系统', '1', '1', '1', 'icon-cogs', '', '0', '1', '1527305359', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('274', 'Article', '内容管理', '1', '1', '1', 'icon-file-text2', '', '277', '4', '1510670765', null, '0', null);
INSERT INTO `cool_auth_rule` VALUES ('291', 'video/index/catid/47.html', '首页视频', '1', '1', '0', null, '', '286', '0', '1527511789', null, null, '47');
INSERT INTO `cool_auth_rule` VALUES ('277', 'Category/index', '内容', '1', '1', '1', 'icon-cogs', '', '0', '2', '1527311011', '1', '1', null);
INSERT INTO `cool_auth_rule` VALUES ('278', 'Addons/index', '插件', '1', '1', '1', 'icon-cogs', '', '0', '4', '1527393444', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('279', 'Addons/index', '插件列表', '1', '1', '1', '', '', '267', '50', '1527393598', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('280', 'Template/index', '模板', '1', '1', '1', '', '', '0', '3', '1527393790', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('286', 'page/index/catid/41.html', '首页管理', '1', '1', '0', null, '', '274', '0', '1527495578', null, null, '41');
INSERT INTO `cool_auth_rule` VALUES ('287', 'page/index/catid/43.html', '首页banner', '1', '1', '0', null, '', '286', '0', '1527495632', null, null, '43');
INSERT INTO `cool_auth_rule` VALUES ('288', 'page/index/catid/44.html', '活动', '1', '1', '0', null, '', '274', '0', '1527495685', null, null, '44');
INSERT INTO `cool_auth_rule` VALUES ('289', 'page/index/catid/45.html', '首页文字介绍', '1', '1', '0', null, '', '286', '0', '1527496322', null, null, '45');
INSERT INTO `cool_auth_rule` VALUES ('290', 'picture/index/catid/46.html', '酒店图片', '1', '1', '0', null, '', '274', '0', '1527497823', null, null, '46');
INSERT INTO `cool_auth_rule` VALUES ('292', 'picture/index/catid/48.html', '客房', '1', '1', '0', null, '', '290', '0', '1527554369', null, null, '48');
INSERT INTO `cool_auth_rule` VALUES ('293', 'picture/index/catid/49.html', '会议', '1', '1', '0', null, '', '290', '0', '1527554384', null, null, '49');
INSERT INTO `cool_auth_rule` VALUES ('294', 'picture/index/catid/50.html', '休闲娱乐', '1', '1', '0', null, '', '290', '0', '1527554412', null, null, '50');
INSERT INTO `cool_auth_rule` VALUES ('295', 'Yuding/index', '预订管理', '1', '1', '1', 'icon-list', '', '277', '50', '1527577422', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('296', 'Yuding/index?type=1', '客房预订', '1', '1', '1', '', '', '295', '50', '1527577487', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('297', 'Yuding/index?type=2', '会议预订', '1', '1', '1', '', '', '295', '50', '1527577515', null, '1', null);
INSERT INTO `cool_auth_rule` VALUES ('298', 'page/index/catid/51.html', '酒店简介', '1', '1', '0', null, '', '288', '0', '1527579793', null, null, '51');
INSERT INTO `cool_auth_rule` VALUES ('299', 'banner/index/catid/52.html', '酒店简介图片', '1', '1', '0', null, '', '288', '0', '1527579860', null, null, '52');
INSERT INTO `cool_auth_rule` VALUES ('300', 'page/index/catid/53.html', '服务', '1', '1', '0', null, '', '274', '0', '1527662693', null, null, '53');
INSERT INTO `cool_auth_rule` VALUES ('301', 'service/index/catid/54.html', '会议服务', '1', '1', '0', null, '', '300', '0', '1527663015', null, null, '54');
INSERT INTO `cool_auth_rule` VALUES ('302', 'service/index/catid/55.html', '客房服务', '1', '1', '0', null, '', '300', '0', '1527663061', null, null, '55');
INSERT INTO `cool_auth_rule` VALUES ('303', 'page/index/catid/56.html', '休闲娱乐', '1', '1', '0', null, '', '300', '0', '1527663098', null, null, '56');
INSERT INTO `cool_auth_rule` VALUES ('304', 'banner/index/catid/57.html', 'banner', '1', '1', '0', null, '', '274', '0', '1527666656', null, null, '57');
INSERT INTO `cool_auth_rule` VALUES ('305', 'banner/index/catid/58.html', '会议服务banner', '1', '1', '0', null, '', '304', '0', '1527666800', null, null, '58');
INSERT INTO `cool_auth_rule` VALUES ('306', 'banner/index/catid/59.html', '酒店图片banner', '1', '1', '0', null, '', '304', '0', '1527667170', null, null, '59');
-- ----------------------------
-- Table structure for cool_banner
-- ----------------------------
DROP TABLE IF EXISTS `cool_banner`;
CREATE TABLE `cool_banner` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`userid` int(8) unsigned NOT NULL DEFAULT '0',
`username` varchar(40) NOT NULL DEFAULT '',
`title` varchar(120) NOT NULL DEFAULT '',
`title_style` varchar(225) NOT NULL DEFAULT '',
`thumb` varchar(225) NOT NULL DEFAULT '',
`keywords` varchar(120) NOT NULL DEFAULT '',
`description` mediumtext NOT NULL,
`content` mediumtext NOT NULL,
`template` varchar(40) NOT NULL DEFAULT '',
`posid` tinyint(2) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`recommend` tinyint(1) unsigned NOT NULL DEFAULT '0',
`readgroup` varchar(100) NOT NULL DEFAULT '',
`readpoint` smallint(5) NOT NULL DEFAULT '0',
`listorder` int(10) unsigned NOT NULL DEFAULT '0',
`hits` int(11) unsigned NOT NULL DEFAULT '0',
`createtime` int(11) unsigned NOT NULL DEFAULT '0',
`updatetime` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `status` (`id`,`status`,`listorder`),
KEY `catid` (`id`,`catid`,`status`),
KEY `listorder` (`id`,`catid`,`status`,`listorder`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_banner
-- ----------------------------
INSERT INTO `cool_banner` VALUES ('1', '43', '1', 'admin', '1', 'color:;font-weight:normal;', '/uploads/20180528/4779cd310e6b72cf75290c43970cc333.jpg', '', '', '', '', '0', '1', '0', '', '0', '1', '0', '1527496056', '0');
INSERT INTO `cool_banner` VALUES ('2', '43', '1', 'admin', '2', 'color:;font-weight:normal;', '/uploads/20180528/8a0fc3bcb8c85300618d54bc788f30b4.jpg', '', '', '', '', '0', '1', '0', '', '0', '2', '0', '1527496092', '0');
INSERT INTO `cool_banner` VALUES ('3', '58', '1', 'admin', '会议服务banner', 'color:;font-weight:normal;', '/uploads/20180530/599a9ca11f11fb22a11517e71e9ac7f5.jpg', '', '', '', '', '0', '1', '0', '', '0', '0', '0', '1527666807', '0');
INSERT INTO `cool_banner` VALUES ('4', '59', '1', 'admin', '1', 'color:;font-weight:normal;', '/uploads/20180530/0b90119d1a16b3aa0c0fb593c7afadfe.jpg', '', '', '', '', '0', '1', '0', '', '0', '0', '0', '1527667178', '0');
INSERT INTO `cool_banner` VALUES ('5', '59', '1', 'admin', '2', 'color:;font-weight:normal;', '/uploads/20180530/8908fc85927155084b8566403a7a19e4.jpg', '', '', '', '', '0', '1', '0', '', '0', '0', '0', '1527667191', '0');
-- ----------------------------
-- Table structure for cool_category
-- ----------------------------
DROP TABLE IF EXISTS `cool_category`;
CREATE TABLE `cool_category` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`catname` varchar(255) NOT NULL DEFAULT '',
`catdir` varchar(30) NOT NULL DEFAULT '',
`parentdir` varchar(50) NOT NULL DEFAULT '',
`parentid` smallint(5) unsigned NOT NULL DEFAULT '0',
`moduleid` tinyint(2) unsigned NOT NULL DEFAULT '0',
`module` char(24) NOT NULL DEFAULT '',
`arrparentid` varchar(100) NOT NULL DEFAULT '',
`arrchildid` varchar(100) NOT NULL DEFAULT '',
`type` tinyint(1) unsigned NOT NULL DEFAULT '0',
`title` varchar(150) NOT NULL DEFAULT '',
`keywords` varchar(200) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
`ishtml` tinyint(1) unsigned NOT NULL DEFAULT '0',
`ismenu` tinyint(1) unsigned NOT NULL DEFAULT '0',
`hits` int(10) unsigned NOT NULL DEFAULT '0',
`image` varchar(100) NOT NULL DEFAULT '',
`child` tinyint(1) unsigned NOT NULL DEFAULT '0',
`url` varchar(100) NOT NULL DEFAULT '',
`template_list` varchar(20) NOT NULL DEFAULT '',
`template_show` varchar(20) NOT NULL DEFAULT '',
`pagesize` tinyint(2) unsigned NOT NULL DEFAULT '0',
`readgroup` varchar(100) NOT NULL DEFAULT '',
`listtype` tinyint(1) unsigned NOT NULL DEFAULT '0',
`lang` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `parentid` (`parentid`),
KEY `listorder` (`listorder`)
) ENGINE=MyISAM AUTO_INCREMENT=60 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_category
-- ----------------------------
INSERT INTO `cool_category` VALUES ('41', '首页管理', 'index', '', '0', '1', 'page', '0', '41,45,47', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('43', '首页banner', 'banner', 'banner/', '57', '14', 'banner', '0,57', '43', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('44', '活动', 'activity', '', '0', '1', 'page', '0', '44,51,52', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('45', '首页文字介绍', 'index', 'index/', '41', '1', 'page', '0,41', '45', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('46', '酒店图片', 'picture', '', '0', '3', 'picture', '0', '46,48,49,50', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('47', '首页视频', 'video', 'index/', '41', '15', 'video', '0,41', '47', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('48', '客房', 'picture', 'picture/', '46', '3', 'picture', '0,46', '48', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('49', '会议', 'picture', 'picture/', '46', '3', 'picture', '0,46', '49', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('50', '休闲娱乐', 'picture', 'picture/', '46', '3', 'picture', '0,46', '50', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('51', '酒店简介', 'activity', 'activity/', '44', '1', 'page', '0,44', '51', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('52', '酒店简介图片', 'activity', 'activity/', '44', '16', 'jdjjtu', '0,44', '52', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('53', '服务', 'service', '', '0', '1', 'page', '0', '53,54,55,56', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('54', '会议服务', 'service', 'service/', '53', '17', 'service', '0,53', '54', '0', '', '', '', '0', '0', '1', '0', '/uploads/20180530/67a0dd97e28bc922017085af6e4660df.jpg', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('55', '客房服务', 'service', 'service/', '53', '17', 'service', '0,53', '55', '0', '', '', '', '0', '0', '1', '0', '/uploads/20180530/34042d43d66e3b2d77adf6d635aabeb8.jpg', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('56', '休闲娱乐', 'service', 'service/', '53', '17', 'service', '0,53', '56', '0', '', '', '', '0', '0', '1', '0', '/uploads/20180530/40d9bc5b129e18f0f7236ac5eee66994.jpg', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('57', 'banner', 'banner', '', '0', '14', 'banner', '0', '57,43,58', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('58', '会议服务banner', 'banner', 'banner/', '57', '14', 'banner', '0,57', '58', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
INSERT INTO `cool_category` VALUES ('59', '酒店图片banner', 'banner', 'banner/', '57', '14', 'banner', '0,57', '59', '0', '', '', '', '0', '0', '1', '0', '', '0', '', '', '', '0', '', '0', '0');
-- ----------------------------
-- Table structure for cool_config
-- ----------------------------
DROP TABLE IF EXISTS `cool_config`;
CREATE TABLE `cool_config` (
`id` smallint(6) unsigned NOT NULL AUTO_INCREMENT COMMENT '表id',
`name` varchar(50) DEFAULT NULL COMMENT '配置的key键名',
`value` varchar(512) DEFAULT NULL COMMENT '配置的val值',
`inc_type` varchar(64) DEFAULT NULL COMMENT '配置分组',
`desc` varchar(50) DEFAULT NULL COMMENT '描述',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=89 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_config
-- ----------------------------
INSERT INTO `cool_config` VALUES ('16', 'is_mark', '0', 'water', '0');
INSERT INTO `cool_config` VALUES ('17', 'mark_txt', '', 'water', '0');
INSERT INTO `cool_config` VALUES ('18', 'mark_img', '/public/upload/public/2017/01-20/10cd966bd5f3549833c09a5c9700a9b8.jpg', 'water', '0');
INSERT INTO `cool_config` VALUES ('19', 'mark_width', '', 'water', '0');
INSERT INTO `cool_config` VALUES ('20', 'mark_height', '', 'water', '0');
INSERT INTO `cool_config` VALUES ('21', 'mark_degree', '54', 'water', '0');
INSERT INTO `cool_config` VALUES ('22', 'mark_quality', '56', 'water', '0');
INSERT INTO `cool_config` VALUES ('23', 'sel', '9', 'water', '0');
INSERT INTO `cool_config` VALUES ('24', 'sms_url', 'https://yunpan.cn/OcRgiKWxZFmjSJ', 'sms', '0');
INSERT INTO `cool_config` VALUES ('25', 'sms_user', '', 'sms', '0');
INSERT INTO `cool_config` VALUES ('26', 'sms_pwd', '访问密码 080e', 'sms', '0');
INSERT INTO `cool_config` VALUES ('27', 'regis_sms_enable', '1', 'sms', '0');
INSERT INTO `cool_config` VALUES ('28', 'sms_time_out', '1200', 'sms', '0');
INSERT INTO `cool_config` VALUES ('38', '__hash__', '8d9fea07e44955760d3407524e469255_6ac8706878aa807db7ffb09dd0b02453', 'sms', '0');
INSERT INTO `cool_config` VALUES ('39', '__hash__', '8d9fea07e44955760d3407524e469255_6ac8706878aa807db7ffb09dd0b02453', 'sms', '0');
INSERT INTO `cool_config` VALUES ('56', 'sms_appkey', '123456789', 'sms', '0');
INSERT INTO `cool_config` VALUES ('57', 'sms_secretKey', '123456789', 'sms', '0');
INSERT INTO `cool_config` VALUES ('58', 'sms_product', 'CLTPHP', 'sms', '0');
INSERT INTO `cool_config` VALUES ('59', 'sms_templateCode', 'SMS_101234567890', 'sms', '0');
INSERT INTO `cool_config` VALUES ('60', 'smtp_server', 'smtp.qq.com', 'smtp', '0');
INSERT INTO `cool_config` VALUES ('61', 'smtp_port', '25', 'smtp', '0');
INSERT INTO `cool_config` VALUES ('62', 'smtp_user', '[email protected]', 'smtp', '0');
INSERT INTO `cool_config` VALUES ('63', 'smtp_pwd', 'asdasda', 'smtp', '0');
INSERT INTO `cool_config` VALUES ('64', 'regis_smtp_enable', '1', 'smtp', '0');
INSERT INTO `cool_config` VALUES ('65', 'test_eamil', '[email protected]', 'smtp', '0');
INSERT INTO `cool_config` VALUES ('70', 'forget_pwd_sms_enable', '1', 'sms', '0');
INSERT INTO `cool_config` VALUES ('71', 'bind_mobile_sms_enable', '1', 'sms', '0');
INSERT INTO `cool_config` VALUES ('72', 'order_add_sms_enable', '1', 'sms', '0');
INSERT INTO `cool_config` VALUES ('73', 'order_pay_sms_enable', '1', 'sms', '0');
INSERT INTO `cool_config` VALUES ('74', 'order_shipping_sms_enable', '1', 'sms', '0');
INSERT INTO `cool_config` VALUES ('88', 'email_id', 'CLTPHP', 'smtp', '0');
-- ----------------------------
-- Table structure for cool_debris
-- ----------------------------
DROP TABLE IF EXISTS `cool_debris`;
CREATE TABLE `cool_debris` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`type_id` int(6) DEFAULT NULL,
`title` varchar(120) DEFAULT NULL,
`content` text,
`addtime` int(13) DEFAULT NULL,
`sort` int(11) DEFAULT '50',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_debris
-- ----------------------------
INSERT INTO `cool_debris` VALUES ('21', '6', '我们致力于', '<p>致力于提供高端网站建设、淘宝装修、SEO优化、微营销、互动创意设计、UI设计、APP开发、VI设计、FLASH网站、视频制作等一系列专业服务。用我们的激情和智慧,勤奋与努力,帮助中小企业开展网站建设,打开互联网营销局面,深刻影响着品牌视觉的经营模式和营销思路。</p>', '1506156876', '50');
INSERT INTO `cool_debris` VALUES ('22', '6', '我们的优势', '<p>酷创网络拥有多年网络服务经验,拥有实力雄厚的技术研发团队,顶级设计师团队。成功服务过数家知名集团企业、品牌客户,凭借对设计的热爱执着,营销趋势的敏锐洞察和深刻理解,与众多客户在蓬勃的市场经济中互促共生。全心全意做服务一点一滴为客户。</p>', '1506156989', '50');
INSERT INTO `cool_debris` VALUES ('23', '6', '我们的愿景', '<p>酷创网络珍视与客户的每次合作,用心服务,让客户听到我们的声音,以“为客户赢得客户”为己任,用我们的激情和智慧,勤奋与努力,帮助中小企业开展网站建设,打开互联网营销局面,深刻影响着品牌视觉的经营模式和营销思路。始终信奉“全力以赴,互促共生”的公司价值观。</p>', '1506157011', '50');
INSERT INTO `cool_debris` VALUES ('25', '7', '关于我们图片滚动1', '<p><img src=\"/public/static/home/images/story-img.jpg\" title=\"1506172488667379.jpg\" alt=\"story-img.jpg\"/></p>', '1506160387', '50');
INSERT INTO `cool_debris` VALUES ('26', '7', '关于我们图片滚动2', '<p><img src=\"/public/static/home/images/story-img-1.jpg\" title=\"1506172869829351.jpg\" alt=\"story-img-1.jpg\"/></p>', '1506172871', '50');
INSERT INTO `cool_debris` VALUES ('27', '7', '关于我们图片滚动3', '<p><img src=\"/public/static/home/images/story-img-2.jpg\" title=\"1506172990742513.jpg\" alt=\"story-img-2.jpg\"/></p>', '1506172991', '50');
-- ----------------------------
-- Table structure for cool_debris_type
-- ----------------------------
DROP TABLE IF EXISTS `cool_debris_type`;
CREATE TABLE `cool_debris_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(120) DEFAULT NULL,
`sort` int(1) DEFAULT '50',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_debris_type
-- ----------------------------
INSERT INTO `cool_debris_type` VALUES ('1', '【首页】中部碎片', '1');
INSERT INTO `cool_debris_type` VALUES ('6', '【关于我们】中部碎片', '50');
INSERT INTO `cool_debris_type` VALUES ('7', '【关于我们】图片滚动', '50');
-- ----------------------------
-- Table structure for cool_diyform
-- ----------------------------
DROP TABLE IF EXISTS `cool_diyform`;
CREATE TABLE `cool_diyform` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT '' COMMENT '留言标题',
`tel` varchar(15) NOT NULL DEFAULT '' COMMENT '留言电话',
`addtime` varchar(15) NOT NULL COMMENT '留言时间',
`open` tinyint(2) NOT NULL DEFAULT '0' COMMENT '1=审核 0=不审核',
`ip` varchar(50) DEFAULT '' COMMENT '留言者IP',
`content` longtext NOT NULL COMMENT '留言内容',
`name` varchar(60) NOT NULL DEFAULT '' COMMENT '用户名',
`email` varchar(50) NOT NULL COMMENT '留言邮箱',
`intime` int(11) DEFAULT NULL,
`outtime` int(11) NOT NULL,
`partyconame` varchar(255) DEFAULT NULL,
`partyname` varchar(255) DEFAULT NULL,
`partytel` varchar(255) DEFAULT NULL,
`partynum` int(11) DEFAULT NULL,
`partytime` int(11) DEFAULT NULL,
`type` int(1) DEFAULT NULL,
`roomnum` int(11) DEFAULT NULL,
`adultnum` int(11) DEFAULT NULL,
`childrennum` int(11) DEFAULT NULL,
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM AUTO_INCREMENT=98 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_diyform
-- ----------------------------
-- ----------------------------
-- Table structure for cool_diyform_category
-- ----------------------------
DROP TABLE IF EXISTS `cool_diyform_category`;
CREATE TABLE `cool_diyform_category` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`href` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
`authopen` tinyint(2) NOT NULL DEFAULT '1',
`icon` varchar(20) DEFAULT NULL COMMENT '样式',
`condition` char(100) DEFAULT '',
`pid` int(5) NOT NULL DEFAULT '0' COMMENT '父栏目ID',
`sort` int(11) DEFAULT '0' COMMENT '排序',
`addtime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`zt` int(1) DEFAULT NULL,
`menustatus` tinyint(1) DEFAULT NULL,
`catid` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=301 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_diyform_category
-- ----------------------------
INSERT INTO `cool_diyform_category` VALUES ('1', '/addons_execute_diyform-admin-index', '预订管理', '1', '1', '0', 'icon-cogs', '', '0', '0', '1446535750', '1', '1', null);
INSERT INTO `cool_diyform_category` VALUES ('2', '/addons_execute_diyform-admin-yuding?type=1', '客房预订', '1', '1', '0', '', '', '1', '1', '1446535789', '1', '1', null);
INSERT INTO `cool_diyform_category` VALUES ('300', '/addons_execute_diyform-admin-yuding?type=2', '会议预订', '1', '1', '0', null, '', '1', '1', '1446535789', '1', '1', null);
-- ----------------------------
-- Table structure for cool_donation
-- ----------------------------
DROP TABLE IF EXISTS `cool_donation`;
CREATE TABLE `cool_donation` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`name` varchar(120) NOT NULL DEFAULT '' COMMENT '用户名',
`money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '捐赠金额',
`addtime` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_donation
-- ----------------------------
INSERT INTO `cool_donation` VALUES ('3', '高飞', '10.00', '1466566714');
INSERT INTO `cool_donation` VALUES ('4', '王磊', '5.50', '1466566733');
INSERT INTO `cool_donation` VALUES ('5', '一匹忧郁的狼', '11.11', '1466566780');
INSERT INTO `cool_donation` VALUES ('6', '神盾', '50.00', '1467517788');
INSERT INTO `cool_donation` VALUES ('7', '赵云的枪', '20.00', '1469582594');
INSERT INTO `cool_donation` VALUES ('8', '王@楠', '5.00', '1473155340');
INSERT INTO `cool_donation` VALUES ('9', '王宁', '10.00', '1473647377');
INSERT INTO `cool_donation` VALUES ('11', '幽鸣', '100.00', '1483080600');
INSERT INTO `cool_donation` VALUES ('12', '得水', '6.60', '1484874321');
INSERT INTO `cool_donation` VALUES ('13', '挨踢男', '50.00', '1485224098');
INSERT INTO `cool_donation` VALUES ('14', '郭强', '6.60', '1486343033');
INSERT INTO `cool_donation` VALUES ('15', '周超', '5.00', '1487570095');
INSERT INTO `cool_donation` VALUES ('16', '栖息地', '20.00', '1488507544');
INSERT INTO `cool_donation` VALUES ('17', '杨萍', '11.00', '1489368971');
INSERT INTO `cool_donation` VALUES ('18', '杨蹦蹦V587', '20.00', '1490608429');
INSERT INTO `cool_donation` VALUES ('19', '锋行天下', '20.00', '1499765536');
INSERT INTO `cool_donation` VALUES ('20', '周伟', '50.00', '1500014307');
INSERT INTO `cool_donation` VALUES ('21', '王者不荣耀', '20.00', '1500368368');
INSERT INTO `cool_donation` VALUES ('22', '老虎的虎', '5.00', '1500867256');
INSERT INTO `cool_donation` VALUES ('23', '老夫子', '20.00', '1501203253');
INSERT INTO `cool_donation` VALUES ('24', '我是传奇', '20.00', '1501567608');
INSERT INTO `cool_donation` VALUES ('25', '秋心', '10.00', '1501807989');
-- ----------------------------
-- Table structure for cool_field
-- ----------------------------
DROP TABLE IF EXISTS `cool_field`;
CREATE TABLE `cool_field` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`moduleid` tinyint(3) unsigned NOT NULL DEFAULT '0',
`field` varchar(20) NOT NULL DEFAULT '',
`name` varchar(30) NOT NULL DEFAULT '',
`tips` varchar(150) NOT NULL DEFAULT '',
`required` tinyint(1) unsigned NOT NULL DEFAULT '0',
`minlength` int(10) unsigned NOT NULL DEFAULT '0',
`maxlength` int(10) unsigned NOT NULL DEFAULT '0',
`pattern` varchar(255) NOT NULL DEFAULT '',
`errormsg` varchar(255) NOT NULL DEFAULT '',
`class` varchar(20) NOT NULL DEFAULT '',
`type` varchar(20) NOT NULL DEFAULT '',
`setup` mediumtext NOT NULL,
`ispost` tinyint(1) NOT NULL DEFAULT '0',
`unpostgroup` varchar(60) NOT NULL DEFAULT '',
`listorder` int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`issystem` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=220 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_field
-- ----------------------------
INSERT INTO `cool_field` VALUES ('1', '1', 'title', '标题', '', '1', '1', '80', '', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'1\',\n \'size\' => \'55\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('2', '1', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '8', '0', '0');
INSERT INTO `cool_field` VALUES ('3', '1', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '97', '1', '1');
INSERT INTO `cool_field` VALUES ('4', '1', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '99', '1', '1');
INSERT INTO `cool_field` VALUES ('5', '1', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '0', '', '98', '1', '1');
INSERT INTO `cool_field` VALUES ('6', '1', 'content', '内容', '', '1', '0', '0', 'defaul', '', 'content', 'editor', 'array (\n \'edittype\' => \'UEditor\',\n)', '0', '', '3', '1', '0');
INSERT INTO `cool_field` VALUES ('7', '2', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('8', '2', 'title', '标题', '', '1', '1', '80', '', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'1\',\n \'size\' => \'55\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('9', '2', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '1', '1');
INSERT INTO `cool_field` VALUES ('10', '2', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '1', '1');
INSERT INTO `cool_field` VALUES ('11', '2', 'content', '内容', '', '0', '0', '0', 'defaul', '', 'content', 'editor', 'array (\n \'edittype\' => \'layedit\',\n)', '1', '', '5', '1', '1');
INSERT INTO `cool_field` VALUES ('12', '2', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '6', '1', '1');
INSERT INTO `cool_field` VALUES ('13', '2', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '10', '0', '0');
INSERT INTO `cool_field` VALUES ('14', '2', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '11', '0', '0');
INSERT INTO `cool_field` VALUES ('15', '2', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '12', '1', '0');
INSERT INTO `cool_field` VALUES ('16', '2', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '13', '1', '1');
INSERT INTO `cool_field` VALUES ('17', '2', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '14', '1', '1');
INSERT INTO `cool_field` VALUES ('18', '2', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '15', '1', '1');
INSERT INTO `cool_field` VALUES ('19', '2', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '7', '1', '1');
INSERT INTO `cool_field` VALUES ('20', '3', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('21', '3', 'title', '标题', '', '1', '1', '80', 'defaul', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'0\',\n \'style\' => \'0\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('22', '3', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '1', '1');
INSERT INTO `cool_field` VALUES ('23', '3', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '1', '1');
INSERT INTO `cool_field` VALUES ('24', '3', 'content', '内容', '', '0', '0', '0', 'defaul', '', 'content', 'editor', 'array (\n \'edittype\' => \'layedit\',\n)', '1', '', '7', '0', '1');
INSERT INTO `cool_field` VALUES ('25', '3', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '8', '1', '1');
INSERT INTO `cool_field` VALUES ('26', '3', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '10', '0', '0');
INSERT INTO `cool_field` VALUES ('27', '3', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '11', '0', '0');
INSERT INTO `cool_field` VALUES ('28', '3', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '12', '0', '0');
INSERT INTO `cool_field` VALUES ('29', '3', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '13', '0', '1');
INSERT INTO `cool_field` VALUES ('30', '3', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '14', '0', '1');
INSERT INTO `cool_field` VALUES ('31', '3', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '15', '0', '1');
INSERT INTO `cool_field` VALUES ('32', '3', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '9', '1', '1');
INSERT INTO `cool_field` VALUES ('33', '3', 'pic', '图片', '', '1', '0', '0', 'defaul', '', 'pic', 'image', '', '0', '', '5', '1', '0');
INSERT INTO `cool_field` VALUES ('34', '3', 'group', '类型', '', '1', '0', '0', 'defaul', '', 'group', 'select', 'array (\n \'options\' => \'模型管理|1\n分类管理|2\n内容管理|3\',\n \'multiple\' => \'0\',\n \'fieldtype\' => \'varchar\',\n \'numbertype\' => \'1\',\n \'size\' => \'\',\n \'default\' => \'\',\n)', '0', '', '6', '0', '0');
INSERT INTO `cool_field` VALUES ('35', '4', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('36', '4', 'title', '标题', '', '1', '1', '80', '', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'1\',\n \'size\' => \'55\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('37', '4', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '1', '1');
INSERT INTO `cool_field` VALUES ('38', '4', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '1', '1');
INSERT INTO `cool_field` VALUES ('39', '4', 'content', '内容', '', '0', '0', '0', 'defaul', '', 'content', 'editor', 'array (\n \'edittype\' => \'layedit\',\n)', '1', '', '8', '1', '1');
INSERT INTO `cool_field` VALUES ('40', '4', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '9', '1', '1');
INSERT INTO `cool_field` VALUES ('41', '4', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '10', '1', '1');
INSERT INTO `cool_field` VALUES ('42', '4', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '11', '0', '0');
INSERT INTO `cool_field` VALUES ('43', '4', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '12', '0', '0');
INSERT INTO `cool_field` VALUES ('44', '4', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '13', '0', '0');
INSERT INTO `cool_field` VALUES ('45', '4', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '14', '0', '1');
INSERT INTO `cool_field` VALUES ('46', '4', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '15', '1', '1');
INSERT INTO `cool_field` VALUES ('47', '4', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '16', '1', '1');
INSERT INTO `cool_field` VALUES ('48', '4', 'price', '价格', '', '1', '0', '0', 'defaul', '', 'price', 'number', 'array (\n \'size\' => \'\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'2\',\n \'default\' => \'0.00\',\n)', '0', '', '5', '1', '0');
INSERT INTO `cool_field` VALUES ('49', '4', 'xinghao', '型号', '', '0', '0', '0', 'defaul', '', '', 'text', 'array (\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '6', '1', '0');
INSERT INTO `cool_field` VALUES ('50', '4', 'pics', '图组', '', '0', '0', '0', 'defaul', '', 'pics', 'images', '', '0', '', '7', '1', '0');
INSERT INTO `cool_field` VALUES ('174', '15', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '0', '1');
INSERT INTO `cool_field` VALUES ('173', '15', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '0', '1');
INSERT INTO `cool_field` VALUES ('172', '15', 'title', '标题', '', '1', '1', '80', '', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'1\',\n \'size\' => \'55\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('170', '14', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '13', '0', '1');
INSERT INTO `cool_field` VALUES ('171', '15', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('169', '14', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '12', '0', '1');
INSERT INTO `cool_field` VALUES ('167', '14', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '10', '0', '0');
INSERT INTO `cool_field` VALUES ('168', '14', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '11', '0', '1');
INSERT INTO `cool_field` VALUES ('166', '14', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '9', '0', '0');
INSERT INTO `cool_field` VALUES ('165', '14', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '8', '0', '0');
INSERT INTO `cool_field` VALUES ('162', '14', 'content', '内容', '', '0', '0', '0', '', '', '', 'editor', 'array (\n \'toolbar\' => \'full\',\n \'default\' => \'\',\n \'height\' => \'\',\n \'showpage\' => \'1\',\n \'enablekeylink\' => \'0\',\n \'replacenum\' => \'\',\n \'enablesaveimage\' => \'0\',\n \'flashupload\' => \'1\',\n \'alowuploadexts\' => \'\',\n)', '1', '', '5', '0', '1');
INSERT INTO `cool_field` VALUES ('163', '14', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '6', '1', '1');
INSERT INTO `cool_field` VALUES ('164', '14', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '7', '1', '1');
INSERT INTO `cool_field` VALUES ('75', '2', 'copyfrom', '来源', '', '0', '0', '0', 'defaul', '', 'copyfrom', 'text', 'array (\n \'default\' => \'CLTPHP\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '8', '1', '0');
INSERT INTO `cool_field` VALUES ('76', '2', 'fromlink', '来源网址', '', '0', '0', '0', 'defaul', '', 'fromlink', 'text', 'array (\n \'default\' => \'http://www.cltphp.com/\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '9', '1', '0');
INSERT INTO `cool_field` VALUES ('183', '15', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '13', '1', '1');
INSERT INTO `cool_field` VALUES ('184', '15', 'xwjsp', '小文件视频上传', '', '1', '0', '0', 'defaul', '', 'xwjsp', 'file', 'array (\n \'upload_allowext\' => \'mp4\',\n)', '0', '', '4', '0', '0');
INSERT INTO `cool_field` VALUES ('182', '15', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '12', '1', '1');
INSERT INTO `cool_field` VALUES ('181', '15', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '11', '0', '1');
INSERT INTO `cool_field` VALUES ('180', '15', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '10', '0', '0');
INSERT INTO `cool_field` VALUES ('179', '15', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '9', '0', '0');
INSERT INTO `cool_field` VALUES ('178', '15', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '8', '0', '0');
INSERT INTO `cool_field` VALUES ('176', '15', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '6', '1', '1');
INSERT INTO `cool_field` VALUES ('177', '15', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '7', '1', '1');
INSERT INTO `cool_field` VALUES ('175', '15', 'content', '内容', '', '0', '0', '0', '', '', '', 'editor', 'array (\n \'toolbar\' => \'full\',\n \'default\' => \'\',\n \'height\' => \'\',\n \'showpage\' => \'1\',\n \'enablekeylink\' => \'0\',\n \'replacenum\' => \'\',\n \'enablesaveimage\' => \'0\',\n \'flashupload\' => \'1\',\n \'alowuploadexts\' => \'\',\n)', '1', '', '5', '0', '1');
INSERT INTO `cool_field` VALUES ('161', '14', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '0', '1');
INSERT INTO `cool_field` VALUES ('160', '14', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '0', '1');
INSERT INTO `cool_field` VALUES ('158', '14', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('159', '14', 'title', '标题', '', '1', '1', '80', '', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'1\',\n \'size\' => \'55\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('185', '15', 'videourl', '视频名称', '', '1', '0', '0', 'defaul', '', 'videourl', 'text', 'array (\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '3', '1', '0');
INSERT INTO `cool_field` VALUES ('186', '3', 'thumbgroup', '组图', '', '1', '0', '0', 'defaul', '', 'thumbgroup', 'images', '', '0', '', '6', '1', '0');
INSERT INTO `cool_field` VALUES ('187', '16', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('188', '16', 'title', '标题', '', '1', '1', '80', 'defaul', '标题必须为1-80个字符', 'title', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'0\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('189', '16', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '0', '1');
INSERT INTO `cool_field` VALUES ('190', '16', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '0', '1');
INSERT INTO `cool_field` VALUES ('191', '16', 'content', '内容', '', '0', '0', '0', '', '', '', 'editor', 'array (\n \'toolbar\' => \'full\',\n \'default\' => \'\',\n \'height\' => \'\',\n \'showpage\' => \'1\',\n \'enablekeylink\' => \'0\',\n \'replacenum\' => \'\',\n \'enablesaveimage\' => \'0\',\n \'flashupload\' => \'1\',\n \'alowuploadexts\' => \'\',\n)', '1', '', '5', '0', '1');
INSERT INTO `cool_field` VALUES ('192', '16', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '6', '1', '1');
INSERT INTO `cool_field` VALUES ('193', '16', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '7', '1', '1');
INSERT INTO `cool_field` VALUES ('194', '16', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '8', '0', '0');
INSERT INTO `cool_field` VALUES ('195', '16', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '9', '0', '0');
INSERT INTO `cool_field` VALUES ('196', '16', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '10', '0', '0');
INSERT INTO `cool_field` VALUES ('197', '16', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '11', '0', '1');
INSERT INTO `cool_field` VALUES ('198', '16', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '12', '0', '1');
INSERT INTO `cool_field` VALUES ('199', '16', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '13', '0', '1');
INSERT INTO `cool_field` VALUES ('200', '17', 'catid', '栏目', '', '1', '1', '6', '', '必须选择一个栏目', '', 'catid', '', '1', '', '1', '1', '1');
INSERT INTO `cool_field` VALUES ('201', '17', 'title', '标题', '', '1', '1', '80', '', '标题必须为1-80个字符', '', 'title', 'array (\n \'thumb\' => \'1\',\n \'style\' => \'1\',\n \'size\' => \'55\',\n)', '1', '', '2', '1', '1');
INSERT INTO `cool_field` VALUES ('202', '17', 'keywords', '关键词', '', '0', '0', '80', '', '', '', 'text', 'array (\n \'size\' => \'55\',\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '1', '', '3', '0', '1');
INSERT INTO `cool_field` VALUES ('203', '17', 'description', 'SEO简介', '', '0', '0', '0', '', '', '', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'rows\' => \'4\',\n \'cols\' => \'55\',\n \'default\' => \'\',\n)', '1', '', '4', '0', '1');
INSERT INTO `cool_field` VALUES ('204', '17', 'content', '内容', '', '0', '0', '0', '', '', '', 'editor', 'array (\n \'toolbar\' => \'full\',\n \'default\' => \'\',\n \'height\' => \'\',\n \'showpage\' => \'1\',\n \'enablekeylink\' => \'0\',\n \'replacenum\' => \'\',\n \'enablesaveimage\' => \'0\',\n \'flashupload\' => \'1\',\n \'alowuploadexts\' => \'\',\n)', '1', '', '5', '0', '1');
INSERT INTO `cool_field` VALUES ('205', '17', 'createtime', '发布时间', '', '1', '0', '0', 'date', '', '', 'datetime', '', '1', '', '99', '1', '1');
INSERT INTO `cool_field` VALUES ('206', '17', 'status', '状态', '', '0', '0', '0', '', '', '', 'radio', 'array (\n \'options\' => \'发布|1\r\n定时发布|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'75\',\n \'default\' => \'1\',\n)', '1', '', '100', '1', '1');
INSERT INTO `cool_field` VALUES ('207', '17', 'recommend', '允许评论', '', '0', '0', '1', '', '', '', 'radio', 'array (\n \'options\' => \'允许评论|1\r\n不允许评论|0\',\n \'fieldtype\' => \'tinyint\',\n \'numbertype\' => \'1\',\n \'labelwidth\' => \'\',\n \'default\' => \'\',\n)', '1', '', '8', '0', '0');
INSERT INTO `cool_field` VALUES ('208', '17', 'readpoint', '阅读收费', '', '0', '0', '5', '', '', '', 'number', 'array (\n \'size\' => \'5\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '9', '0', '0');
INSERT INTO `cool_field` VALUES ('209', '17', 'hits', '点击次数', '', '0', '0', '8', '', '', '', 'number', 'array (\n \'size\' => \'10\',\n \'numbertype\' => \'1\',\n \'decimaldigits\' => \'0\',\n \'default\' => \'0\',\n)', '1', '', '10', '0', '0');
INSERT INTO `cool_field` VALUES ('210', '17', 'readgroup', '访问权限', '', '0', '0', '0', '', '', '', 'groupid', 'array (\n \'inputtype\' => \'checkbox\',\n \'fieldtype\' => \'tinyint\',\n \'labelwidth\' => \'85\',\n \'default\' => \'\',\n)', '1', '', '11', '0', '1');
INSERT INTO `cool_field` VALUES ('211', '17', 'posid', '推荐位', '', '0', '0', '0', '', '', '', 'posid', '', '1', '', '12', '1', '1');
INSERT INTO `cool_field` VALUES ('212', '17', 'template', '模板', '', '0', '0', '0', '', '', '', 'template', '', '1', '', '13', '1', '1');
INSERT INTO `cool_field` VALUES ('213', '17', 'mianji', '面积', '', '0', '0', '0', 'defaul', '', 'mianji', 'text', 'array (\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '3', '1', '0');
INSERT INTO `cool_field` VALUES ('214', '17', 'ckg', '长/宽/高', '', '0', '0', '0', 'defaul', '', 'ckg', 'text', 'array (\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '4', '1', '0');
INSERT INTO `cool_field` VALUES ('215', '17', 'lc', '楼层', '', '0', '0', '0', 'defaul', '', 'lc', 'text', 'array (\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '5', '1', '0');
INSERT INTO `cool_field` VALUES ('216', '17', 'miaoshu', '描述', '', '0', '0', '0', 'defaul', '', 'miaoshu', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'default\' => \'\',\n)', '0', '', '6', '1', '0');
INSERT INTO `cool_field` VALUES ('217', '17', 'buju', '布局信息', '', '0', '0', '0', 'defaul', '', 'buju', 'text', 'array (\n \'default\' => \'\',\n \'ispassword\' => \'0\',\n \'fieldtype\' => \'varchar\',\n)', '0', '', '7', '1', '0');
INSERT INTO `cool_field` VALUES ('218', '17', 'mfsb', '免费设备', '', '0', '0', '0', 'defaul', '', 'mfsb', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'default\' => \'\',\n)', '0', '', '8', '1', '0');
INSERT INTO `cool_field` VALUES ('219', '17', 'hytts', '会议厅特色', '', '0', '0', '0', 'defaul', '', 'hytts', 'textarea', 'array (\n \'fieldtype\' => \'mediumtext\',\n \'default\' => \'\',\n)', '0', '', '9', '1', '0');
-- ----------------------------
-- Table structure for cool_hooks
-- ----------------------------
DROP TABLE IF EXISTS `cool_hooks`;
CREATE TABLE `cool_hooks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`name` varchar(40) NOT NULL DEFAULT '' COMMENT '钩子名称',
`description` text COMMENT '描述',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '类型',
`update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
`addons` varchar(255) NOT NULL DEFAULT '' COMMENT '钩子挂载的插件 '',''分割',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_hooks
-- ----------------------------
INSERT INTO `cool_hooks` VALUES ('1', 'pageHeader', '页面header钩子,一般用于加载插件CSS文件和代码', '1', '0', '', '1');
INSERT INTO `cool_hooks` VALUES ('2', 'pageFooter', '页面footer钩子,一般用于加载插件JS文件和JS代码', '1', '0', 'ReturnTop', '1');
INSERT INTO `cool_hooks` VALUES ('3', 'documentEditForm', '添加编辑表单的 扩展内容钩子', '1', '0', 'Attachment', '1');
INSERT INTO `cool_hooks` VALUES ('4', 'documentDetailAfter', '文档末尾显示', '1', '0', 'Attachment,SocialComment,Digg', '1');
INSERT INTO `cool_hooks` VALUES ('5', 'documentDetailBefore', '页面内容前显示用钩子', '1', '0', '', '1');
INSERT INTO `cool_hooks` VALUES ('6', 'documentSaveComplete', '保存文档数据后的扩展钩子', '2', '0', 'Attachment', '1');
INSERT INTO `cool_hooks` VALUES ('7', 'documentEditFormContent', '添加编辑表单的内容显示钩子', '1', '0', 'Editor', '1');
INSERT INTO `cool_hooks` VALUES ('8', 'adminArticleEdit', '后台内容编辑页编辑器', '1', '1378982734', 'EditorForAdmin', '1');
INSERT INTO `cool_hooks` VALUES ('13', 'AdminIndex', '首页小格子个性化显示', '1', '1382596073', 'SiteStat,SystemInfo,DevTeam', '1');
INSERT INTO `cool_hooks` VALUES ('14', 'topicComment', '评论提交方式扩展钩子。', '1', '1380163518', 'Editor', '1');
INSERT INTO `cool_hooks` VALUES ('16', 'app_begin', '应用开始', '2', '1384481614', '', '1');
-- ----------------------------
-- Table structure for cool_invoiceform
-- ----------------------------
DROP TABLE IF EXISTS `cool_invoiceform`;
CREATE TABLE `cool_invoiceform` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT '',
`tel` varchar(15) NOT NULL DEFAULT '' COMMENT '电话号码',
`addtime` varchar(15) NOT NULL COMMENT '留言时间',
`mrtt` tinyint(2) NOT NULL DEFAULT '0',
`shuihao` varchar(60) NOT NULL DEFAULT '',
`address` varchar(255) NOT NULL DEFAULT '',
`khyh` varchar(255) DEFAULT NULL,
`yhzh` varchar(255) DEFAULT NULL,
`type` int(1) DEFAULT '2',
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_invoiceform
-- ----------------------------
-- ----------------------------
-- Table structure for cool_invoiceform_category
-- ----------------------------
DROP TABLE IF EXISTS `cool_invoiceform_category`;
CREATE TABLE `cool_invoiceform_category` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`href` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
`authopen` tinyint(2) NOT NULL DEFAULT '1',
`icon` varchar(20) DEFAULT NULL COMMENT '样式',
`condition` char(100) DEFAULT '',
`pid` int(5) NOT NULL DEFAULT '0' COMMENT '父栏目ID',
`sort` int(11) DEFAULT '0' COMMENT '排序',
`addtime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`zt` int(1) DEFAULT NULL,
`menustatus` tinyint(1) DEFAULT NULL,
`catid` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=301 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_invoiceform_category
-- ----------------------------
INSERT INTO `cool_invoiceform_category` VALUES ('1', '/addons_execute_invoiceform-admin-index', '发票管理', '1', '1', '0', 'icon-cogs', '', '0', '0', '1446535750', '1', '1', null);
INSERT INTO `cool_invoiceform_category` VALUES ('2', '/addons_execute_invoiceform-admin-yuding?type=1', '发票管理', '1', '1', '0', '', '', '1', '1', '1446535789', '1', '1', null);
-- ----------------------------
-- Table structure for cool_jdjjtu
-- ----------------------------
DROP TABLE IF EXISTS `cool_jdjjtu`;
CREATE TABLE `cool_jdjjtu` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`userid` int(8) unsigned NOT NULL DEFAULT '0',
`username` varchar(40) NOT NULL DEFAULT '',
`title` varchar(80) NOT NULL DEFAULT '',
`thumb` varchar(225) NOT NULL DEFAULT '',
`keywords` varchar(120) NOT NULL DEFAULT '',
`description` mediumtext NOT NULL,
`content` mediumtext NOT NULL,
`template` varchar(40) NOT NULL DEFAULT '',
`posid` tinyint(2) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`recommend` tinyint(1) unsigned NOT NULL DEFAULT '0',
`readgroup` varchar(100) NOT NULL DEFAULT '',
`readpoint` smallint(5) NOT NULL DEFAULT '0',
`listorder` int(10) unsigned NOT NULL DEFAULT '0',
`hits` int(11) unsigned NOT NULL DEFAULT '0',
`createtime` int(11) unsigned NOT NULL DEFAULT '0',
`updatetime` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `status` (`id`,`status`,`listorder`),
KEY `catid` (`id`,`catid`,`status`),
KEY `listorder` (`id`,`catid`,`status`,`listorder`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_jdjjtu
-- ----------------------------
INSERT INTO `cool_jdjjtu` VALUES ('1', '52', '1', 'admin', '1', '/uploads/20180529/cb90689964a7c8100b6b82ff4ef9577c.jpg', '', '', '', '', '0', '1', '0', '', '0', '0', '0', '1527580008', '0');
INSERT INTO `cool_jdjjtu` VALUES ('2', '52', '1', 'admin', '2', '/uploads/20180529/fb8903c5a28c1fd10eeab8425002cf46.jpg', '', '', '', '', '0', '1', '0', '', '0', '0', '0', '1527580022', '0');
-- ----------------------------
-- Table structure for cool_link
-- ----------------------------
DROP TABLE IF EXISTS `cool_link`;
CREATE TABLE `cool_link` (
`link_id` int(5) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL COMMENT '链接名称',
`url` varchar(200) NOT NULL COMMENT '链接URL',
`type_id` tinyint(4) DEFAULT NULL COMMENT '所属栏目ID',
`qq` varchar(20) NOT NULL COMMENT '联系QQ',
`sort` int(5) NOT NULL DEFAULT '50' COMMENT '排序',
`addtime` int(11) NOT NULL COMMENT '添加时间',
`open` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0禁用1启用',
PRIMARY KEY (`link_id`)
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_link
-- ----------------------------
-- ----------------------------
-- Table structure for cool_memberform
-- ----------------------------
DROP TABLE IF EXISTS `cool_memberform`;
CREATE TABLE `cool_memberform` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(200) DEFAULT '',
`phone` varchar(60) NOT NULL DEFAULT '' COMMENT '电话号码',
`addtime` int(15) NOT NULL COMMENT '留言时间',
`sex` tinyint(2) NOT NULL DEFAULT '0',
`birsthday` int(60) DEFAULT NULL,
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_memberform
-- ----------------------------
INSERT INTO `cool_memberform` VALUES ('2', 'wzs', '15046113513', '1527734086', '1', '1527734040');
INSERT INTO `cool_memberform` VALUES ('3', 'wzs', '150013513', '1527734422', '1', '1527734400');
-- ----------------------------
-- Table structure for cool_memberform_category
-- ----------------------------
DROP TABLE IF EXISTS `cool_memberform_category`;
CREATE TABLE `cool_memberform_category` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`href` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
`authopen` tinyint(2) NOT NULL DEFAULT '1',
`icon` varchar(20) DEFAULT NULL COMMENT '样式',
`condition` char(100) DEFAULT '',
`pid` int(5) NOT NULL DEFAULT '0' COMMENT '父栏目ID',
`sort` int(11) DEFAULT '0' COMMENT '排序',
`addtime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`zt` int(1) DEFAULT NULL,
`menustatus` tinyint(1) DEFAULT NULL,
`catid` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=301 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cool_memberform_category
-- ----------------------------
INSERT INTO `cool_memberform_category` VALUES ('1', '/addons_execute_memberform-admin-index', '会员管理', '1', '1', '0', 'icon-cogs', '', '0', '0', '1446535750', '1', '1', null);
INSERT INTO `cool_memberform_category` VALUES ('2', '/addons_execute_memberform-admin-yuding?type=1', '会员管理', '1', '1', '0', '', '', '1', '1', '1446535789', '1', '1', null);
-- ----------------------------
-- Table structure for cool_message
-- ----------------------------
DROP TABLE IF EXISTS `cool_message`;
CREATE TABLE `cool_message` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT '' COMMENT '留言标题',
`tel` varchar(15) NOT NULL DEFAULT '' COMMENT '留言电话',
`addtime` varchar(15) NOT NULL COMMENT '留言时间',
`open` tinyint(2) NOT NULL DEFAULT '0' COMMENT '1=审核 0=不审核',
`ip` varchar(50) DEFAULT '' COMMENT '留言者IP',
`content` longtext NOT NULL COMMENT '留言内容',
`name` varchar(60) NOT NULL DEFAULT '' COMMENT '用户名',
`email` varchar(50) NOT NULL COMMENT '留言邮箱',
`intime` int(11) DEFAULT NULL,
`outtime` int(11) NOT NULL,
`partyconame` varchar(255) DEFAULT NULL,