-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelysian_nest.sql
3945 lines (3906 loc) · 654 KB
/
elysian_nest.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 Premium Data Transfer
Source Server : MySQL
Source Server Type : MySQL
Source Server Version : 80027 (8.0.27)
Source Host : localhost:3306
Source Schema : elysian_nest
Target Server Type : MySQL
Target Server Version : 80027 (8.0.27)
File Encoding : 65001
Date: 28/05/2024 11:13:36
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for data_statistics
-- ----------------------------
DROP TABLE IF EXISTS `data_statistics`;
CREATE TABLE `data_statistics` (
`id` int NOT NULL AUTO_INCREMENT COMMENT '统计ID',
`date` date NULL DEFAULT NULL COMMENT '日期',
`checkin_count` int NULL DEFAULT NULL COMMENT '今日预入住人数',
`checkout_count` int NULL DEFAULT NULL COMMENT '今日预退房人数',
`order_count` int NULL DEFAULT NULL COMMENT '今日订单笔数',
`revenue` decimal(10, 2) NULL DEFAULT NULL COMMENT '今日营业额',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 58 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '酒店经营数据统计表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of data_statistics
-- ----------------------------
INSERT INTO `data_statistics` VALUES (1, '2024-04-01', 45, 40, 50, 5000.00);
INSERT INTO `data_statistics` VALUES (2, '2024-04-02', 50, 42, 48, 5200.00);
INSERT INTO `data_statistics` VALUES (3, '2024-04-03', 48, 45, 55, 5300.00);
INSERT INTO `data_statistics` VALUES (4, '2024-04-04', 55, 50, 60, 6000.00);
INSERT INTO `data_statistics` VALUES (5, '2024-04-05', 60, 55, 58, 5800.00);
INSERT INTO `data_statistics` VALUES (6, '2024-04-06', 58, 52, 56, 5500.00);
INSERT INTO `data_statistics` VALUES (7, '2024-04-07', 62, 58, 65, 6200.00);
INSERT INTO `data_statistics` VALUES (8, '2024-04-08', 55, 36, 61, 3600.00);
INSERT INTO `data_statistics` VALUES (9, '2024-04-09', 50, 6, 52, 2264.00);
INSERT INTO `data_statistics` VALUES (10, '2024-04-10', 37, 45, 31, 5043.00);
INSERT INTO `data_statistics` VALUES (11, '2024-04-11', 7, 14, 95, 5592.00);
INSERT INTO `data_statistics` VALUES (12, '2024-04-12', 38, 50, 71, 3769.00);
INSERT INTO `data_statistics` VALUES (13, '2024-04-13', 33, 31, 8, 3804.00);
INSERT INTO `data_statistics` VALUES (14, '2024-04-14', 29, 10, 23, 3769.00);
INSERT INTO `data_statistics` VALUES (15, '2024-04-15', 5, 41, 81, 3870.00);
INSERT INTO `data_statistics` VALUES (16, '2024-04-16', 23, 27, 33, 1094.00);
INSERT INTO `data_statistics` VALUES (17, '2024-04-17', 6, 27, 33, 1020.00);
INSERT INTO `data_statistics` VALUES (18, '2024-04-18', 3, 13, 14, 5487.00);
INSERT INTO `data_statistics` VALUES (19, '2024-04-19', 5, 36, 33, 3525.00);
INSERT INTO `data_statistics` VALUES (20, '2024-04-20', 27, 9, 21, 3777.00);
INSERT INTO `data_statistics` VALUES (21, '2024-04-21', 8, 5, 98, 4025.00);
INSERT INTO `data_statistics` VALUES (22, '2024-04-22', 6, 37, 35, 3694.00);
INSERT INTO `data_statistics` VALUES (23, '2024-04-23', 33, 31, 14, 5070.00);
INSERT INTO `data_statistics` VALUES (24, '2024-04-24', 34, 48, 69, 3961.00);
INSERT INTO `data_statistics` VALUES (25, '2024-04-25', 46, 39, 11, 2233.00);
INSERT INTO `data_statistics` VALUES (26, '2024-04-26', 46, 40, 19, 4023.00);
INSERT INTO `data_statistics` VALUES (27, '2024-04-27', 23, 24, 97, 3218.00);
INSERT INTO `data_statistics` VALUES (28, '2024-04-28', 16, 12, 19, 2167.00);
INSERT INTO `data_statistics` VALUES (29, '2024-04-29', 32, 22, 30, 1752.00);
INSERT INTO `data_statistics` VALUES (30, '2024-04-30', 45, 48, 11, 4456.00);
INSERT INTO `data_statistics` VALUES (31, '2024-05-01', 7, 30, 54, 5586.00);
INSERT INTO `data_statistics` VALUES (32, '2024-05-02', 50, 8, 83, 4258.00);
INSERT INTO `data_statistics` VALUES (33, '2024-05-03', 40, 1, 65, 2003.00);
INSERT INTO `data_statistics` VALUES (34, '2024-05-04', 4, 40, 69, 1452.00);
INSERT INTO `data_statistics` VALUES (35, '2024-05-05', 20, 34, 15, 4756.00);
INSERT INTO `data_statistics` VALUES (36, '2024-05-06', 16, 17, 67, 2779.00);
INSERT INTO `data_statistics` VALUES (37, '2024-05-07', 40, 44, 97, 2135.00);
INSERT INTO `data_statistics` VALUES (38, '2024-05-08', 13, 27, 94, 1394.00);
INSERT INTO `data_statistics` VALUES (39, '2024-05-09', 30, 36, 76, 4259.00);
INSERT INTO `data_statistics` VALUES (40, '2024-05-10', 1, 3, 28, 1981.00);
INSERT INTO `data_statistics` VALUES (41, '2024-05-11', 9, 12, 64, 3555.00);
INSERT INTO `data_statistics` VALUES (42, '2024-05-12', 33, 35, 50, 3131.00);
INSERT INTO `data_statistics` VALUES (43, '2024-05-13', 33, 47, 73, 5227.00);
INSERT INTO `data_statistics` VALUES (44, '2024-05-14', 3, 35, 31, 3201.00);
INSERT INTO `data_statistics` VALUES (45, '2024-05-15', 16, 10, 2, 3604.00);
INSERT INTO `data_statistics` VALUES (46, '2024-05-16', 29, 13, 56, 1214.00);
INSERT INTO `data_statistics` VALUES (47, '2024-05-17', 28, 29, 26, 3739.00);
INSERT INTO `data_statistics` VALUES (48, '2024-05-18', 4, 7, 6, 2040.00);
INSERT INTO `data_statistics` VALUES (49, '2024-05-19', 1, 4, 1, 376.00);
INSERT INTO `data_statistics` VALUES (50, '2024-05-20', 0, 0, 0, 0.00);
INSERT INTO `data_statistics` VALUES (51, '2024-05-21', 0, 2, 0, 0.00);
INSERT INTO `data_statistics` VALUES (52, '2024-05-22', 1, 0, 0, 0.00);
INSERT INTO `data_statistics` VALUES (53, '2024-05-24', 0, 1, 0, 0.00);
INSERT INTO `data_statistics` VALUES (54, '2024-05-25', 0, 0, 0, 0.00);
INSERT INTO `data_statistics` VALUES (55, '2024-05-26', 0, 0, 0, 0.00);
INSERT INTO `data_statistics` VALUES (56, '2024-05-27', 0, 0, 0, 0.00);
INSERT INTO `data_statistics` VALUES (57, '2024-05-28', 0, 0, 0, 0.00);
-- ----------------------------
-- Table structure for hotel_member
-- ----------------------------
DROP TABLE IF EXISTS `hotel_member`;
CREATE TABLE `hotel_member` (
`member_id` int NOT NULL AUTO_INCREMENT COMMENT '会员ID',
`user_id` int NULL DEFAULT NULL COMMENT '用户ID,关联系统用户表',
`member_level` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '会员等级',
`member_points` int NULL DEFAULT NULL COMMENT '会员积分',
`balance` decimal(10, 2) NULL DEFAULT NULL COMMENT '会员账户余额',
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`member_id`) USING BTREE,
INDEX `user_id`(`user_id` ASC) USING BTREE,
CONSTRAINT `hotel_member_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sys_user` (`user_id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '酒店会员信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hotel_member
-- ----------------------------
INSERT INTO `hotel_member` VALUES (1, 3, 'Lv.4', 3673, 805.00, '2024-04-04 16:51:10', '2024-05-19 11:53:54');
INSERT INTO `hotel_member` VALUES (2, 4, 'Lv.6', 17777, 14897.00, '2024-04-17 17:08:33', '2024-05-18 23:52:20');
INSERT INTO `hotel_member` VALUES (3, 5, 'Lv.1', 200, 12.00, '2024-04-17 17:12:07', '2024-05-05 02:12:58');
INSERT INTO `hotel_member` VALUES (4, 6, 'Lv.3', 1648, 38.00, '2024-04-17 17:14:53', '2024-05-05 02:13:16');
INSERT INTO `hotel_member` VALUES (5, 7, 'Lv.2', 1000, 116.00, '2024-04-24 23:55:38', '2024-05-18 23:51:35');
INSERT INTO `hotel_member` VALUES (6, 8, 'Lv.4', 3620, 120.50, '2024-04-25 00:39:05', '2024-05-18 23:52:50');
INSERT INTO `hotel_member` VALUES (7, 13, 'Lv.2', 1230, 666.00, '2024-04-28 19:49:45', '2024-05-19 11:52:20');
INSERT INTO `hotel_member` VALUES (8, 16, 'Lv.6', 10008, 6332.00, '2024-04-29 22:56:42', '2024-05-18 23:50:27');
-- ----------------------------
-- Table structure for hotel_order
-- ----------------------------
DROP TABLE IF EXISTS `hotel_order`;
CREATE TABLE `hotel_order` (
`order_id` int NOT NULL AUTO_INCREMENT COMMENT '订单ID',
`user_id` int NULL DEFAULT NULL COMMENT '会员ID,关联系统用户表',
`room_id` int NULL DEFAULT NULL COMMENT '房间ID,关联酒店房间表',
`order_num` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '订单号',
`reserve_date` date NULL DEFAULT NULL COMMENT '预订日期',
`checkin_date` date NULL DEFAULT NULL COMMENT '入住日期',
`checkout_date` date NULL DEFAULT NULL COMMENT '退房日期',
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '订单状态(已预订/入住中/已退房/已取消)',
`payment` decimal(10, 2) NULL DEFAULT NULL COMMENT '支付金额',
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`order_id`) USING BTREE,
INDEX `member_id`(`user_id` ASC) USING BTREE,
INDEX `hotel_order_ibfk_1`(`room_id` ASC) USING BTREE,
CONSTRAINT `hotel_order_ibfk_1` FOREIGN KEY (`room_id`) REFERENCES `hotel_room` (`room_id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 47 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '酒店订单信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hotel_order
-- ----------------------------
INSERT INTO `hotel_order` VALUES (1, 3, 1, '20240417350063', '2024-04-16', '2024-04-17', '2024-04-18', '已退房', 280.00, '2024-04-17 11:39:07', '2024-04-18 12:38:58');
INSERT INTO `hotel_order` VALUES (2, 3, 2, '20240417894245', '2024-04-17', '2024-04-17', '2024-04-21', '已退房', 280.00, '2024-04-17 11:42:16', '2024-04-21 16:31:21');
INSERT INTO `hotel_order` VALUES (3, 3, 3, '20240417254392', '2024-04-17', '2024-04-17', '2024-04-21', '已退房', 280.00, '2024-04-17 11:47:35', '2024-04-21 16:32:21');
INSERT INTO `hotel_order` VALUES (4, 3, 4, '20240417798789', '2024-04-17', '2024-04-19', '2024-04-20', '已取消', 360.00, '2024-04-17 12:48:50', '2024-05-01 13:16:22');
INSERT INTO `hotel_order` VALUES (5, 3, 5, '20240417132909', '2024-04-17', '2024-04-18', '2024-04-20', '已取消', 360.00, '2024-04-17 12:49:43', '2024-04-17 12:50:07');
INSERT INTO `hotel_order` VALUES (6, 6, 4, '20240420268035', '2024-04-20', '2024-04-21', '2024-04-23', '已退房', 280.00, '2024-04-20 23:39:56', '2024-04-21 20:51:25');
INSERT INTO `hotel_order` VALUES (7, 3, 3, '20240421814828', '2024-04-21', '2024-04-26', '2024-04-29', '已取消', 2064.00, '2024-04-21 01:29:37', '2024-04-21 16:33:05');
INSERT INTO `hotel_order` VALUES (8, 4, 6, '20240421884798', '2024-04-21', '2024-04-21', '2024-05-03', '已退房', 840.00, '2024-04-21 16:42:35', '2024-05-03 22:10:49');
INSERT INTO `hotel_order` VALUES (9, 6, 2, '20240421008538', '2024-04-21', '2024-04-30', '2024-05-03', '已退房', 720.00, '2024-04-21 16:55:25', '2024-05-03 22:10:26');
INSERT INTO `hotel_order` VALUES (10, 3, 8, '20240421550319', '2024-04-21', '2024-04-21', '2024-04-23', '已取消', 720.00, '2024-04-21 20:50:54', '2024-04-29 00:38:01');
INSERT INTO `hotel_order` VALUES (11, 3, 4, '20240421269741', '2024-04-21', '2024-04-21', '2024-04-22', '已取消', 280.00, '2024-04-21 23:16:10', '2024-04-21 23:24:09');
INSERT INTO `hotel_order` VALUES (12, 3, 4, '20240421025020', '2024-04-21', '2024-04-25', '2024-05-03', '已退房', 280.00, '2024-04-21 23:16:37', '2024-05-03 22:10:39');
INSERT INTO `hotel_order` VALUES (13, 3, 11, '20240422168745', '2024-04-22', '2024-04-22', '2024-05-03', '已退房', 376.00, '2024-04-22 11:26:38', '2024-05-03 22:10:41');
INSERT INTO `hotel_order` VALUES (14, 6, 9, '20240422704560', '2024-04-22', '2024-04-22', '2024-05-03', '已退房', 280.00, '2024-04-22 11:26:54', '2024-05-03 22:10:44');
INSERT INTO `hotel_order` VALUES (15, 4, 1, '20240422593663', '2024-04-22', '2024-04-22', '2024-04-30', '已退房', 188.00, '2024-04-22 11:27:12', '2024-04-30 19:14:15');
INSERT INTO `hotel_order` VALUES (16, 6, 5, '20240422538633', '2024-04-22', '2024-04-22', '2024-05-03', '已退房', 42.00, '2024-04-22 11:27:29', '2024-05-03 22:10:47');
INSERT INTO `hotel_order` VALUES (17, 4, 3, '20240422764849', '2024-04-22', '2024-05-02', '2024-05-07', '已取消', 3440.00, '2024-04-22 12:35:53', '2024-05-18 23:52:20');
INSERT INTO `hotel_order` VALUES (18, 4, 10, '20240429101612', '2024-04-29', '2024-04-29', '2024-05-03', '已退房', 564.00, '2024-04-29 00:35:37', '2024-05-03 22:10:35');
INSERT INTO `hotel_order` VALUES (19, 7, 14, '20240429455749', '2024-04-29', '2024-04-29', '2024-04-30', '已退房', 368.00, '2024-04-29 20:57:41', '2024-04-30 23:13:18');
INSERT INTO `hotel_order` VALUES (20, 4, 2, '20240430085234', '2024-04-30', '2024-05-12', '2024-05-13', '已取消', 368.00, '2024-04-30 19:48:54', '2024-05-18 23:52:10');
INSERT INTO `hotel_order` VALUES (21, 3, 14, '20240430231038', '2024-04-30', '2024-04-30', '2024-05-14', '已取消', 5152.00, '2024-04-30 23:07:04', '2024-04-30 23:11:49');
INSERT INTO `hotel_order` VALUES (22, 3, 14, '20240430618541', '2024-04-30', '2024-04-30', '2024-05-14', '已取消', 5152.00, '2024-04-30 23:07:05', '2024-04-30 23:11:46');
INSERT INTO `hotel_order` VALUES (23, 3, 2, '20240503239491', '2024-05-03', '2024-05-02', '2024-05-03', '已取消', 368.00, '2024-05-03 20:39:20', '2024-05-18 23:52:11');
INSERT INTO `hotel_order` VALUES (24, 8, 5, '20240503120218', '2024-05-03', '2024-05-02', '2024-05-05', '已取消', 984.00, '2024-05-03 22:17:38', '2024-05-18 23:52:13');
INSERT INTO `hotel_order` VALUES (25, 8, 9, '20240503647059', '2024-05-03', '2024-05-02', '2024-05-05', '已取消', 984.00, '2024-05-03 22:19:15', '2024-05-18 23:52:15');
INSERT INTO `hotel_order` VALUES (26, 8, 9, '20240503580487', '2024-05-03', '2024-05-02', '2024-05-05', '已取消', 984.00, '2024-05-03 22:19:16', '2024-05-03 22:22:15');
INSERT INTO `hotel_order` VALUES (27, 8, 13, '20240503021671', '2024-05-03', '2024-05-12', '2024-05-13', '已取消', 288.00, '2024-05-03 22:21:29', '2024-05-18 23:52:01');
INSERT INTO `hotel_order` VALUES (28, 8, 8, '20240503468370', '2024-05-03', '2024-05-12', '2024-05-13', '已取消', 368.00, '2024-05-03 22:21:39', '2024-05-05 09:18:20');
INSERT INTO `hotel_order` VALUES (29, 8, 8, '20240503659378', '2024-05-03', '2024-05-04', '2024-05-05', '已退房', 368.00, '2024-05-03 22:22:29', '2024-05-05 02:07:07');
INSERT INTO `hotel_order` VALUES (30, 8, 14, '20240503783580', '2024-05-03', '2024-05-04', '2024-05-05', '已退房', 368.00, '2024-05-03 22:22:57', '2024-05-05 02:07:13');
INSERT INTO `hotel_order` VALUES (31, 3, 3, '20240505810690', '2024-05-05', '2024-05-05', '2024-05-18', '已退房', 1288.00, '2024-05-05 02:08:10', '2024-05-18 23:48:11');
INSERT INTO `hotel_order` VALUES (32, 4, 8, '20240505799052', '2024-05-05', '2024-05-05', '2024-05-07', '已取消', 736.00, '2024-05-05 02:08:30', '2024-05-05 09:20:18');
INSERT INTO `hotel_order` VALUES (33, 16, 10, '20240505014352', '2024-05-05', '2024-05-05', '2024-05-18', '已退房', 564.00, '2024-05-05 02:09:07', '2024-05-18 23:48:13');
INSERT INTO `hotel_order` VALUES (34, 8, 12, '20240505589036', '2024-05-05', '2024-05-05', '2024-05-18', '已退房', 188.00, '2024-05-05 02:09:58', '2024-05-18 23:48:15');
INSERT INTO `hotel_order` VALUES (35, 7, 6, '20240505068991', '2024-05-05', '2024-05-05', '2024-05-18', '已退房', 328.00, '2024-05-05 02:10:18', '2024-05-18 23:48:17');
INSERT INTO `hotel_order` VALUES (36, 13, 15, '20240505529280', '2024-05-05', '2024-05-05', '2024-05-06', '已取消', 188.00, '2024-05-05 02:12:31', '2024-05-05 09:22:44');
INSERT INTO `hotel_order` VALUES (37, 5, 17, '20240505417258', '2024-05-05', '2024-05-05', '2024-05-18', '已退房', 188.00, '2024-05-05 02:12:58', '2024-05-18 23:48:18');
INSERT INTO `hotel_order` VALUES (38, 6, 13, '20240505835305', '2024-05-05', '2024-05-05', '2024-05-18', '已退房', 288.00, '2024-05-05 02:13:16', '2024-05-18 23:48:21');
INSERT INTO `hotel_order` VALUES (39, 13, 16, '20240505488037', '2024-05-05', '2024-05-07', '2024-05-08', '已预订', 188.00, '2024-05-05 09:23:23', '2024-05-05 09:23:23');
INSERT INTO `hotel_order` VALUES (40, 3, 2, '20240518269751', '2024-05-18', '2024-05-18', '2024-05-19', '已取消', 368.00, '2024-05-18 23:48:00', '2024-05-19 11:53:54');
INSERT INTO `hotel_order` VALUES (41, 4, 3, '20240518311460', '2024-05-18', '2024-05-18', '2024-05-19', '入住中', 1288.00, '2024-05-18 23:48:44', '2024-05-18 23:48:44');
INSERT INTO `hotel_order` VALUES (42, 3, 15, '20240518069738', '2024-05-18', '2024-05-18', '2024-05-21', '入住中', 564.00, '2024-05-18 23:49:33', '2024-05-18 23:49:33');
INSERT INTO `hotel_order` VALUES (43, 16, 14, '20240518682700', '2024-05-18', '2024-05-18', '2024-05-21', '入住中', 1104.00, '2024-05-18 23:50:27', '2024-05-19 11:53:22');
INSERT INTO `hotel_order` VALUES (44, 7, 17, '20240518317006', '2024-05-18', '2024-05-18', '2024-05-19', '入住中', 188.00, '2024-05-18 23:51:35', '2024-05-18 23:51:35');
INSERT INTO `hotel_order` VALUES (45, 8, 3, '20240518677172', '2024-05-18', '2024-05-22', '2024-05-24', '已预订', 2576.00, '2024-05-18 23:52:50', '2024-05-18 23:52:50');
INSERT INTO `hotel_order` VALUES (46, 13, 11, '20240519047992', '2024-05-19', '2024-05-19', '2024-05-19', '已退房', 376.00, '2024-05-19 11:52:20', '2024-05-19 11:52:59');
-- ----------------------------
-- Table structure for hotel_recharge_record
-- ----------------------------
DROP TABLE IF EXISTS `hotel_recharge_record`;
CREATE TABLE `hotel_recharge_record` (
`recharge_id` int NOT NULL AUTO_INCREMENT COMMENT '充值记录ID',
`member_id` int NULL DEFAULT NULL COMMENT '会员ID,关联酒店会员信息表',
`amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '充值金额',
`payment_method` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '支付方式(支付宝/微信/现金)',
`create_time` datetime NULL DEFAULT NULL COMMENT '充值时间',
PRIMARY KEY (`recharge_id`) USING BTREE,
INDEX `member_id`(`member_id` ASC) USING BTREE,
CONSTRAINT `hotel_recharge_record_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `hotel_member` (`member_id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 78 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '酒店会员充值记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hotel_recharge_record
-- ----------------------------
INSERT INTO `hotel_recharge_record` VALUES (5, 4, 1648.00, '支付宝', '2024-04-19 19:12:04');
INSERT INTO `hotel_recharge_record` VALUES (6, 2, 8888.00, '支付宝', '2024-04-19 19:12:36');
INSERT INTO `hotel_recharge_record` VALUES (7, 2, 8888.00, '支付宝', '2024-04-24 14:08:10');
INSERT INTO `hotel_recharge_record` VALUES (8, 2, 10.00, '现金', '2024-04-24 14:09:05');
INSERT INTO `hotel_recharge_record` VALUES (9, 1, 10.00, '支付宝', '2024-04-24 14:19:14');
INSERT INTO `hotel_recharge_record` VALUES (13, 5, 10.00, '现金', '2024-04-25 00:03:12');
INSERT INTO `hotel_recharge_record` VALUES (14, 3, 100.00, '现金', '2024-04-25 00:04:13');
INSERT INTO `hotel_recharge_record` VALUES (15, 5, 99.00, '现金', '2024-04-25 00:04:18');
INSERT INTO `hotel_recharge_record` VALUES (16, 6, 10.50, '现金', '2024-04-25 00:40:58');
INSERT INTO `hotel_recharge_record` VALUES (17, 6, 10.00, '现金', '2024-04-29 00:38:32');
INSERT INTO `hotel_recharge_record` VALUES (18, 7, 10.00, '现金', '2024-04-29 01:16:02');
INSERT INTO `hotel_recharge_record` VALUES (19, 7, 20.00, '现金', '2024-04-29 17:15:25');
INSERT INTO `hotel_recharge_record` VALUES (20, 5, 900.00, '现金', '2024-04-29 20:56:29');
INSERT INTO `hotel_recharge_record` VALUES (21, 1, 1.00, '支付宝', '2024-05-01 00:41:42');
INSERT INTO `hotel_recharge_record` VALUES (22, 1, 100.00, '支付宝', '2024-05-01 00:42:00');
INSERT INTO `hotel_recharge_record` VALUES (23, 1, 100.00, '微信', '2024-05-01 10:14:52');
INSERT INTO `hotel_recharge_record` VALUES (24, 1, 1000.00, '支付宝', '2024-05-01 10:38:06');
INSERT INTO `hotel_recharge_record` VALUES (25, 1, 1000.00, '支付宝', '2024-05-01 10:46:22');
INSERT INTO `hotel_recharge_record` VALUES (26, 1, 1000.00, '支付宝', '2024-05-01 11:24:33');
INSERT INTO `hotel_recharge_record` VALUES (27, 8, 100.00, '支付宝', '2024-05-01 13:23:38');
INSERT INTO `hotel_recharge_record` VALUES (28, 8, 300.00, '支付宝', '2024-05-01 13:34:19');
INSERT INTO `hotel_recharge_record` VALUES (29, 8, 100.00, '支付宝', '2024-05-01 13:34:27');
INSERT INTO `hotel_recharge_record` VALUES (30, 8, 100.00, '支付宝', '2024-05-01 13:34:32');
INSERT INTO `hotel_recharge_record` VALUES (31, 8, 300.00, '支付宝', '2024-05-01 13:34:44');
INSERT INTO `hotel_recharge_record` VALUES (32, 8, 300.00, '支付宝', '2024-05-01 13:34:51');
INSERT INTO `hotel_recharge_record` VALUES (33, 8, 300.00, '支付宝', '2024-05-01 13:34:57');
INSERT INTO `hotel_recharge_record` VALUES (34, 8, 300.00, '支付宝', '2024-05-01 13:35:01');
INSERT INTO `hotel_recharge_record` VALUES (35, 8, 300.00, '支付宝', '2024-05-01 13:35:04');
INSERT INTO `hotel_recharge_record` VALUES (36, 8, 600.00, '支付宝', '2024-05-01 13:35:10');
INSERT INTO `hotel_recharge_record` VALUES (37, 8, 300.00, '支付宝', '2024-05-01 13:35:15');
INSERT INTO `hotel_recharge_record` VALUES (38, 8, 300.00, '支付宝', '2024-05-01 13:35:19');
INSERT INTO `hotel_recharge_record` VALUES (39, 8, 300.00, '支付宝', '2024-05-01 13:35:22');
INSERT INTO `hotel_recharge_record` VALUES (40, 8, 300.00, '支付宝', '2024-05-01 13:35:23');
INSERT INTO `hotel_recharge_record` VALUES (41, 8, 300.00, '支付宝', '2024-05-01 13:35:26');
INSERT INTO `hotel_recharge_record` VALUES (42, 8, 300.00, '支付宝', '2024-05-01 13:35:30');
INSERT INTO `hotel_recharge_record` VALUES (43, 8, 300.00, '支付宝', '2024-05-01 13:35:32');
INSERT INTO `hotel_recharge_record` VALUES (44, 8, 300.00, '支付宝', '2024-05-01 13:35:35');
INSERT INTO `hotel_recharge_record` VALUES (45, 8, 300.00, '支付宝', '2024-05-01 13:35:39');
INSERT INTO `hotel_recharge_record` VALUES (46, 8, 3300.00, '支付宝', '2024-05-01 13:35:43');
INSERT INTO `hotel_recharge_record` VALUES (47, 8, 1000.00, '支付宝', '2024-05-01 13:35:52');
INSERT INTO `hotel_recharge_record` VALUES (48, 8, 1000.00, '支付宝', '2024-05-01 13:35:55');
INSERT INTO `hotel_recharge_record` VALUES (49, 8, 1000.00, '支付宝', '2024-05-01 13:36:01');
INSERT INTO `hotel_recharge_record` VALUES (50, 8, 10.00, '支付宝', '2024-05-01 13:37:36');
INSERT INTO `hotel_recharge_record` VALUES (51, 8, 100000.00, '微信', '2024-05-01 13:43:16');
INSERT INTO `hotel_recharge_record` VALUES (52, 8, 8000.00, '微信', '2024-05-01 13:44:14');
INSERT INTO `hotel_recharge_record` VALUES (53, 8, 200.00, '微信', '2024-05-01 13:44:24');
INSERT INTO `hotel_recharge_record` VALUES (54, 8, 80.00, '微信', '2024-05-01 13:44:31');
INSERT INTO `hotel_recharge_record` VALUES (55, 8, 10.00, '微信', '2024-05-01 13:44:50');
INSERT INTO `hotel_recharge_record` VALUES (56, 8, 298.00, '支付宝', '2024-05-01 13:45:13');
INSERT INTO `hotel_recharge_record` VALUES (57, 8, 298.00, '支付宝', '2024-05-01 13:45:15');
INSERT INTO `hotel_recharge_record` VALUES (58, 8, 101.00, '支付宝', '2024-05-01 13:45:23');
INSERT INTO `hotel_recharge_record` VALUES (59, 8, 10.00, '支付宝', '2024-05-01 13:45:29');
INSERT INTO `hotel_recharge_record` VALUES (60, 6, 600.00, '微信', '2024-05-03 22:06:14');
INSERT INTO `hotel_recharge_record` VALUES (61, 6, 3000.00, '支付宝', '2024-05-03 22:16:48');
INSERT INTO `hotel_recharge_record` VALUES (62, 7, 100.00, '现金', '2024-05-05 02:11:03');
INSERT INTO `hotel_recharge_record` VALUES (63, 3, 100.00, '现金', '2024-05-05 02:11:13');
INSERT INTO `hotel_recharge_record` VALUES (64, 7, 100.00, '现金', '2024-05-05 02:12:03');
INSERT INTO `hotel_recharge_record` VALUES (67, 1, 6.00, '支付宝', '2024-05-16 16:26:14');
INSERT INTO `hotel_recharge_record` VALUES (68, 1, 6.00, '支付宝', '2024-05-16 16:26:34');
INSERT INTO `hotel_recharge_record` VALUES (69, 1, 6.00, '支付宝', '2024-05-16 16:26:40');
INSERT INTO `hotel_recharge_record` VALUES (70, 1, 6.00, '支付宝', '2024-05-16 16:27:28');
INSERT INTO `hotel_recharge_record` VALUES (71, 1, 6.00, '微信', '2024-05-16 16:28:00');
INSERT INTO `hotel_recharge_record` VALUES (72, 1, 198.00, '微信', '2024-05-16 16:28:36');
INSERT INTO `hotel_recharge_record` VALUES (73, 1, 198.00, '微信', '2024-05-16 16:28:45');
INSERT INTO `hotel_recharge_record` VALUES (74, 1, 6.00, '支付宝', '2024-05-18 19:04:02');
INSERT INTO `hotel_recharge_record` VALUES (75, 1, 10.00, '现金', '2024-05-18 19:05:42');
INSERT INTO `hotel_recharge_record` VALUES (76, 1, 30.00, '微信', '2024-05-18 19:10:09');
INSERT INTO `hotel_recharge_record` VALUES (77, 7, 1000.00, '现金', '2024-05-19 09:17:30');
-- ----------------------------
-- Table structure for hotel_room
-- ----------------------------
DROP TABLE IF EXISTS `hotel_room`;
CREATE TABLE `hotel_room` (
`room_id` int NOT NULL AUTO_INCREMENT COMMENT '房间ID',
`room_number` int NULL DEFAULT NULL COMMENT '房间号',
`floor_number` int NULL DEFAULT NULL COMMENT '房间楼层',
`room_type_id` int NULL DEFAULT NULL COMMENT '房型ID,关联酒店房型表',
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '房间状态(空闲/已预订/已入住/冻结)',
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`room_id`) USING BTREE,
INDEX `hotel_room_ibfk_1`(`room_type_id` ASC) USING BTREE,
CONSTRAINT `hotel_room_ibfk_1` FOREIGN KEY (`room_type_id`) REFERENCES `hotel_room_type` (`room_type_id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '酒店房间表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hotel_room
-- ----------------------------
INSERT INTO `hotel_room` VALUES (1, 118, 1, 1, '空闲', '2024-04-16 17:21:35', '2024-04-30 19:14:15');
INSERT INTO `hotel_room` VALUES (2, 221, 2, 4, '空闲', '2024-04-16 17:29:55', '2024-05-19 11:53:54');
INSERT INTO `hotel_room` VALUES (3, 108, 1, 7, '已预订', '2024-04-16 17:30:02', '2024-05-18 23:52:50');
INSERT INTO `hotel_room` VALUES (4, 330, 3, 3, '空闲', '2024-04-16 22:54:43', '2024-05-03 22:10:39');
INSERT INTO `hotel_room` VALUES (5, 466, 4, 6, '空闲', '2024-04-16 23:23:05', '2024-05-18 23:52:13');
INSERT INTO `hotel_room` VALUES (6, 502, 5, 3, '空闲', '2024-04-16 23:56:58', '2024-05-18 23:48:17');
INSERT INTO `hotel_room` VALUES (8, 666, 6, 4, '空闲', '2024-04-17 01:09:56', '2024-05-05 09:20:18');
INSERT INTO `hotel_room` VALUES (9, 916, 9, 3, '空闲', '2024-04-17 08:41:48', '2024-05-18 23:52:15');
INSERT INTO `hotel_room` VALUES (10, 102, 1, 1, '空闲', '2024-04-17 08:46:56', '2024-05-18 23:48:13');
INSERT INTO `hotel_room` VALUES (11, 525, 5, 1, '空闲', '2024-04-17 08:50:00', '2024-05-19 11:52:59');
INSERT INTO `hotel_room` VALUES (12, 212, 2, 1, '空闲', '2024-04-22 12:59:38', '2024-05-18 23:48:15');
INSERT INTO `hotel_room` VALUES (13, 701, 7, 2, '空闲', '2024-04-22 13:04:37', '2024-05-18 23:52:01');
INSERT INTO `hotel_room` VALUES (14, 803, 8, 4, '已入住', '2024-04-22 13:04:53', '2024-05-19 11:53:22');
INSERT INTO `hotel_room` VALUES (15, 705, 7, 1, '已入住', '2024-04-22 13:05:38', '2024-05-18 23:49:33');
INSERT INTO `hotel_room` VALUES (16, 811, 8, 1, '已预订', '2024-04-22 13:06:12', '2024-05-05 09:23:23');
INSERT INTO `hotel_room` VALUES (17, 812, 8, 1, '已入住', '2024-04-22 13:06:37', '2024-05-18 23:51:35');
INSERT INTO `hotel_room` VALUES (18, 721, 7, 7, '空闲', '2024-04-22 13:07:35', '2024-04-29 00:38:14');
INSERT INTO `hotel_room` VALUES (19, 888, 8, 5, '空闲', '2024-05-01 13:22:40', '2024-05-01 13:22:40');
-- ----------------------------
-- Table structure for hotel_room_type
-- ----------------------------
DROP TABLE IF EXISTS `hotel_room_type`;
CREATE TABLE `hotel_room_type` (
`room_type_id` int NOT NULL AUTO_INCREMENT COMMENT '房型ID',
`type_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '房型名称',
`price` decimal(10, 2) NULL DEFAULT NULL COMMENT '房型价格',
`image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '房型图片',
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '描述',
`status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '房型状态(正常|冻结)',
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
`update_time` datetime NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`room_type_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '酒店房型表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hotel_room_type
-- ----------------------------
INSERT INTO `hotel_room_type` VALUES (1, '标准间', 188.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/293f374b-cdc1-416d-96e6-30dea1eb4d13.jpg', '标准客房宽敞明亮,采用大窗户设计,可欣赏商业区的景致,享有舒适的休闲时光,可使用健身中心和游泳池,提供免费WiFi、迷你冰箱、电热水壶、平板电视和私人入口。', '正常', '2024-04-16 09:50:39', '2024-04-29 20:17:55');
INSERT INTO `hotel_room_type` VALUES (2, '大床房', 288.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/eb8534a4-8715-4564-b1a9-9803f4018b52.jpg', '大床房拥有标准间的全部设施,空间更加宽敞,提供空调、阳台、免费高速WiFi,以及带平板电视、迷你吧、保险箱和沏茶/咖啡设施的休息区。浴室提供吹风机和淋浴。', '正常', '2024-04-16 09:57:29', '2024-04-29 20:22:01');
INSERT INTO `hotel_room_type` VALUES (3, '双床房', 328.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/14bab162-1cd0-4a7f-a8f7-f1bb58811add.jpg', '宽敞的双床间提供空调、私人入口以及带步入式淋浴间和浴缸的私人浴室。双床间铺有地毯,设有带有线电视的休息区、隔音墙、迷你吧以及沏茶/咖啡设施。', '正常', '2024-04-16 09:57:59', '2024-04-29 20:23:23');
INSERT INTO `hotel_room_type` VALUES (4, '豪华双床房', 368.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/f6016931-0bb4-4646-8078-7b7509b67598.jpg', '宽敞的双床间提供空调、私人入口以及带步入式淋浴间和浴缸的私人浴室。双床间铺有地毯,提供带有线电视的休息区、隔音墙、迷你吧以及沏茶/咖啡设施。', '正常', '2024-04-16 09:59:14', '2024-04-29 20:42:28');
INSERT INTO `hotel_room_type` VALUES (5, '行政套房', 1688.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/b4bc70c4-b328-4d25-a10b-5c62e34e8d0f.jpg', '套房享有宽敞的空间,提供客人所需的所有舒适设施,享有一览无余的景致。特大号床提供奢华的枕头、柔软的床单和绒毛毯,供客人感受额外的奢华感。', '正常', '2024-04-16 11:45:34', '2024-04-29 20:42:09');
INSERT INTO `hotel_room_type` VALUES (6, '豪华单间', 328.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/9e3b0fb4-5f79-4015-8692-61c9e47055bc.jpg', '这间双床/双人间提供休息区、迷你吧和平板电视,铺有地毯,提供休息区、隔音墙、迷你吧以及沏茶/咖啡设施。客房楼层较高,享有壮观的城市全景。', '正常', '2024-04-16 11:57:40', '2024-05-05 09:54:09');
INSERT INTO `hotel_room_type` VALUES (7, '豪华套房', 1288.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/1f7ae341-fea2-4461-82b9-b62355bcd4fe.jpg', '这间豪华套房拥有别致的当代装饰和花瓣设计,客人可以从宽大的窗户欣赏到迷人的城市景观。套房设有入口区,提供各种现代化的设施。浴室配有大浴缸和独立淋浴。', '正常', '2024-04-16 15:10:04', '2024-04-29 20:36:30');
INSERT INTO `hotel_room_type` VALUES (8, '家庭套房', 998.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/910d7685-9a66-4512-953e-408362eedf58.jpg', '度过一个难忘的家庭假期——这里拥有充足的空间和现代化的设施,让您的住宿尽可能无忧无虑、轻松自在。家庭套房配有特殊的儿童设施、舒适的起居室和可选的连通房。', '正常', '2024-04-29 20:41:25', '2024-04-29 20:42:15');
INSERT INTO `hotel_room_type` VALUES (9, '尊享公寓', 3688.00, 'https://yorha-chq-picture.oss-cn-shanghai.aliyuncs.com/elysian-nest/5cfdb401-e07c-46cc-92c5-677c578109a4.jpg', '享受商务酒廊的使用权,还有咖啡机和免费早餐等其他出色设施,让您开启新的一天。宽敞的一室公寓提供热水浴池、空调、洗衣机以及带步入式淋浴间和浴缸的私人浴室', '正常', '2024-04-29 20:45:37', '2024-04-29 20:45:50');
-- ----------------------------
-- Table structure for sys_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_log`;
CREATE TABLE `sys_log` (
`log_id` int NOT NULL AUTO_INCREMENT COMMENT '日志ID',
`user_id` int NULL DEFAULT NULL COMMENT '用户ID,关联系统用户表',
`action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作行为',
`ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '发出请求的IP',
`address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'IP归属地',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '备注',
`create_time` datetime NULL DEFAULT NULL COMMENT '日志记录时间',
PRIMARY KEY (`log_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3376 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '系统日志表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_log
-- ----------------------------
INSERT INTO `sys_log` VALUES (1, 1, '数据获取:酒店运营数据总览', '59.55.32.13', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 00:52:01');
INSERT INTO `sys_log` VALUES (2, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 00:56:07');
INSERT INTO `sys_log` VALUES (3, 1, '数据获取:酒店运营数据总览', '104.28.209.183', '美国', 'DataStatisticsController.getTodayData()', '2024-04-29 00:56:54');
INSERT INTO `sys_log` VALUES (4, 1, '数据获取:酒店运营数据总览', '13.212.30.186', '美国康涅狄格', 'DataStatisticsController.getTodayData()', '2024-04-29 00:57:22');
INSERT INTO `sys_log` VALUES (5, 1, '数据获取:酒店运营数据总览', '178.173.238.110', '澳大利亚新南威尔士悉尼', 'DataStatisticsController.getTodayData()', '2024-04-29 00:58:09');
INSERT INTO `sys_log` VALUES (6, 1, '数据获取:酒店运营数据总览', '3.35.164.116', '韩国首尔', 'DataStatisticsController.getTodayData()', '2024-04-29 00:58:31');
INSERT INTO `sys_log` VALUES (7, 1, '数据获取:酒店运营数据总览', '104.28.254.74', '美国', 'DataStatisticsController.getTodayData()', '2024-04-29 00:58:52');
INSERT INTO `sys_log` VALUES (8, 1, '数据获取:酒店运营数据总览', '139.185.35.67', '阿联酋', 'DataStatisticsController.getTodayData()', '2024-04-29 00:59:16');
INSERT INTO `sys_log` VALUES (9, 1, '数据获取:酒店运营数据总览', '94.46.187.244', '英国Coventry', 'DataStatisticsController.getTodayData()', '2024-04-29 01:00:53');
INSERT INTO `sys_log` VALUES (10, 1, '数据获取:酒店运营数据总览', '18.184.43.175', '德国法兰克福', 'DataStatisticsController.getTodayData()', '2024-04-29 01:02:59');
INSERT INTO `sys_log` VALUES (11, 1, '数据获取:酒店运营数据总览', '65.2.188.201', '印度马哈拉施特拉孟买', 'DataStatisticsController.getTodayData()', '2024-04-29 01:03:21');
INSERT INTO `sys_log` VALUES (12, 1, '数据获取:酒店运营数据总览', '185.219.133.128', '土耳其', 'DataStatisticsController.getTodayData()', '2024-04-29 01:03:54');
INSERT INTO `sys_log` VALUES (13, 1, '数据获取:酒店运营数据总览', '31.40.212.184', '保加利亚Sofia', 'DataStatisticsController.getTodayData()', '2024-04-29 01:04:57');
INSERT INTO `sys_log` VALUES (14, 1, '数据获取:酒店运营数据总览', '104.28.246.146', '美国', 'DataStatisticsController.getTodayData()', '2024-04-29 01:06:18');
INSERT INTO `sys_log` VALUES (15, 1, '数据获取:酒店运营数据总览', '155.248.193.129', '美国加利福尼亚', 'DataStatisticsController.getTodayData()', '2024-04-29 01:06:45');
INSERT INTO `sys_log` VALUES (16, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 02:29:44');
INSERT INTO `sys_log` VALUES (17, 1, '数据获取:日历房态', '52.195.195.162', '日本东京都东京', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 02:29:47');
INSERT INTO `sys_log` VALUES (18, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 02:29:57');
INSERT INTO `sys_log` VALUES (19, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 02:38:43');
INSERT INTO `sys_log` VALUES (20, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:41:07');
INSERT INTO `sys_log` VALUES (21, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:42:18');
INSERT INTO `sys_log` VALUES (22, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:43:49');
INSERT INTO `sys_log` VALUES (23, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:47:34');
INSERT INTO `sys_log` VALUES (24, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:48:48');
INSERT INTO `sys_log` VALUES (25, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:54:08');
INSERT INTO `sys_log` VALUES (26, 1, '数据获取:酒店运营数据总览', '52.195.195.162', '日本东京都东京', 'DataStatisticsController.getTodayData()', '2024-04-29 02:54:20');
INSERT INTO `sys_log` VALUES (27, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 02:54:26');
INSERT INTO `sys_log` VALUES (28, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 02:54:55');
INSERT INTO `sys_log` VALUES (29, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 02:55:20');
INSERT INTO `sys_log` VALUES (30, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 03:00:17');
INSERT INTO `sys_log` VALUES (31, 1, '数据获取:员工列表', '52.195.195.162', '日本东京都东京', 'SysUserController.listRoles()', '2024-04-29 03:00:47');
INSERT INTO `sys_log` VALUES (32, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 17:10:42');
INSERT INTO `sys_log` VALUES (33, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:10:47');
INSERT INTO `sys_log` VALUES (34, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:11:39');
INSERT INTO `sys_log` VALUES (35, 1, '数据获取:用户列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.list()', '2024-04-29 17:11:39');
INSERT INTO `sys_log` VALUES (36, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:11:39');
INSERT INTO `sys_log` VALUES (37, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 17:15:19');
INSERT INTO `sys_log` VALUES (38, 1, '业务处理:会员充值', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.rechargeMember()', '2024-04-29 17:15:25');
INSERT INTO `sys_log` VALUES (39, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 17:15:26');
INSERT INTO `sys_log` VALUES (40, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:15:30');
INSERT INTO `sys_log` VALUES (41, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:52:03');
INSERT INTO `sys_log` VALUES (42, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 17:53:08');
INSERT INTO `sys_log` VALUES (43, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-29 17:53:19');
INSERT INTO `sys_log` VALUES (44, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-29 17:53:21');
INSERT INTO `sys_log` VALUES (45, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-29 17:53:25');
INSERT INTO `sys_log` VALUES (46, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 17:53:27');
INSERT INTO `sys_log` VALUES (47, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 17:53:28');
INSERT INTO `sys_log` VALUES (48, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 17:53:28');
INSERT INTO `sys_log` VALUES (49, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 17:53:30');
INSERT INTO `sys_log` VALUES (50, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 17:53:33');
INSERT INTO `sys_log` VALUES (51, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 17:53:33');
INSERT INTO `sys_log` VALUES (52, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 17:53:35');
INSERT INTO `sys_log` VALUES (53, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 17:53:44');
INSERT INTO `sys_log` VALUES (54, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:53:45');
INSERT INTO `sys_log` VALUES (55, 1, '数据获取:用户列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.list()', '2024-04-29 17:53:45');
INSERT INTO `sys_log` VALUES (56, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:53:48');
INSERT INTO `sys_log` VALUES (57, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-29 17:53:51');
INSERT INTO `sys_log` VALUES (58, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-29 17:53:51');
INSERT INTO `sys_log` VALUES (59, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:57:13');
INSERT INTO `sys_log` VALUES (60, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 17:58:02');
INSERT INTO `sys_log` VALUES (61, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-29 17:59:48');
INSERT INTO `sys_log` VALUES (62, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 18:00:50');
INSERT INTO `sys_log` VALUES (63, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 18:03:59');
INSERT INTO `sys_log` VALUES (64, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 18:07:06');
INSERT INTO `sys_log` VALUES (65, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 18:49:42');
INSERT INTO `sys_log` VALUES (66, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 18:50:30');
INSERT INTO `sys_log` VALUES (67, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 18:54:17');
INSERT INTO `sys_log` VALUES (68, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 18:59:26');
INSERT INTO `sys_log` VALUES (69, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:01:20');
INSERT INTO `sys_log` VALUES (70, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:01:22');
INSERT INTO `sys_log` VALUES (71, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:01:35');
INSERT INTO `sys_log` VALUES (72, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:01:38');
INSERT INTO `sys_log` VALUES (73, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:01:49');
INSERT INTO `sys_log` VALUES (74, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:01:53');
INSERT INTO `sys_log` VALUES (75, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:02:08');
INSERT INTO `sys_log` VALUES (76, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:02:14');
INSERT INTO `sys_log` VALUES (77, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:02:51');
INSERT INTO `sys_log` VALUES (78, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:03:14');
INSERT INTO `sys_log` VALUES (79, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:03:15');
INSERT INTO `sys_log` VALUES (80, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:03:23');
INSERT INTO `sys_log` VALUES (81, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:03:30');
INSERT INTO `sys_log` VALUES (82, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:04:39');
INSERT INTO `sys_log` VALUES (83, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:13:37');
INSERT INTO `sys_log` VALUES (84, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:14:12');
INSERT INTO `sys_log` VALUES (85, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:14:39');
INSERT INTO `sys_log` VALUES (86, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:17:11');
INSERT INTO `sys_log` VALUES (87, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:17:42');
INSERT INTO `sys_log` VALUES (88, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:17:52');
INSERT INTO `sys_log` VALUES (89, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:18:10');
INSERT INTO `sys_log` VALUES (90, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:19:39');
INSERT INTO `sys_log` VALUES (91, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:19:55');
INSERT INTO `sys_log` VALUES (92, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:20:02');
INSERT INTO `sys_log` VALUES (93, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:20:21');
INSERT INTO `sys_log` VALUES (94, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:20:34');
INSERT INTO `sys_log` VALUES (95, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:20:41');
INSERT INTO `sys_log` VALUES (96, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:20:47');
INSERT INTO `sys_log` VALUES (97, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:20:54');
INSERT INTO `sys_log` VALUES (98, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:21:00');
INSERT INTO `sys_log` VALUES (99, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:21:30');
INSERT INTO `sys_log` VALUES (100, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:21:39');
INSERT INTO `sys_log` VALUES (101, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:21:43');
INSERT INTO `sys_log` VALUES (102, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:21:58');
INSERT INTO `sys_log` VALUES (103, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:22:09');
INSERT INTO `sys_log` VALUES (104, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:22:48');
INSERT INTO `sys_log` VALUES (105, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:22:51');
INSERT INTO `sys_log` VALUES (106, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 19:23:56');
INSERT INTO `sys_log` VALUES (107, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-29 19:29:03');
INSERT INTO `sys_log` VALUES (108, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-29 19:29:04');
INSERT INTO `sys_log` VALUES (109, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 19:29:07');
INSERT INTO `sys_log` VALUES (110, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-29 19:29:08');
INSERT INTO `sys_log` VALUES (111, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 19:29:09');
INSERT INTO `sys_log` VALUES (112, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-29 19:29:38');
INSERT INTO `sys_log` VALUES (113, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 19:29:41');
INSERT INTO `sys_log` VALUES (114, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 19:29:43');
INSERT INTO `sys_log` VALUES (115, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 19:29:43');
INSERT INTO `sys_log` VALUES (116, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 19:29:45');
INSERT INTO `sys_log` VALUES (117, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 19:29:47');
INSERT INTO `sys_log` VALUES (118, 1, '数据获取:用户列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.list()', '2024-04-29 19:29:52');
INSERT INTO `sys_log` VALUES (119, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 19:29:52');
INSERT INTO `sys_log` VALUES (120, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 19:29:54');
INSERT INTO `sys_log` VALUES (121, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 19:30:00');
INSERT INTO `sys_log` VALUES (122, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:00:11');
INSERT INTO `sys_log` VALUES (123, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 20:00:11');
INSERT INTO `sys_log` VALUES (124, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 20:00:13');
INSERT INTO `sys_log` VALUES (125, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:00:14');
INSERT INTO `sys_log` VALUES (126, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:06:32');
INSERT INTO `sys_log` VALUES (127, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:06:52');
INSERT INTO `sys_log` VALUES (128, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:06:52');
INSERT INTO `sys_log` VALUES (129, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:09:20');
INSERT INTO `sys_log` VALUES (130, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:09:30');
INSERT INTO `sys_log` VALUES (131, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:09:37');
INSERT INTO `sys_log` VALUES (132, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:10:28');
INSERT INTO `sys_log` VALUES (133, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:13:07');
INSERT INTO `sys_log` VALUES (134, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:13:08');
INSERT INTO `sys_log` VALUES (135, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:13:10');
INSERT INTO `sys_log` VALUES (136, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:13:10');
INSERT INTO `sys_log` VALUES (137, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:13:17');
INSERT INTO `sys_log` VALUES (138, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:13:22');
INSERT INTO `sys_log` VALUES (139, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:16:42');
INSERT INTO `sys_log` VALUES (140, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:16:44');
INSERT INTO `sys_log` VALUES (141, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:16:45');
INSERT INTO `sys_log` VALUES (142, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:16:46');
INSERT INTO `sys_log` VALUES (143, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:17:56');
INSERT INTO `sys_log` VALUES (144, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:17:56');
INSERT INTO `sys_log` VALUES (145, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:19:50');
INSERT INTO `sys_log` VALUES (146, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:20:58');
INSERT INTO `sys_log` VALUES (147, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:20:58');
INSERT INTO `sys_log` VALUES (148, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:21:06');
INSERT INTO `sys_log` VALUES (149, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:21:06');
INSERT INTO `sys_log` VALUES (150, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:21:35');
INSERT INTO `sys_log` VALUES (151, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:21:36');
INSERT INTO `sys_log` VALUES (152, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:21:54');
INSERT INTO `sys_log` VALUES (153, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:21:54');
INSERT INTO `sys_log` VALUES (154, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:22:02');
INSERT INTO `sys_log` VALUES (155, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:22:02');
INSERT INTO `sys_log` VALUES (156, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:23:00');
INSERT INTO `sys_log` VALUES (157, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:23:17');
INSERT INTO `sys_log` VALUES (158, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:23:17');
INSERT INTO `sys_log` VALUES (159, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:23:17');
INSERT INTO `sys_log` VALUES (160, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:23:17');
INSERT INTO `sys_log` VALUES (161, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:23:23');
INSERT INTO `sys_log` VALUES (162, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:23:23');
INSERT INTO `sys_log` VALUES (163, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:24:13');
INSERT INTO `sys_log` VALUES (164, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:24:18');
INSERT INTO `sys_log` VALUES (165, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:24:31');
INSERT INTO `sys_log` VALUES (166, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:25:06');
INSERT INTO `sys_log` VALUES (167, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:25:09');
INSERT INTO `sys_log` VALUES (168, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:09');
INSERT INTO `sys_log` VALUES (169, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:25:13');
INSERT INTO `sys_log` VALUES (170, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:13');
INSERT INTO `sys_log` VALUES (171, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:14');
INSERT INTO `sys_log` VALUES (172, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:17');
INSERT INTO `sys_log` VALUES (173, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:25:32');
INSERT INTO `sys_log` VALUES (174, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:33');
INSERT INTO `sys_log` VALUES (175, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:34');
INSERT INTO `sys_log` VALUES (176, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:37');
INSERT INTO `sys_log` VALUES (177, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:38');
INSERT INTO `sys_log` VALUES (178, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:39');
INSERT INTO `sys_log` VALUES (179, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:40');
INSERT INTO `sys_log` VALUES (180, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:25:59');
INSERT INTO `sys_log` VALUES (181, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:28:41');
INSERT INTO `sys_log` VALUES (182, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:29:13');
INSERT INTO `sys_log` VALUES (183, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:29:13');
INSERT INTO `sys_log` VALUES (184, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:30:22');
INSERT INTO `sys_log` VALUES (185, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:30:41');
INSERT INTO `sys_log` VALUES (186, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:30:44');
INSERT INTO `sys_log` VALUES (187, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:30:54');
INSERT INTO `sys_log` VALUES (188, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:31:01');
INSERT INTO `sys_log` VALUES (189, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:31:23');
INSERT INTO `sys_log` VALUES (190, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:31:23');
INSERT INTO `sys_log` VALUES (191, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:32:16');
INSERT INTO `sys_log` VALUES (192, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:32:16');
INSERT INTO `sys_log` VALUES (193, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:32:34');
INSERT INTO `sys_log` VALUES (194, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:32:34');
INSERT INTO `sys_log` VALUES (195, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:32:41');
INSERT INTO `sys_log` VALUES (196, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:32:42');
INSERT INTO `sys_log` VALUES (197, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:34:46');
INSERT INTO `sys_log` VALUES (198, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:35:17');
INSERT INTO `sys_log` VALUES (199, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:35:34');
INSERT INTO `sys_log` VALUES (200, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:35:34');
INSERT INTO `sys_log` VALUES (201, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:35:37');
INSERT INTO `sys_log` VALUES (202, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:35:43');
INSERT INTO `sys_log` VALUES (203, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:36:11');
INSERT INTO `sys_log` VALUES (204, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:36:11');
INSERT INTO `sys_log` VALUES (205, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:36:24');
INSERT INTO `sys_log` VALUES (206, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:36:25');
INSERT INTO `sys_log` VALUES (207, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:36:30');
INSERT INTO `sys_log` VALUES (208, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:36:31');
INSERT INTO `sys_log` VALUES (209, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:36:47');
INSERT INTO `sys_log` VALUES (210, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:36:57');
INSERT INTO `sys_log` VALUES (211, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:36:59');
INSERT INTO `sys_log` VALUES (212, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:37:02');
INSERT INTO `sys_log` VALUES (213, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:37:34');
INSERT INTO `sys_log` VALUES (214, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:37:45');
INSERT INTO `sys_log` VALUES (215, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:37:50');
INSERT INTO `sys_log` VALUES (216, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:37:53');
INSERT INTO `sys_log` VALUES (217, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:41:03');
INSERT INTO `sys_log` VALUES (218, 1, '业务处理:添加酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.addHotelRoomType()', '2024-04-29 20:41:26');
INSERT INTO `sys_log` VALUES (219, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:41:26');
INSERT INTO `sys_log` VALUES (220, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:41:44');
INSERT INTO `sys_log` VALUES (221, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:41:44');
INSERT INTO `sys_log` VALUES (222, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:41:55');
INSERT INTO `sys_log` VALUES (223, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:41:59');
INSERT INTO `sys_log` VALUES (224, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:01');
INSERT INTO `sys_log` VALUES (225, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:42:10');
INSERT INTO `sys_log` VALUES (226, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:10');
INSERT INTO `sys_log` VALUES (227, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:11');
INSERT INTO `sys_log` VALUES (228, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:42:15');
INSERT INTO `sys_log` VALUES (229, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:16');
INSERT INTO `sys_log` VALUES (230, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:17');
INSERT INTO `sys_log` VALUES (231, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:42:28');
INSERT INTO `sys_log` VALUES (232, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:28');
INSERT INTO `sys_log` VALUES (233, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:30');
INSERT INTO `sys_log` VALUES (234, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:32');
INSERT INTO `sys_log` VALUES (235, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:34');
INSERT INTO `sys_log` VALUES (236, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:36');
INSERT INTO `sys_log` VALUES (237, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:42:38');
INSERT INTO `sys_log` VALUES (238, 1, '系统功能:上传文件', '115.148.108.53', '中国江西省赣州市', 'FileUploadController.upload()', '2024-04-29 20:44:38');
INSERT INTO `sys_log` VALUES (239, 1, '业务处理:添加酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.addHotelRoomType()', '2024-04-29 20:45:37');
INSERT INTO `sys_log` VALUES (240, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:45:37');
INSERT INTO `sys_log` VALUES (241, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:45:46');
INSERT INTO `sys_log` VALUES (242, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:45:46');
INSERT INTO `sys_log` VALUES (243, 1, '业务处理:更新酒店房间类型', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.updateHotelRoomType()', '2024-04-29 20:45:51');
INSERT INTO `sys_log` VALUES (244, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:45:51');
INSERT INTO `sys_log` VALUES (245, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:04');
INSERT INTO `sys_log` VALUES (246, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:05');
INSERT INTO `sys_log` VALUES (247, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:05');
INSERT INTO `sys_log` VALUES (248, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:06');
INSERT INTO `sys_log` VALUES (249, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:08');
INSERT INTO `sys_log` VALUES (250, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:09');
INSERT INTO `sys_log` VALUES (251, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:19');
INSERT INTO `sys_log` VALUES (252, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:20');
INSERT INTO `sys_log` VALUES (253, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:21');
INSERT INTO `sys_log` VALUES (254, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:23');
INSERT INTO `sys_log` VALUES (255, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:24');
INSERT INTO `sys_log` VALUES (256, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:31');
INSERT INTO `sys_log` VALUES (257, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:37');
INSERT INTO `sys_log` VALUES (258, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:39');
INSERT INTO `sys_log` VALUES (259, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:40');
INSERT INTO `sys_log` VALUES (260, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:49');
INSERT INTO `sys_log` VALUES (261, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:47:54');
INSERT INTO `sys_log` VALUES (262, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:48:18');
INSERT INTO `sys_log` VALUES (263, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:48:55');
INSERT INTO `sys_log` VALUES (264, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 20:48:55');
INSERT INTO `sys_log` VALUES (265, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 20:48:59');
INSERT INTO `sys_log` VALUES (266, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 20:49:01');
INSERT INTO `sys_log` VALUES (267, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 20:49:08');
INSERT INTO `sys_log` VALUES (268, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-29 20:49:09');
INSERT INTO `sys_log` VALUES (269, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:49:12');
INSERT INTO `sys_log` VALUES (270, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 20:49:13');
INSERT INTO `sys_log` VALUES (271, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-29 20:49:15');
INSERT INTO `sys_log` VALUES (272, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 20:49:17');
INSERT INTO `sys_log` VALUES (273, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-29 20:49:19');
INSERT INTO `sys_log` VALUES (274, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-29 20:49:19');
INSERT INTO `sys_log` VALUES (275, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 20:49:21');
INSERT INTO `sys_log` VALUES (276, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 20:49:24');
INSERT INTO `sys_log` VALUES (277, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-29 20:55:56');
INSERT INTO `sys_log` VALUES (278, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-29 20:55:57');
INSERT INTO `sys_log` VALUES (279, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 20:55:58');
INSERT INTO `sys_log` VALUES (280, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-29 20:56:02');
INSERT INTO `sys_log` VALUES (281, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:56:05');
INSERT INTO `sys_log` VALUES (282, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:56:15');
INSERT INTO `sys_log` VALUES (283, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:56:20');
INSERT INTO `sys_log` VALUES (284, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:56:21');
INSERT INTO `sys_log` VALUES (285, 1, '业务处理:更新用户信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.updateByAdmin()', '2024-04-29 20:56:22');
INSERT INTO `sys_log` VALUES (286, 1, '业务处理:会员充值', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.rechargeMember()', '2024-04-29 20:56:29');
INSERT INTO `sys_log` VALUES (287, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:56:29');
INSERT INTO `sys_log` VALUES (288, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 20:56:33');
INSERT INTO `sys_log` VALUES (289, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-29 20:56:34');
INSERT INTO `sys_log` VALUES (290, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:56:37');
INSERT INTO `sys_log` VALUES (291, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-29 20:57:26');
INSERT INTO `sys_log` VALUES (292, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-29 20:57:28');
INSERT INTO `sys_log` VALUES (293, 1, '业务处理:房间预订', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.reserveHotelRoom()', '2024-04-29 20:57:41');
INSERT INTO `sys_log` VALUES (294, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-29 20:57:41');
INSERT INTO `sys_log` VALUES (295, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 20:57:44');
INSERT INTO `sys_log` VALUES (296, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 20:58:14');
INSERT INTO `sys_log` VALUES (297, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-29 20:58:19');
INSERT INTO `sys_log` VALUES (298, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 20:58:21');
INSERT INTO `sys_log` VALUES (299, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 21:01:22');
INSERT INTO `sys_log` VALUES (300, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-29 21:01:42');
INSERT INTO `sys_log` VALUES (301, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 21:04:44');
INSERT INTO `sys_log` VALUES (302, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-29 21:45:19');
INSERT INTO `sys_log` VALUES (303, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-29 23:08:01');
INSERT INTO `sys_log` VALUES (304, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-29 23:08:01');
INSERT INTO `sys_log` VALUES (305, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-29 23:35:58');
INSERT INTO `sys_log` VALUES (306, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-29 23:47:18');
INSERT INTO `sys_log` VALUES (307, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:08:13');
INSERT INTO `sys_log` VALUES (308, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 00:08:23');
INSERT INTO `sys_log` VALUES (309, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:22:39');
INSERT INTO `sys_log` VALUES (310, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 00:22:43');
INSERT INTO `sys_log` VALUES (311, 1, '系统功能:用户退出登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.logout()', '2024-04-30 00:22:50');
INSERT INTO `sys_log` VALUES (312, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:23:42');
INSERT INTO `sys_log` VALUES (313, 1, '系统功能:用户退出登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.logout()', '2024-04-30 00:23:43');
INSERT INTO `sys_log` VALUES (314, 9, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:24:27');
INSERT INTO `sys_log` VALUES (315, 10, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:24:30');
INSERT INTO `sys_log` VALUES (316, 14, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:24:31');
INSERT INTO `sys_log` VALUES (317, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:48:03');
INSERT INTO `sys_log` VALUES (318, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-30 00:48:03');
INSERT INTO `sys_log` VALUES (319, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:50:13');
INSERT INTO `sys_log` VALUES (320, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:50:53');
INSERT INTO `sys_log` VALUES (321, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:52:33');
INSERT INTO `sys_log` VALUES (322, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 00:55:47');
INSERT INTO `sys_log` VALUES (323, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 01:00:10');
INSERT INTO `sys_log` VALUES (324, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 01:00:26');
INSERT INTO `sys_log` VALUES (325, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 01:01:43');
INSERT INTO `sys_log` VALUES (326, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 01:01:48');
INSERT INTO `sys_log` VALUES (327, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 10:15:28');
INSERT INTO `sys_log` VALUES (328, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 10:31:12');
INSERT INTO `sys_log` VALUES (329, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 10:31:12');
INSERT INTO `sys_log` VALUES (330, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 10:31:36');
INSERT INTO `sys_log` VALUES (331, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 10:31:46');
INSERT INTO `sys_log` VALUES (332, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 10:31:46');
INSERT INTO `sys_log` VALUES (333, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:00:40');
INSERT INTO `sys_log` VALUES (334, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:13:42');
INSERT INTO `sys_log` VALUES (335, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:14:50');
INSERT INTO `sys_log` VALUES (336, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 11:18:51');
INSERT INTO `sys_log` VALUES (337, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:38:54');
INSERT INTO `sys_log` VALUES (338, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:41:44');
INSERT INTO `sys_log` VALUES (339, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:41:59');
INSERT INTO `sys_log` VALUES (340, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:43:08');
INSERT INTO `sys_log` VALUES (341, NULL, '系统功能:用户退出登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.logout()', '2024-04-30 11:43:13');
INSERT INTO `sys_log` VALUES (342, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:43:27');
INSERT INTO `sys_log` VALUES (343, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:43:53');
INSERT INTO `sys_log` VALUES (344, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:44:00');
INSERT INTO `sys_log` VALUES (345, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:44:26');
INSERT INTO `sys_log` VALUES (346, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:44:28');
INSERT INTO `sys_log` VALUES (347, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:48:33');
INSERT INTO `sys_log` VALUES (348, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:48:33');
INSERT INTO `sys_log` VALUES (349, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 11:54:47');
INSERT INTO `sys_log` VALUES (350, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:55:00');
INSERT INTO `sys_log` VALUES (351, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:55:00');
INSERT INTO `sys_log` VALUES (352, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 11:55:52');
INSERT INTO `sys_log` VALUES (353, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:55:58');
INSERT INTO `sys_log` VALUES (354, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:55:58');
INSERT INTO `sys_log` VALUES (355, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 11:56:07');
INSERT INTO `sys_log` VALUES (356, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:58:02');
INSERT INTO `sys_log` VALUES (357, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:58:03');
INSERT INTO `sys_log` VALUES (358, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:59:26');
INSERT INTO `sys_log` VALUES (359, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:59:27');
INSERT INTO `sys_log` VALUES (360, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 11:59:32');
INSERT INTO `sys_log` VALUES (361, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:59:40');
INSERT INTO `sys_log` VALUES (362, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 11:59:53');
INSERT INTO `sys_log` VALUES (363, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 12:14:50');
INSERT INTO `sys_log` VALUES (364, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 12:14:50');
INSERT INTO `sys_log` VALUES (365, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 12:19:57');
INSERT INTO `sys_log` VALUES (366, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 12:20:55');
INSERT INTO `sys_log` VALUES (367, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 13:12:54');
INSERT INTO `sys_log` VALUES (368, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 13:13:17');
INSERT INTO `sys_log` VALUES (369, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 13:31:00');
INSERT INTO `sys_log` VALUES (370, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 13:31:01');
INSERT INTO `sys_log` VALUES (371, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 13:31:01');
INSERT INTO `sys_log` VALUES (372, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 13:36:33');
INSERT INTO `sys_log` VALUES (373, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 13:36:34');
INSERT INTO `sys_log` VALUES (374, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 13:38:24');
INSERT INTO `sys_log` VALUES (375, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 13:57:06');
INSERT INTO `sys_log` VALUES (376, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 13:57:07');
INSERT INTO `sys_log` VALUES (377, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 13:57:07');
INSERT INTO `sys_log` VALUES (378, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:06:36');
INSERT INTO `sys_log` VALUES (379, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 14:06:36');
INSERT INTO `sys_log` VALUES (380, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:06:36');
INSERT INTO `sys_log` VALUES (381, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:14:26');
INSERT INTO `sys_log` VALUES (382, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:14:26');
INSERT INTO `sys_log` VALUES (383, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:16:36');
INSERT INTO `sys_log` VALUES (384, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 14:16:36');
INSERT INTO `sys_log` VALUES (385, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:16:36');
INSERT INTO `sys_log` VALUES (386, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:39:44');
INSERT INTO `sys_log` VALUES (387, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:39:45');
INSERT INTO `sys_log` VALUES (388, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:42:52');
INSERT INTO `sys_log` VALUES (389, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 14:42:52');
INSERT INTO `sys_log` VALUES (390, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:42:52');
INSERT INTO `sys_log` VALUES (391, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:53:54');
INSERT INTO `sys_log` VALUES (392, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:53:55');
INSERT INTO `sys_log` VALUES (393, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:54:21');
INSERT INTO `sys_log` VALUES (394, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 14:54:22');
INSERT INTO `sys_log` VALUES (395, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:54:22');
INSERT INTO `sys_log` VALUES (396, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 14:55:34');
INSERT INTO `sys_log` VALUES (397, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 14:55:34');
INSERT INTO `sys_log` VALUES (398, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:01:44');
INSERT INTO `sys_log` VALUES (399, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:01:44');
INSERT INTO `sys_log` VALUES (400, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:09:00');
INSERT INTO `sys_log` VALUES (401, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:09:01');
INSERT INTO `sys_log` VALUES (402, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:16:43');
INSERT INTO `sys_log` VALUES (403, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:16:44');
INSERT INTO `sys_log` VALUES (404, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:19:01');
INSERT INTO `sys_log` VALUES (405, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:19:02');
INSERT INTO `sys_log` VALUES (406, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:24:31');
INSERT INTO `sys_log` VALUES (407, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:24:31');
INSERT INTO `sys_log` VALUES (408, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:24:56');
INSERT INTO `sys_log` VALUES (409, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:24:56');
INSERT INTO `sys_log` VALUES (410, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:26:25');
INSERT INTO `sys_log` VALUES (411, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:26:26');
INSERT INTO `sys_log` VALUES (412, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:26:36');
INSERT INTO `sys_log` VALUES (413, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:26:42');
INSERT INTO `sys_log` VALUES (414, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 15:26:42');
INSERT INTO `sys_log` VALUES (415, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:26:43');
INSERT INTO `sys_log` VALUES (416, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:30:38');
INSERT INTO `sys_log` VALUES (417, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:30:39');
INSERT INTO `sys_log` VALUES (418, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:31:03');
INSERT INTO `sys_log` VALUES (419, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 15:31:03');
INSERT INTO `sys_log` VALUES (420, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:31:03');
INSERT INTO `sys_log` VALUES (421, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:31:52');
INSERT INTO `sys_log` VALUES (422, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:31:53');
INSERT INTO `sys_log` VALUES (423, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:32:14');
INSERT INTO `sys_log` VALUES (424, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:32:15');
INSERT INTO `sys_log` VALUES (425, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:36:43');
INSERT INTO `sys_log` VALUES (426, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:36:44');
INSERT INTO `sys_log` VALUES (427, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:38:04');
INSERT INTO `sys_log` VALUES (428, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:38:04');
INSERT INTO `sys_log` VALUES (429, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:46:57');
INSERT INTO `sys_log` VALUES (430, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 15:46:58');
INSERT INTO `sys_log` VALUES (431, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:46:58');
INSERT INTO `sys_log` VALUES (432, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 15:55:41');
INSERT INTO `sys_log` VALUES (433, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 15:55:42');
INSERT INTO `sys_log` VALUES (434, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 15:55:42');
INSERT INTO `sys_log` VALUES (435, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:06:15');
INSERT INTO `sys_log` VALUES (436, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:06:16');
INSERT INTO `sys_log` VALUES (437, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:07:49');
INSERT INTO `sys_log` VALUES (438, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 16:07:50');
INSERT INTO `sys_log` VALUES (439, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:07:50');
INSERT INTO `sys_log` VALUES (440, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:12:42');
INSERT INTO `sys_log` VALUES (441, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 16:12:42');
INSERT INTO `sys_log` VALUES (442, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:12:42');
INSERT INTO `sys_log` VALUES (443, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:13:12');
INSERT INTO `sys_log` VALUES (444, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:13:13');
INSERT INTO `sys_log` VALUES (445, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:13:47');
INSERT INTO `sys_log` VALUES (446, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:13:48');
INSERT INTO `sys_log` VALUES (447, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:16:37');
INSERT INTO `sys_log` VALUES (448, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 16:16:37');
INSERT INTO `sys_log` VALUES (449, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:16:37');
INSERT INTO `sys_log` VALUES (450, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:17:16');
INSERT INTO `sys_log` VALUES (451, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:17:16');
INSERT INTO `sys_log` VALUES (452, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 16:34:39');
INSERT INTO `sys_log` VALUES (453, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-30 16:34:43');
INSERT INTO `sys_log` VALUES (454, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 16:34:52');
INSERT INTO `sys_log` VALUES (455, 1, '数据获取:员工列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 16:35:22');
INSERT INTO `sys_log` VALUES (456, 1, '数据获取:角色列表', '115.148.108.53', '中国江西省赣州市', 'SysUserController.listRoles()', '2024-04-30 16:40:49');
INSERT INTO `sys_log` VALUES (457, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:45:05');
INSERT INTO `sys_log` VALUES (458, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 16:45:06');
INSERT INTO `sys_log` VALUES (459, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:45:06');
INSERT INTO `sys_log` VALUES (460, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:46:13');
INSERT INTO `sys_log` VALUES (461, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 16:46:13');
INSERT INTO `sys_log` VALUES (462, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:46:14');
INSERT INTO `sys_log` VALUES (463, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 16:47:45');
INSERT INTO `sys_log` VALUES (464, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 16:47:45');
INSERT INTO `sys_log` VALUES (465, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 16:47:46');
INSERT INTO `sys_log` VALUES (466, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 17:08:29');
INSERT INTO `sys_log` VALUES (467, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 17:08:30');
INSERT INTO `sys_log` VALUES (468, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 17:08:30');
INSERT INTO `sys_log` VALUES (469, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 17:09:43');
INSERT INTO `sys_log` VALUES (470, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 17:09:44');
INSERT INTO `sys_log` VALUES (471, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 17:09:44');
INSERT INTO `sys_log` VALUES (472, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 17:10:52');
INSERT INTO `sys_log` VALUES (473, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 17:10:53');
INSERT INTO `sys_log` VALUES (474, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 17:10:53');
INSERT INTO `sys_log` VALUES (475, 1, '数据获取:酒店运营数据总览', '115.148.108.53', '中国江西省赣州市', 'DataStatisticsController.getTodayData()', '2024-04-30 18:04:32');
INSERT INTO `sys_log` VALUES (476, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-30 18:04:39');
INSERT INTO `sys_log` VALUES (477, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-30 18:04:40');
INSERT INTO `sys_log` VALUES (478, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 18:04:47');
INSERT INTO `sys_log` VALUES (479, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 18:04:50');
INSERT INTO `sys_log` VALUES (480, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 18:05:38');
INSERT INTO `sys_log` VALUES (481, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 18:06:41');
INSERT INTO `sys_log` VALUES (482, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 18:06:44');
INSERT INTO `sys_log` VALUES (483, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 18:07:14');
INSERT INTO `sys_log` VALUES (484, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:07:22');
INSERT INTO `sys_log` VALUES (485, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:07:36');
INSERT INTO `sys_log` VALUES (486, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:07:43');
INSERT INTO `sys_log` VALUES (487, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:07:49');
INSERT INTO `sys_log` VALUES (488, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:07:51');
INSERT INTO `sys_log` VALUES (489, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:07:54');
INSERT INTO `sys_log` VALUES (490, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:18');
INSERT INTO `sys_log` VALUES (491, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:20');
INSERT INTO `sys_log` VALUES (492, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:25');
INSERT INTO `sys_log` VALUES (493, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:29');
INSERT INTO `sys_log` VALUES (494, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:30');
INSERT INTO `sys_log` VALUES (495, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:31');
INSERT INTO `sys_log` VALUES (496, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:33');
INSERT INTO `sys_log` VALUES (497, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:35');
INSERT INTO `sys_log` VALUES (498, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:36');
INSERT INTO `sys_log` VALUES (499, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 18:08:51');
INSERT INTO `sys_log` VALUES (500, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 18:13:18');
INSERT INTO `sys_log` VALUES (501, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 18:13:19');
INSERT INTO `sys_log` VALUES (502, 1, '系统功能:用户登录', '115.148.108.53', '中国江西省赣州市', 'SysUserController.login()', '2024-04-30 19:07:21');
INSERT INTO `sys_log` VALUES (503, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:07:33');
INSERT INTO `sys_log` VALUES (504, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:08:26');
INSERT INTO `sys_log` VALUES (505, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:09:19');
INSERT INTO `sys_log` VALUES (506, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:10:18');
INSERT INTO `sys_log` VALUES (507, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:11:35');
INSERT INTO `sys_log` VALUES (508, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:11:54');
INSERT INTO `sys_log` VALUES (509, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:12:10');
INSERT INTO `sys_log` VALUES (510, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 19:12:30');
INSERT INTO `sys_log` VALUES (511, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:12:30');
INSERT INTO `sys_log` VALUES (512, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:12:46');
INSERT INTO `sys_log` VALUES (513, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 19:12:47');
INSERT INTO `sys_log` VALUES (514, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:12:47');
INSERT INTO `sys_log` VALUES (515, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:12:49');
INSERT INTO `sys_log` VALUES (516, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:12:54');
INSERT INTO `sys_log` VALUES (517, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-30 19:14:09');
INSERT INTO `sys_log` VALUES (518, 1, '业务处理:办理退房', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.checkoutHotelRoom()', '2024-04-30 19:14:16');
INSERT INTO `sys_log` VALUES (519, 1, '数据获取:入住信息列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getCheckinList()', '2024-04-30 19:14:17');
INSERT INTO `sys_log` VALUES (520, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:14:21');
INSERT INTO `sys_log` VALUES (521, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:14:45');
INSERT INTO `sys_log` VALUES (522, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:15:36');
INSERT INTO `sys_log` VALUES (523, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:21:26');
INSERT INTO `sys_log` VALUES (524, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:21:41');
INSERT INTO `sys_log` VALUES (525, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 19:21:54');
INSERT INTO `sys_log` VALUES (526, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:21:54');
INSERT INTO `sys_log` VALUES (527, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:21:56');
INSERT INTO `sys_log` VALUES (528, 1, '业务处理:更新酒店房间信息', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.updateHotelRoom()', '2024-04-30 19:22:00');
INSERT INTO `sys_log` VALUES (529, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:22:01');
INSERT INTO `sys_log` VALUES (530, 1, '业务处理:更新酒店房间信息', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.updateHotelRoom()', '2024-04-30 19:22:05');
INSERT INTO `sys_log` VALUES (531, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:22:05');
INSERT INTO `sys_log` VALUES (532, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:22:07');
INSERT INTO `sys_log` VALUES (533, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 19:22:11');
INSERT INTO `sys_log` VALUES (534, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:22:15');
INSERT INTO `sys_log` VALUES (535, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:29:06');
INSERT INTO `sys_log` VALUES (536, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:29:18');
INSERT INTO `sys_log` VALUES (537, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:30:29');
INSERT INTO `sys_log` VALUES (538, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:31:25');
INSERT INTO `sys_log` VALUES (539, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:31:39');
INSERT INTO `sys_log` VALUES (540, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:31:42');
INSERT INTO `sys_log` VALUES (541, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:32:14');
INSERT INTO `sys_log` VALUES (542, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:32:20');
INSERT INTO `sys_log` VALUES (543, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:33:36');
INSERT INTO `sys_log` VALUES (544, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:35:20');
INSERT INTO `sys_log` VALUES (545, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:35:29');
INSERT INTO `sys_log` VALUES (546, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:35:35');
INSERT INTO `sys_log` VALUES (547, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:40:03');
INSERT INTO `sys_log` VALUES (548, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:40:28');
INSERT INTO `sys_log` VALUES (549, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:44:39');
INSERT INTO `sys_log` VALUES (550, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:44:40');
INSERT INTO `sys_log` VALUES (551, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:45:16');
INSERT INTO `sys_log` VALUES (552, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:45:24');
INSERT INTO `sys_log` VALUES (553, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:45:35');
INSERT INTO `sys_log` VALUES (554, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:45:39');
INSERT INTO `sys_log` VALUES (555, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:45:47');
INSERT INTO `sys_log` VALUES (556, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:46:19');
INSERT INTO `sys_log` VALUES (557, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:46:55');
INSERT INTO `sys_log` VALUES (558, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:48:01');
INSERT INTO `sys_log` VALUES (559, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:48:05');
INSERT INTO `sys_log` VALUES (560, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:48:13');
INSERT INTO `sys_log` VALUES (561, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:48:23');
INSERT INTO `sys_log` VALUES (562, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:48:44');
INSERT INTO `sys_log` VALUES (563, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:48:49');
INSERT INTO `sys_log` VALUES (564, 1, '业务处理:房间预订', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.reserveHotelRoom()', '2024-04-30 19:48:55');
INSERT INTO `sys_log` VALUES (565, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:48:55');
INSERT INTO `sys_log` VALUES (566, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:49:04');
INSERT INTO `sys_log` VALUES (567, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:49:50');
INSERT INTO `sys_log` VALUES (568, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:49:51');
INSERT INTO `sys_log` VALUES (569, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 19:49:53');
INSERT INTO `sys_log` VALUES (570, 1, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomTypeController.getHotelRoomTypes()', '2024-04-30 19:49:59');
INSERT INTO `sys_log` VALUES (571, 1, '数据获取:酒店房间列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomController.getHotelRooms()', '2024-04-30 19:49:59');
INSERT INTO `sys_log` VALUES (572, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-30 19:50:20');
INSERT INTO `sys_log` VALUES (573, 1, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getWeather()', '2024-04-30 19:50:20');
INSERT INTO `sys_log` VALUES (574, 1, '数据获取:日历房态', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getMonthData()', '2024-04-30 19:50:21');
INSERT INTO `sys_log` VALUES (575, 1, '数据获取:会员列表', '115.148.108.53', '中国江西省赣州市', 'HotelMemberController.getMembers()', '2024-04-30 19:50:28');
INSERT INTO `sys_log` VALUES (576, 1, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'HotelRoomCalendarController.getAvailableRooms()', '2024-04-30 19:50:32');
INSERT INTO `sys_log` VALUES (577, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 21:00:39');
INSERT INTO `sys_log` VALUES (578, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 21:00:40');
INSERT INTO `sys_log` VALUES (579, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 21:00:40');
INSERT INTO `sys_log` VALUES (580, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 21:01:21');
INSERT INTO `sys_log` VALUES (581, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 21:01:22');
INSERT INTO `sys_log` VALUES (582, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 21:01:22');
INSERT INTO `sys_log` VALUES (583, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 21:01:25');
INSERT INTO `sys_log` VALUES (584, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 21:01:26');
INSERT INTO `sys_log` VALUES (585, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 21:01:30');
INSERT INTO `sys_log` VALUES (586, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 21:01:31');
INSERT INTO `sys_log` VALUES (587, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 21:02:19');
INSERT INTO `sys_log` VALUES (588, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 21:07:39');
INSERT INTO `sys_log` VALUES (589, 3, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:09:45');
INSERT INTO `sys_log` VALUES (590, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 21:12:22');
INSERT INTO `sys_log` VALUES (591, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 21:12:22');
INSERT INTO `sys_log` VALUES (592, 3, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:12:32');
INSERT INTO `sys_log` VALUES (593, 3, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:12:40');
INSERT INTO `sys_log` VALUES (594, 3, '数据获取:房间可用状态列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:17:46');
INSERT INTO `sys_log` VALUES (595, 1, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:29:58');
INSERT INTO `sys_log` VALUES (596, 1, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:30:07');
INSERT INTO `sys_log` VALUES (597, 1, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:30:19');
INSERT INTO `sys_log` VALUES (598, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 21:41:54');
INSERT INTO `sys_log` VALUES (599, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:41:59');
INSERT INTO `sys_log` VALUES (600, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 21:43:28');
INSERT INTO `sys_log` VALUES (601, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:52:21');
INSERT INTO `sys_log` VALUES (602, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 21:52:59');
INSERT INTO `sys_log` VALUES (603, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 22:02:31');
INSERT INTO `sys_log` VALUES (604, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:02:33');
INSERT INTO `sys_log` VALUES (605, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 22:13:08');
INSERT INTO `sys_log` VALUES (606, 1, '数据获取:酒店订单列表', '115.148.108.53', '中国江西省赣州市', 'HotelOrderController.getHotelOrders()', '2024-04-30 22:13:46');
INSERT INTO `sys_log` VALUES (607, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 22:14:14');
INSERT INTO `sys_log` VALUES (608, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 22:14:14');
INSERT INTO `sys_log` VALUES (609, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:14:24');
INSERT INTO `sys_log` VALUES (610, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:14:30');
INSERT INTO `sys_log` VALUES (611, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:14:36');
INSERT INTO `sys_log` VALUES (612, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:21:50');
INSERT INTO `sys_log` VALUES (613, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:21:55');
INSERT INTO `sys_log` VALUES (614, 3, '系统功能:获取酒店首页信息', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelInfo()', '2024-04-30 22:43:12');
INSERT INTO `sys_log` VALUES (615, 3, '数据获取:酒店房间类型列表', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getHotelRoomTypes()', '2024-04-30 22:43:13');
INSERT INTO `sys_log` VALUES (616, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:43:23');
INSERT INTO `sys_log` VALUES (617, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:43:32');
INSERT INTO `sys_log` VALUES (618, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:46:26');
INSERT INTO `sys_log` VALUES (619, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:47:07');
INSERT INTO `sys_log` VALUES (620, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:48:44');
INSERT INTO `sys_log` VALUES (621, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:51:00');
INSERT INTO `sys_log` VALUES (622, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 22:51:03');
INSERT INTO `sys_log` VALUES (623, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:57:15');
INSERT INTO `sys_log` VALUES (624, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 22:57:24');
INSERT INTO `sys_log` VALUES (625, 1, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'SysUserController.getUserInfo()', '2024-04-30 23:02:02');
INSERT INTO `sys_log` VALUES (626, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 23:03:53');
INSERT INTO `sys_log` VALUES (627, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 23:03:55');
INSERT INTO `sys_log` VALUES (628, 3, '系统功能:获取实时天气', '115.148.108.53', '中国江西省赣州市', 'ClientHomeController.getWeather()', '2024-04-30 23:06:29');
INSERT INTO `sys_log` VALUES (629, 3, '数据获取:房间列表', '115.148.108.53', '中国江西省赣州市', 'ClientRoomController.getAvailableRooms()', '2024-04-30 23:06:37');
INSERT INTO `sys_log` VALUES (630, 3, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'ClientSpaceController.getUserInfo()', '2024-04-30 23:07:04');
INSERT INTO `sys_log` VALUES (631, 3, '数据获取:个人信息', '115.148.108.53', '中国江西省赣州市', 'ClientSpaceController.getUserInfo()', '2024-04-30 23:07:05');
INSERT INTO `sys_log` VALUES (632, 3, '业务处理:房间预订', '115.148.108.53', '中国江西省赣州市', 'ClientOrderController.reserveHotelRoom()', '2024-04-30 23:07:05');