-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathshopclone7.sql
More file actions
3108 lines (2841 loc) · 159 KB
/
shopclone7.sql
File metadata and controls
3108 lines (2841 loc) · 159 KB
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
-- phpMyAdmin SQL Dump
-- version 5.1.3
-- https://www.phpmyadmin.net/
--
-- Máy chủ: localhost
-- Thời gian đã tạo: Th3 02, 2025 lúc 04:10 PM
-- Phiên bản máy phục vụ: 10.4.21-MariaDB
-- Phiên bản PHP: 7.4.29
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Cơ sở dữ liệu: `test`
--
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `admin_request_logs`
--
CREATE TABLE `admin_request_logs` (
`id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL,
`request_url` text COLLATE utf8_unicode_ci NOT NULL,
`request_method` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`request_params` text COLLATE utf8_unicode_ci DEFAULT NULL,
`ip` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`user_agent` text COLLATE utf8_unicode_ci NOT NULL,
`timestamp` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `admin_role`
--
CREATE TABLE `admin_role` (
`id` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`role` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`role`)),
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `admin_role`
--
INSERT INTO `admin_role` (`id`, `name`, `role`, `create_gettime`, `update_gettime`) VALUES
(1, 'Super Admin', '[\"view_license\",\"view_statistical\",\"view_recent_transactions\",\"view_logs\",\"view_transactions\",\"view_block_ip\",\"edit_block_ip\",\"view_automations\",\"edit_automations\",\"view_user\",\"edit_user\",\"login_user\",\"view_role\",\"edit_role\",\"view_recharge\",\"edit_recharge\",\"view_affiliate\",\"view_withdraw_affiliate\",\"edit_withdraw_affiliate\",\"edit_affiliate\",\"view_email_campaigns\",\"edit_email_campaigns\",\"view_coupon\",\"edit_coupon\",\"view_promotion\",\"edit_promotion\",\"view_blog\",\"edit_blog\",\"view_product\",\"edit_product\",\"edit_stock_product\",\"view_orders_product\",\"refund_orders_product\",\"view_order_product\",\"delete_order_product\",\"manager_suppliers\",\"view_sold_product\",\"view_menu\",\"edit_menu\",\"view_lang\",\"edit_lang\",\"view_currency\",\"edit_currency\",\"edit_theme\",\"edit_setting\"]', '2023-11-16 20:28:54', '2024-08-10 12:57:40'),
(2, 'Sales', '[\"view_logs\",\"view_transactions\",\"view_user\",\"view_affiliate\",\"view_withdraw_affiliate\",\"view_coupon\"]', '2023-11-16 20:41:10', '2023-11-16 20:53:56');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `aff_log`
--
CREATE TABLE `aff_log` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`reason` text COLLATE utf8_unicode_ci DEFAULT NULL,
`sotientruoc` float NOT NULL DEFAULT 0,
`sotienthaydoi` float NOT NULL DEFAULT 0,
`sotienhientai` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `aff_withdraw`
--
CREATE TABLE `aff_withdraw` (
`id` int(11) NOT NULL,
`trans_id` text COLLATE utf8_unicode_ci DEFAULT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`bank` text COLLATE utf8_unicode_ci DEFAULT NULL,
`stk` text COLLATE utf8_unicode_ci DEFAULT NULL,
`name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL DEFAULT 0,
`status` varchar(25) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending',
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`reason` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `automations`
--
CREATE TABLE `automations` (
`id` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`type` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`product_id` longtext COLLATE utf8_unicode_ci DEFAULT NULL,
`schedule` int(11) NOT NULL DEFAULT 0,
`other` text COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `banks`
--
CREATE TABLE `banks` (
`id` int(11) NOT NULL,
`short_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`image` text COLLATE utf8_unicode_ci DEFAULT NULL,
`accountName` text COLLATE utf8_unicode_ci DEFAULT NULL,
`accountNumber` text COLLATE utf8_unicode_ci DEFAULT NULL,
`password` text COLLATE utf8_unicode_ci DEFAULT NULL,
`token` text COLLATE utf8_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `block_ip`
--
CREATE TABLE `block_ip` (
`id` int(11) NOT NULL,
`ip` text COLLATE utf8_unicode_ci DEFAULT NULL,
`attempts` int(11) NOT NULL DEFAULT 0,
`banned` int(11) NOT NULL DEFAULT 0,
`reason` text COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `cards`
--
CREATE TABLE `cards` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`trans_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`telco` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` int(11) NOT NULL DEFAULT 0,
`price` int(11) NOT NULL DEFAULT 0,
`serial` text COLLATE utf8_unicode_ci DEFAULT NULL,
`pin` text COLLATE utf8_unicode_ci DEFAULT NULL,
`status` varchar(55) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending',
`create_date` datetime NOT NULL,
`update_date` datetime NOT NULL,
`reason` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `categories`
--
CREATE TABLE `categories` (
`id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL DEFAULT 0,
`id_api` int(11) NOT NULL DEFAULT 0,
`supplier_id` int(11) NOT NULL DEFAULT 0,
`stt` int(11) NOT NULL DEFAULT 0,
`icon` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` text COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
`keywords` text COLLATE utf8_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`create_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `coupons`
--
CREATE TABLE `coupons` (
`id` int(11) NOT NULL,
`code` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`product_id` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`amount` int(11) NOT NULL DEFAULT 0,
`used` int(11) NOT NULL DEFAULT 0,
`discount` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`min` int(11) NOT NULL DEFAULT 1000,
`max` int(11) NOT NULL DEFAULT 10000000
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `coupon_used`
--
CREATE TABLE `coupon_used` (
`id` int(11) NOT NULL,
`coupon_id` int(11) NOT NULL DEFAULT 0,
`user_id` int(11) NOT NULL DEFAULT 0,
`trans_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `currencies`
--
CREATE TABLE `currencies` (
`id` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`code` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`rate` float NOT NULL DEFAULT 0,
`symbol_left` text COLLATE utf8_unicode_ci DEFAULT NULL,
`symbol_right` text COLLATE utf8_unicode_ci DEFAULT NULL,
`seperator` text COLLATE utf8_unicode_ci DEFAULT NULL,
`display` int(11) NOT NULL DEFAULT 1,
`default_currency` int(11) NOT NULL DEFAULT 0,
`decimal_currency` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `currencies`
--
INSERT INTO `currencies` (`id`, `name`, `code`, `rate`, `symbol_left`, `symbol_right`, `seperator`, `display`, `default_currency`, `decimal_currency`) VALUES
(3, 'Đồng', 'VND', 1, '', 'đ', 'dot', 1, 1, 0),
(4, 'Dollar', 'USD', 24000, '$', '', 'dot', 1, 0, 2);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `deposit_log`
--
CREATE TABLE `deposit_log` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL DEFAULT 0,
`received` float NOT NULL DEFAULT 0,
`create_time` int(11) DEFAULT 0,
`is_virtual` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `dongtien`
--
CREATE TABLE `dongtien` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`sotientruoc` float NOT NULL DEFAULT 0,
`sotienthaydoi` float NOT NULL DEFAULT 0,
`sotiensau` float NOT NULL DEFAULT 0,
`thoigian` datetime NOT NULL,
`noidung` text COLLATE utf8_unicode_ci DEFAULT NULL,
`transid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `email_campaigns`
--
CREATE TABLE `email_campaigns` (
`id` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`subject` text COLLATE utf8_unicode_ci DEFAULT NULL,
`cc` text COLLATE utf8_unicode_ci DEFAULT NULL,
`bcc` text COLLATE utf8_unicode_ci DEFAULT NULL,
`content` longblob DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`status` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `email_sending`
--
CREATE TABLE `email_sending` (
`id` int(11) NOT NULL,
`camp_id` int(11) DEFAULT 0,
`user_id` int(11) NOT NULL DEFAULT 0,
`status` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`response` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `failed_attempts`
--
CREATE TABLE `failed_attempts` (
`id` int(11) NOT NULL,
`ip_address` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`attempts` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`type` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `favorites`
--
CREATE TABLE `favorites` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`product_id` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `languages`
--
CREATE TABLE `languages` (
`id` int(11) NOT NULL,
`lang` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`code` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`icon` text COLLATE utf8_unicode_ci DEFAULT NULL,
`lang_default` int(11) NOT NULL DEFAULT 0,
`status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `languages`
--
INSERT INTO `languages` (`id`, `lang`, `code`, `icon`, `lang_default`, `status`) VALUES
(1, 'Vietnamese', 'vi', 'assets/storage/flags/flag_Vietnamese.png', 1, 1),
(2, 'English', 'en', 'assets/storage/flags/flag_English.png', 0, 1),
(19, 'Thailand', 'th', 'assets/storage/flags/flag_Thailand.png', 0, 1),
(20, 'Chinese', 'zh', 'assets/storage/flags/flag_Chinese.png', 0, 1);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `logs`
--
CREATE TABLE `logs` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`device` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdate` datetime NOT NULL,
`action` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `log_bank_auto`
--
CREATE TABLE `log_bank_auto` (
`id` int(11) NOT NULL,
`tid` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`method` text COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
`type` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `log_ref`
--
CREATE TABLE `log_ref` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`reason` text COLLATE utf8_unicode_ci DEFAULT NULL,
`sotientruoc` float NOT NULL DEFAULT 0,
`sotienthaydoi` float NOT NULL DEFAULT 0,
`sotienhientai` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `menu`
--
CREATE TABLE `menu` (
`id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`slug` text COLLATE utf8_unicode_ci DEFAULT NULL,
`icon` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`href` text COLLATE utf8_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT 0,
`target` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`position` int(11) NOT NULL DEFAULT 3,
`content` longtext COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `momo`
--
CREATE TABLE `momo` (
`id` int(11) NOT NULL,
`request_id` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`tranId` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`partnerId` text COLLATE utf8_unicode_ci DEFAULT NULL,
`partnerName` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` text COLLATE utf8_unicode_ci DEFAULT NULL,
`received` int(11) NOT NULL DEFAULT 0,
`comment` text COLLATE utf8_unicode_ci DEFAULT NULL,
`time` datetime DEFAULT NULL,
`user_id` int(11) DEFAULT 0,
`status` varchar(32) COLLATE utf8_unicode_ci DEFAULT 'xuly'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `order_log`
--
CREATE TABLE `order_log` (
`id` int(11) NOT NULL,
`buyer` int(11) NOT NULL,
`product_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`pay` float NOT NULL DEFAULT 0,
`amount` int(11) NOT NULL DEFAULT 0,
`create_time` int(11) NOT NULL,
`is_virtual` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_bank`
--
CREATE TABLE `payment_bank` (
`id` int(11) NOT NULL,
`method` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`tid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` int(11) DEFAULT 0,
`received` int(11) DEFAULT 0,
`create_gettime` datetime DEFAULT NULL,
`create_time` int(11) DEFAULT 0,
`user_id` int(11) DEFAULT 0,
`notication` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_crypto`
--
CREATE TABLE `payment_crypto` (
`id` int(11) NOT NULL,
`trans_id` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`request_id` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` decimal(18,4) NOT NULL DEFAULT 0.0000,
`received` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`status` varchar(55) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'waiting',
`msg` text COLLATE utf8_unicode_ci DEFAULT NULL,
`url_payment` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_flutterwave`
--
CREATE TABLE `payment_flutterwave` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`tx_ref` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL DEFAULT 0,
`price` float NOT NULL DEFAULT 0,
`currency` text COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`status` varchar(55) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_manual`
--
CREATE TABLE `payment_manual` (
`id` int(11) NOT NULL,
`icon` text COLLATE utf8_unicode_ci DEFAULT NULL,
`title` text COLLATE utf8_unicode_ci DEFAULT NULL,
`slug` text COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8_unicode_ci DEFAULT NULL,
`display` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_momo`
--
CREATE TABLE `payment_momo` (
`id` int(11) NOT NULL,
`method` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`tid` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` int(11) DEFAULT 0,
`received` int(11) DEFAULT 0,
`create_gettime` datetime DEFAULT NULL,
`create_time` int(11) DEFAULT 0,
`user_id` int(11) DEFAULT 0,
`notication` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_paypal`
--
CREATE TABLE `payment_paypal` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`trans_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL DEFAULT 0,
`price` int(11) NOT NULL DEFAULT 0,
`create_date` datetime NOT NULL,
`create_time` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_pm`
--
CREATE TABLE `payment_pm` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`payment_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` int(11) NOT NULL DEFAULT 0,
`price` int(11) NOT NULL DEFAULT 0,
`create_date` datetime NOT NULL,
`create_time` int(11) NOT NULL DEFAULT 0,
`update_date` datetime NOT NULL,
`update_time` int(11) NOT NULL DEFAULT 0,
`status` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_squadco`
--
CREATE TABLE `payment_squadco` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`transaction_ref` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`price` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_thesieure`
--
CREATE TABLE `payment_thesieure` (
`id` int(11) NOT NULL,
`method` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`tid` varchar(55) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` int(11) NOT NULL DEFAULT 0,
`received` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`create_time` int(11) NOT NULL DEFAULT 0,
`user_id` int(11) NOT NULL DEFAULT 0,
`notication` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_toyyibpay`
--
CREATE TABLE `payment_toyyibpay` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`trans_id` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`billName` text COLLATE utf8_unicode_ci DEFAULT NULL,
`amount` float NOT NULL,
`status` int(11) NOT NULL DEFAULT 0,
`BillCode` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`reason` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `payment_xipay`
--
CREATE TABLE `payment_xipay` (
`id` int(11) NOT NULL,
`out_trade_no` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`transaction_id` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Mã giao dịch do Xipay trả về',
`type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Phương thức thanh toán (alipay, wxpay...)',
`price` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'Số tiền thực nhận',
`amount` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'Số tiền thanh toán',
`param` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Tham số mở rộng',
`product_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Tên sản phẩm/dịch vụ',
`status` tinyint(4) DEFAULT 0 COMMENT 'Trạng thái giao dịch: 0=pending,1=success,2=fail...',
`notify_data` text COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Lưu dữ liệu notify (nếu cần)',
`created_at` datetime DEFAULT current_timestamp(),
`updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`user_id` int(11) DEFAULT NULL COMMENT 'ID user trong hệ thống (nếu có)',
`notication` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `posts`
--
CREATE TABLE `posts` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`stt` int(11) NOT NULL DEFAULT 0,
`category_id` int(11) NOT NULL DEFAULT 0,
`title` text COLLATE utf8_unicode_ci DEFAULT NULL,
`image` text COLLATE utf8_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT 0,
`view` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `post_category`
--
CREATE TABLE `post_category` (
`id` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`slug` text COLLATE utf8_unicode_ci NOT NULL,
`content` longtext COLLATE utf8_unicode_ci NOT NULL,
`icon` text COLLATE utf8_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `products`
--
CREATE TABLE `products` (
`id` int(11) NOT NULL,
`stt` int(11) NOT NULL DEFAULT 0,
`code` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`short_desc` text COLLATE utf8_unicode_ci DEFAULT NULL,
`images` text COLLATE utf8_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8_unicode_ci DEFAULT NULL,
`note` text COLLATE utf8_unicode_ci DEFAULT NULL,
`price` float NOT NULL DEFAULT 0,
`cost` float NOT NULL DEFAULT 0,
`discount` float NOT NULL DEFAULT 0,
`min` int(111) NOT NULL DEFAULT 1,
`max` int(11) NOT NULL DEFAULT 1000000,
`flag` text COLLATE utf8_unicode_ci DEFAULT NULL,
`sold` int(11) NOT NULL DEFAULT 0,
`category_id` int(11) NOT NULL DEFAULT 0,
`status` int(11) NOT NULL DEFAULT 1,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`check_live` varchar(55) COLLATE utf8_unicode_ci DEFAULT 'None',
`supplier_id` int(11) NOT NULL DEFAULT 0,
`api_id` text COLLATE utf8_unicode_ci DEFAULT NULL,
`api_name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`api_stock` int(11) NOT NULL DEFAULT 0,
`api_time_update` int(11) NOT NULL DEFAULT 0,
`text_txt` text COLLATE utf8_unicode_ci DEFAULT NULL,
`order_by` int(11) NOT NULL DEFAULT 1,
`allow_api` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_die`
--
CREATE TABLE `product_die` (
`id` int(11) NOT NULL,
`product_code` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`seller` int(11) NOT NULL DEFAULT 0,
`uid` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`account` text COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`type` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_discount`
--
CREATE TABLE `product_discount` (
`id` int(11) NOT NULL,
`product_id` int(11) NOT NULL DEFAULT 0,
`discount` float NOT NULL DEFAULT 0,
`min` int(11) NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_order`
--
CREATE TABLE `product_order` (
`id` int(11) NOT NULL,
`trans_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`product_id` int(11) NOT NULL DEFAULT 0,
`supplier_id` int(11) NOT NULL DEFAULT 0,
`product_name` text COLLATE utf8_unicode_ci DEFAULT NULL,
`buyer` int(11) NOT NULL DEFAULT 0,
`seller` int(11) NOT NULL DEFAULT 0,
`amount` int(11) NOT NULL DEFAULT 0,
`money` float NOT NULL DEFAULT 0,
`pay` float NOT NULL DEFAULT 0,
`cost` int(11) NOT NULL DEFAULT 0,
`commission_fee` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL,
`update_gettime` datetime NOT NULL,
`trash` int(11) NOT NULL DEFAULT 0,
`refund` int(11) NOT NULL DEFAULT 0,
`ip` text COLLATE utf8_unicode_ci DEFAULT NULL,
`device` text COLLATE utf8_unicode_ci DEFAULT NULL,
`status_view_order` int(11) NOT NULL DEFAULT 0,
`api_transid` text COLLATE utf8_unicode_ci DEFAULT NULL,
`note` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_sold`
--
CREATE TABLE `product_sold` (
`id` int(11) NOT NULL,
`product_code` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`trans_id` text COLLATE utf8_unicode_ci DEFAULT NULL,
`supplier_id` int(11) NOT NULL DEFAULT 0,
`buyer` int(11) NOT NULL DEFAULT 0,
`seller` int(11) NOT NULL DEFAULT 0,
`uid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`account` text COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`time_check_live` int(11) NOT NULL DEFAULT 0,
`type` varchar(55) COLLATE utf8_unicode_ci DEFAULT 'WEB'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_stock`
--
CREATE TABLE `product_stock` (
`id` int(11) NOT NULL,
`product_code` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`seller` int(11) NOT NULL DEFAULT 0,
`uid` varchar(55) COLLATE utf8_unicode_ci DEFAULT NULL,
`account` text COLLATE utf8_unicode_ci DEFAULT NULL,
`create_gettime` datetime NOT NULL,
`type` varchar(55) COLLATE utf8_unicode_ci DEFAULT 'WEB',
`time_check_live` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `promotions`
--
CREATE TABLE `promotions` (
`id` int(11) NOT NULL,
`min` float NOT NULL DEFAULT 0,
`discount` float NOT NULL DEFAULT 0,
`create_gettime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `settings`
--
CREATE TABLE `settings` (
`id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` text COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `settings`
--
INSERT INTO `settings` (`id`, `name`, `value`) VALUES
(1, 'status_demo', '0'),
(2, 'type_password', 'bcrypt'),
(3, 'title', 'DEMO SHOPCLONE7'),
(4, 'description', 'Hệ thống bán nguyên liệu ADS tự động, uy tín, giá rẻ...'),
(5, 'keywords', ''),
(6, 'author', 'CMSNT.CO'),
(7, 'timezone', 'Asia/Ho_Chi_Minh'),
(8, 'email', 'admin@domain.com'),
(9, 'status', '1'),
(10, 'status_update', '1'),
(12, 'session_login', '10000000'),
(13, 'javascript_header', '<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\r\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\r\n<link href=\"https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap\" rel=\"stylesheet\">\r\n\r\n'),
(14, 'javascript_footer', ''),
(16, 'logo_light', 'assets/storage/images/logo_light_5MP.png'),
(17, 'logo_dark', 'assets/storage/images/logo_dark_C0I.png'),
(18, 'favicon', 'assets/storage/images/favicon_06U.png'),
(19, 'image', 'assets/storage/images/image_IYA.png'),
(20, 'bg_login', 'assets/storage/images/bg_loginBYI.png'),
(21, 'bg_register', 'assets/storage/images/bg_registerMOU.png'),
(26, 'telegram_token', ''),
(27, 'telegram_chat_id', ''),
(30, 'prefix_autobank', 'NAPTIEN'),
(35, 'bank_status', '1'),
(36, 'bank_notice', '<ul>\r\n <li>Nhập đúng nội dung chuyển tiền.</li>\r\n <li>Cộng tiền trong vài giây.</li>\r\n <li>Liên hệ BQT nếu nhập sai nội dung chuyển.</li>\r\n</ul>\r\n'),
(43, 'notice_home', '<h4><span style=\"color:#e74c3c\"><strong>Lưu ý:</strong></span> Hãy đảm bảo tài khoản đăng nhập và mật khẩu của bạn không khớp với thông tin đăng nhập trên các website khác để tránh trường hợp chủ website khác sử dụng thông tin của bạn để đăng nhập vào website này!</h4>\r\n\r\n<p> </p>\r\n\r\n<p><img alt=\"yes\" src=\"http://localhost/CMSNT.CO/SHOPCLONE7/public/ckeditor/plugins/smiley/images/thumbs_up.png\" title=\"yes\" /> Thay đổi nội dung tại -> <strong>Trang Quản Trị</strong> -> <strong>Cài Đặt</strong> -> <strong>Thông báo ngoài trang chủ</strong></p>\r\n'),
(44, 'font_family', 'font-family: \'Saira Semi Condensed\', sans-serif;'),
(59, 'popup_status', '1'),
(60, 'popup_noti', '<p><span style=\"font-size:14px\"><img alt=\"yes\" src=\"http://localhost/CMSNT.CO/SHOPCLONE7/public/ckeditor/plugins/smiley/images/thumbs_up.png\" style=\"height:23px; width:23px\" title=\"yes\" /> Thay đổi thông báo nổi tại -> <strong>Trang Quản Trị</strong> -> <strong>Cài Đặt</strong> -> <strong>Thông báo nổi ngoài trang chủ</strong></span></p>\r\n\r\n<p><span style=\"font-size:14px\"><img alt=\"yes\" src=\"http://localhost/CMSNT.CO/SHOPCLONE7/public/ckeditor/plugins/smiley/images/thumbs_up.png\" style=\"height:23px; width:23px\" title=\"yes\" /> Ẩn thông báo nổi tại -> <strong>Trang Quản Trị</strong> -> <strong>Cài Đặt</strong> -> <strong>ON/OFF Thông báo nổi</strong></span></p>\r\n'),
(64, 'license_key', 'aeeb422ae3477fbbec7636cb7e20523d'),
(69, 'home_page', 'home'),
(70, 'smtp_host', 'smtp.gmail.com'),
(71, 'smtp_encryption', 'tls'),
(72, 'smtp_port', '587'),
(73, 'smtp_email', ''),
(74, 'smtp_password', ''),
(76, 'default_product_image', 'assets/storage/images/default_product_image3VL.png'),
(77, 'status_captcha', '0'),
(78, 'crypto_note', ''),
(79, 'crypto_address', ''),
(80, 'crypto_token', ''),
(81, 'crypto_min', '10'),
(82, 'crypto_max', '100000'),
(83, 'crypto_status', '1'),
(84, 'crypto_rate', '25000'),
(85, 'reCAPTCHA_site_key', ''),
(86, 'reCAPTCHA_secret_key', ''),
(87, 'reCAPTCHA_status', '0'),
(88, 'telegram_status', '0'),
(89, 'smtp_status', '0'),
(93, 'affiliate_ck', '5'),
(94, 'affiliate_status', '1'),
(95, 'affiliate_min', '10000'),
(96, 'affiliate_banks', 'Vietcombank\r\nMBBank\r\nTechcombank'),
(97, 'affiliate_note', '<p>Chia sẻ liên kết này lên mạng xã hội hoặc bạn bè của bạn.</p>\r\n'),
(98, 'affiliate_chat_id_telegram', '1048444403'),
(99, 'check_time_cron_cron2', '0'),
(100, 'bank_min', '1000'),
(101, 'bank_max', '1000000000'),
(102, 'paypal_clientId', ''),
(103, 'paypal_clientSecret', ''),
(104, 'paypal_status', '1'),
(105, 'paypal_rate', '23000'),
(108, 'paypal_note', ''),
(109, 'noti_recharge', '[{time}] <b>{username}</b> vừa nạp {amount} vào {method} thực nhận {price}.'),
(110, 'noti_action', '[{time}] \r\n- <b>Username</b>: <code>{username}</code>\r\n- <b>Action</b>: <code>{action}</code>\r\n- <b>IP</b>: <code>{ip}</code>'),
(111, 'theme_color', '#007ea8'),
(112, 'hotline', '0988888XXX'),
(113, 'type_notification', 'telegram'),
(114, 'perfectmoney_status', '1'),
(115, 'perfectmoney_account', ''),
(116, 'perfectmoney_pass', ''),
(117, 'perfectmoney_rate', '23000'),
(118, 'perfectmoney_units', ''),
(119, 'perfectmoney_notice', ''),
(120, 'fanpage', 'https://www.facebook.com/cmsnt.co'),
(121, 'address', '1Hd- 50, 010 Avenue, NY 90001 United States'),
(122, 'toyyibpay_status', '1'),
(123, 'toyyibpay_userSecretKey', ''),
(124, 'toyyibpay_categoryCode', ''),
(125, 'toyyibpay_min', '1'),
(126, 'toyyibpay_billChargeToCustomer', '0'),
(127, 'toyyibpay_rate', '5258'),
(128, 'toyyibpay_notice', ''),
(129, 'noti_affiliate_withdraw', '[{time}] \r\n- <b>Username</b>: <code>{username}</code>\r\n- <b>Action</b>: <code>Tạo lệnh rút {amount} về ngân hàng {bank} | {account_number} | {account_name}</code>\r\n- <b>IP</b>: <code>{ip}</code>'),
(130, 'check_time_cron_sending_email', '1715250984'),
(131, 'squadco_status', '1'),
(132, 'squadco_Secret_Key', ''),
(133, 'squadco_Public_Key', ''),
(134, 'squadco_rate', '51'),
(135, 'squadco_currency_code', 'NGN'),
(136, 'squadco_notice', ''),
(137, 'theme_color1', '#1a5e75'),
(138, 'product_photo_display', '1'),
(139, 'product_rating_display', '0'),
(140, 'product_sold_display', '1'),
(141, 'banner_singer', 'assets/storage/images/banner_singer08A.png'),
(142, 'image_empty_state', 'assets/storage/images/image_empty_stateNPV.png'),
(143, 'copyright_footer', 'Software By <a href=\"https://www.cmsnt.co/\">CMSNT.CO</a>'),
(144, 'menu_category_right', '1'),
(145, 'crypto_trial', '5'),
(146, 'type_show_product', 'LIST'),
(147, 'check_time_cron_bank', '0'),
(148, 'google_analytics_status', '0'),
(149, 'google_analytics_id', ''),
(150, 'card_status', '1'),
(151, 'card_partner_id', ''),
(152, 'card_partner_key', ''),
(153, 'card_ck', '20'),
(154, 'card_notice', ''),
(155, 'api_status', '1'),
(156, 'time_cron_suppliers_shopclone6', '1734798034'),
(157, 'time_cron_suppliers_api1', '1711653105'),
(158, 'language_type', 'manual'),
(159, 'gtranslate_script', '<div class=\"gtranslate_wrapper\"></div>\n<script>window.gtranslateSettings = {\"default_language\":\"vi\",\"languages\":[\"vi\",\"fr\",\"de\",\"it\",\"es\",\"zh-CN\",\"ar\",\"tr\",\"ru\",\"uk\",\"km\",\"th\",\"en\"],\"wrapper_selector\":\".gtranslate_wrapper\"}</script>\n<script src=\"https://cdn.gtranslate.net/widgets/latest/dropdown.js\" defer></script>'),
(160, 'notice_top_left', 'Chào mừng bạn đến với website SHOPCLONE7'),
(161, 'page_contact', ''),
(162, 'page_policy', '<p><strong>Chính sách bảo mật</strong></p>\r\n\r\n<p>Chúng tôi đặt rất nhiều giá trị vào việc bảo vệ thông tin cá nhân của bạn. Chính sách quyền riêng tư này giải thích cách chúng tôi thu thập, sử dụng và bảo vệ thông tin cá nhân của bạn khi bạn sử dụng dịch vụ của chúng tôi.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Thu thập và sử dụng thông tin</strong></p>\r\n\r\n<p>Khi bạn sử dụng trang web của chúng tôi hoặc tương tác với các dịch vụ của chúng tôi, chúng tôi có thể thu thập một số thông tin cá nhân nhất định từ bạn. Điều này có thể bao gồm tên, địa chỉ email, số điện thoại, địa chỉ và thông tin khác mà bạn cung cấp khi đăng ký hoặc sử dụng dịch vụ của chúng tôi.</p>\r\n\r\n<p>Chúng tôi có thể sử dụng thông tin cá nhân của bạn để:</p>\r\n\r\n<ul>\r\n <li>Cung cấp và duy trì dịch vụ</li>\r\n <li>Thông báo về những thay đổi đối với dịch vụ của chúng tôi</li>\r\n <li>Giải quyết vấn đề hoặc tranh chấp</li>\r\n <li>Theo dõi và phân tích việc sử dụng dịch vụ của chúng tôi</li>\r\n <li>Nâng cao trải nghiệm người dùng</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Bảo vệ</strong></p>\r\n\r\n<p>Chúng tôi cam kết bảo vệ thông tin cá nhân của bạn và có các biện pháp bảo mật thích hợp để đảm bảo thông tin của bạn được giữ an toàn khi bạn truy cập trang web của chúng tôi.</p>\r\n\r\n<p>Tuy nhiên, hãy nhớ rằng không có phương thức truyền thông tin nào qua internet hoặc phương tiện điện tử là an toàn hoặc đáng tin cậy 100%. Mặc dù chúng tôi cố gắng bảo vệ thông tin cá nhân của bạn nhưng chúng tôi không thể đảm bảo hoặc đảm bảo tính bảo mật của bất kỳ thông tin nào bạn gửi cho chúng tôi hoặc từ các dịch vụ của chúng tôi. và bạn phải tự chịu rủi ro này.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Liên kết đến các trang web khác</strong></p>\r\n\r\n<p>Trang web của chúng tôi có thể chứa các liên kết đến các trang web khác không do chúng tôi điều hành. Nếu bạn nhấp vào liên kết của bên thứ ba, bạn sẽ được chuyển hướng đến trang web của bên thứ ba đó. Chúng tôi khuyên bạn nên xem lại Chính sách quyền riêng tư của mọi trang web bạn truy cập vì chúng tôi không có quyền kiểm soát hoặc chịu trách nhiệm đối với các hoạt động hoặc nội dung về quyền riêng tư của các trang web hoặc dịch vụ của bên thứ ba. .</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Thay đổi chính sách quyền riêng tư</strong></p>\r\n\r\n<p>Đôi khi, chúng tôi có thể cập nhật Chính sách quyền riêng tư này mà không cần thông báo trước. Mọi thay đổi sẽ được đăng lên trang này và được áp dụng ngay sau khi chúng được đăng. Bằng việc tiếp tục sử dụng dịch vụ của chúng tôi sau khi những thay đổi này được đăng, bạn đồng ý với những thay đổi đó.</p>\r\n'),
(163, 'page_faq', ''),
(164, 'page_block_ip', NULL),