-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathweb_b2b.sql
More file actions
945 lines (884 loc) · 228 KB
/
web_b2b.sql
File metadata and controls
945 lines (884 loc) · 228 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
/*
Navicat Premium Data Transfer
Source Server : localhost_3306
Source Server Type : MySQL
Source Server Version : 50744
Source Host : localhost:3306
Source Schema : python_my
Target Server Type : MySQL
Target Server Version : 50744
File Encoding : 65001
Date: 14/07/2025 10:45:45
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for auth_group
-- ----------------------------
DROP TABLE IF EXISTS `auth_group`;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `name`(`name`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of auth_group
-- ----------------------------
-- ----------------------------
-- Table structure for auth_group_permissions
-- ----------------------------
DROP TABLE IF EXISTS `auth_group_permissions`;
CREATE TABLE `auth_group_permissions` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `auth_group_permissions_group_id_permission_id_0cd325b0_uniq`(`group_id`, `permission_id`) USING BTREE,
INDEX `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm`(`permission_id`) USING BTREE,
CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of auth_group_permissions
-- ----------------------------
-- ----------------------------
-- Table structure for auth_permission
-- ----------------------------
DROP TABLE IF EXISTS `auth_permission`;
CREATE TABLE `auth_permission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `auth_permission_content_type_id_codename_01ab375a_uniq`(`content_type_id`, `codename`) USING BTREE,
CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 97 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of auth_permission
-- ----------------------------
INSERT INTO `auth_permission` VALUES (1, 'Can add log entry', 1, 'add_logentry');
INSERT INTO `auth_permission` VALUES (2, 'Can change log entry', 1, 'change_logentry');
INSERT INTO `auth_permission` VALUES (3, 'Can delete log entry', 1, 'delete_logentry');
INSERT INTO `auth_permission` VALUES (4, 'Can view log entry', 1, 'view_logentry');
INSERT INTO `auth_permission` VALUES (5, 'Can add permission', 2, 'add_permission');
INSERT INTO `auth_permission` VALUES (6, 'Can change permission', 2, 'change_permission');
INSERT INTO `auth_permission` VALUES (7, 'Can delete permission', 2, 'delete_permission');
INSERT INTO `auth_permission` VALUES (8, 'Can view permission', 2, 'view_permission');
INSERT INTO `auth_permission` VALUES (9, 'Can add group', 3, 'add_group');
INSERT INTO `auth_permission` VALUES (10, 'Can change group', 3, 'change_group');
INSERT INTO `auth_permission` VALUES (11, 'Can delete group', 3, 'delete_group');
INSERT INTO `auth_permission` VALUES (12, 'Can view group', 3, 'view_group');
INSERT INTO `auth_permission` VALUES (13, 'Can add user', 4, 'add_user');
INSERT INTO `auth_permission` VALUES (14, 'Can change user', 4, 'change_user');
INSERT INTO `auth_permission` VALUES (15, 'Can delete user', 4, 'delete_user');
INSERT INTO `auth_permission` VALUES (16, 'Can view user', 4, 'view_user');
INSERT INTO `auth_permission` VALUES (17, 'Can add content type', 5, 'add_contenttype');
INSERT INTO `auth_permission` VALUES (18, 'Can change content type', 5, 'change_contenttype');
INSERT INTO `auth_permission` VALUES (19, 'Can delete content type', 5, 'delete_contenttype');
INSERT INTO `auth_permission` VALUES (20, 'Can view content type', 5, 'view_contenttype');
INSERT INTO `auth_permission` VALUES (21, 'Can add session', 6, 'add_session');
INSERT INTO `auth_permission` VALUES (22, 'Can change session', 6, 'change_session');
INSERT INTO `auth_permission` VALUES (23, 'Can delete session', 6, 'delete_session');
INSERT INTO `auth_permission` VALUES (24, 'Can view session', 6, 'view_session');
INSERT INTO `auth_permission` VALUES (25, 'Can add category', 7, 'add_category');
INSERT INTO `auth_permission` VALUES (26, 'Can change category', 7, 'change_category');
INSERT INTO `auth_permission` VALUES (27, 'Can delete category', 7, 'delete_category');
INSERT INTO `auth_permission` VALUES (28, 'Can view category', 7, 'view_category');
INSERT INTO `auth_permission` VALUES (29, 'Can add error log', 8, 'add_errorlog');
INSERT INTO `auth_permission` VALUES (30, 'Can change error log', 8, 'change_errorlog');
INSERT INTO `auth_permission` VALUES (31, 'Can delete error log', 8, 'delete_errorlog');
INSERT INTO `auth_permission` VALUES (32, 'Can view error log', 8, 'view_errorlog');
INSERT INTO `auth_permission` VALUES (33, 'Can add op log', 9, 'add_oplog');
INSERT INTO `auth_permission` VALUES (34, 'Can change op log', 9, 'change_oplog');
INSERT INTO `auth_permission` VALUES (35, 'Can delete op log', 9, 'delete_oplog');
INSERT INTO `auth_permission` VALUES (36, 'Can view op log', 9, 'view_oplog');
INSERT INTO `auth_permission` VALUES (37, 'Can add user', 10, 'add_user');
INSERT INTO `auth_permission` VALUES (38, 'Can change user', 10, 'change_user');
INSERT INTO `auth_permission` VALUES (39, 'Can delete user', 10, 'delete_user');
INSERT INTO `auth_permission` VALUES (40, 'Can view user', 10, 'view_user');
INSERT INTO `auth_permission` VALUES (41, 'Can add thing', 11, 'add_thing');
INSERT INTO `auth_permission` VALUES (42, 'Can change thing', 11, 'change_thing');
INSERT INTO `auth_permission` VALUES (43, 'Can delete thing', 11, 'delete_thing');
INSERT INTO `auth_permission` VALUES (44, 'Can view thing', 11, 'view_thing');
INSERT INTO `auth_permission` VALUES (45, 'Can add news', 12, 'add_news');
INSERT INTO `auth_permission` VALUES (46, 'Can change news', 12, 'change_news');
INSERT INTO `auth_permission` VALUES (47, 'Can delete news', 12, 'delete_news');
INSERT INTO `auth_permission` VALUES (48, 'Can view news', 12, 'view_news');
INSERT INTO `auth_permission` VALUES (49, 'Can add case', 13, 'add_case');
INSERT INTO `auth_permission` VALUES (50, 'Can change case', 13, 'change_case');
INSERT INTO `auth_permission` VALUES (51, 'Can delete case', 13, 'delete_case');
INSERT INTO `auth_permission` VALUES (52, 'Can view case', 13, 'view_case');
INSERT INTO `auth_permission` VALUES (53, 'Can add faq', 14, 'add_faq');
INSERT INTO `auth_permission` VALUES (54, 'Can change faq', 14, 'change_faq');
INSERT INTO `auth_permission` VALUES (55, 'Can delete faq', 14, 'delete_faq');
INSERT INTO `auth_permission` VALUES (56, 'Can view faq', 14, 'view_faq');
INSERT INTO `auth_permission` VALUES (57, 'Can add inquiry', 15, 'add_inquiry');
INSERT INTO `auth_permission` VALUES (58, 'Can change inquiry', 15, 'change_inquiry');
INSERT INTO `auth_permission` VALUES (59, 'Can delete inquiry', 15, 'delete_inquiry');
INSERT INTO `auth_permission` VALUES (60, 'Can view inquiry', 15, 'view_inquiry');
INSERT INTO `auth_permission` VALUES (61, 'Can add download', 16, 'add_download');
INSERT INTO `auth_permission` VALUES (62, 'Can change download', 16, 'change_download');
INSERT INTO `auth_permission` VALUES (63, 'Can delete download', 16, 'delete_download');
INSERT INTO `auth_permission` VALUES (64, 'Can view download', 16, 'view_download');
INSERT INTO `auth_permission` VALUES (65, 'Can add basic site', 17, 'add_basicsite');
INSERT INTO `auth_permission` VALUES (66, 'Can change basic site', 17, 'change_basicsite');
INSERT INTO `auth_permission` VALUES (67, 'Can delete basic site', 17, 'delete_basicsite');
INSERT INTO `auth_permission` VALUES (68, 'Can view basic site', 17, 'view_basicsite');
INSERT INTO `auth_permission` VALUES (69, 'Can add basic tdk', 18, 'add_basictdk');
INSERT INTO `auth_permission` VALUES (70, 'Can change basic tdk', 18, 'change_basictdk');
INSERT INTO `auth_permission` VALUES (71, 'Can delete basic tdk', 18, 'delete_basictdk');
INSERT INTO `auth_permission` VALUES (72, 'Can view basic tdk', 18, 'view_basictdk');
INSERT INTO `auth_permission` VALUES (73, 'Can add basic banner', 19, 'add_basicbanner');
INSERT INTO `auth_permission` VALUES (74, 'Can change basic banner', 19, 'change_basicbanner');
INSERT INTO `auth_permission` VALUES (75, 'Can delete basic banner', 19, 'delete_basicbanner');
INSERT INTO `auth_permission` VALUES (76, 'Can view basic banner', 19, 'view_basicbanner');
INSERT INTO `auth_permission` VALUES (77, 'Can add basic global', 20, 'add_basicglobal');
INSERT INTO `auth_permission` VALUES (78, 'Can change basic global', 20, 'change_basicglobal');
INSERT INTO `auth_permission` VALUES (79, 'Can delete basic global', 20, 'delete_basicglobal');
INSERT INTO `auth_permission` VALUES (80, 'Can view basic global', 20, 'view_basicglobal');
INSERT INTO `auth_permission` VALUES (81, 'Can add basic additional', 21, 'add_basicadditional');
INSERT INTO `auth_permission` VALUES (82, 'Can change basic additional', 21, 'change_basicadditional');
INSERT INTO `auth_permission` VALUES (83, 'Can delete basic additional', 21, 'delete_basicadditional');
INSERT INTO `auth_permission` VALUES (84, 'Can view basic additional', 21, 'view_basicadditional');
INSERT INTO `auth_permission` VALUES (85, 'Can add comment', 22, 'add_comment');
INSERT INTO `auth_permission` VALUES (86, 'Can change comment', 22, 'change_comment');
INSERT INTO `auth_permission` VALUES (87, 'Can delete comment', 22, 'delete_comment');
INSERT INTO `auth_permission` VALUES (88, 'Can view comment', 22, 'view_comment');
INSERT INTO `auth_permission` VALUES (89, 'Can add about', 23, 'add_about');
INSERT INTO `auth_permission` VALUES (90, 'Can change about', 23, 'change_about');
INSERT INTO `auth_permission` VALUES (91, 'Can delete about', 23, 'delete_about');
INSERT INTO `auth_permission` VALUES (92, 'Can view about', 23, 'view_about');
INSERT INTO `auth_permission` VALUES (93, 'Can add advantage', 24, 'add_advantage');
INSERT INTO `auth_permission` VALUES (94, 'Can change advantage', 24, 'change_advantage');
INSERT INTO `auth_permission` VALUES (95, 'Can delete advantage', 24, 'delete_advantage');
INSERT INTO `auth_permission` VALUES (96, 'Can view advantage', 24, 'view_advantage');
-- ----------------------------
-- Table structure for auth_user
-- ----------------------------
DROP TABLE IF EXISTS `auth_user`;
CREATE TABLE `auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`last_login` datetime(6) NULL DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`first_name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`last_name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`email` varchar(254) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime(6) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `username`(`username`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of auth_user
-- ----------------------------
-- ----------------------------
-- Table structure for auth_user_groups
-- ----------------------------
DROP TABLE IF EXISTS `auth_user_groups`;
CREATE TABLE `auth_user_groups` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `auth_user_groups_user_id_group_id_94350c0c_uniq`(`user_id`, `group_id`) USING BTREE,
INDEX `auth_user_groups_group_id_97559544_fk_auth_group_id`(`group_id`) USING BTREE,
CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of auth_user_groups
-- ----------------------------
-- ----------------------------
-- Table structure for auth_user_user_permissions
-- ----------------------------
DROP TABLE IF EXISTS `auth_user_user_permissions`;
CREATE TABLE `auth_user_user_permissions` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq`(`user_id`, `permission_id`) USING BTREE,
INDEX `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm`(`permission_id`) USING BTREE,
CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of auth_user_user_permissions
-- ----------------------------
-- ----------------------------
-- Table structure for b_about
-- ----------------------------
DROP TABLE IF EXISTS `b_about`;
CREATE TABLE `b_about` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`about_introduction` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`about_cover` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_about
-- ----------------------------
INSERT INTO `b_about` VALUES (1, 'At the heart of [Your Company Name] is an exceptional team of professionals who bring together expertise from diverse fields. We invest in continuous research and development, ensuring that our solutions leverage the latest technologies and industry best practices. \n\nWhether it’s [product/service 1], [product/service 2], or tailored solutions, each offering is crafted with precision, reliability, and a keen understanding of our clients’ unique needs.9999', '1742894095507.jpg');
-- ----------------------------
-- Table structure for b_advantage
-- ----------------------------
DROP TABLE IF EXISTS `b_advantage`;
CREATE TABLE `b_advantage` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`advantage_image` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`advantage_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`advantage_description` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_advantage
-- ----------------------------
INSERT INTO `b_advantage` VALUES (1, '1747478386684.jpg', 'Rich Experience', 'Established in 2005, specializing in chemical raw materials export for over 18 years with extensive international trade experience.');
INSERT INTO `b_advantage` VALUES (3, '1747478281945.jpg', 'Global Markets', 'Products sold in over 80 countries and regions, with a comprehensive international sales network and logistics system.');
INSERT INTO `b_advantage` VALUES (4, '1747478238408.jpg', 'Cooperation Partners', 'Established stable cooperation with over 700 companies worldwide, including many industry leaders and renowned brands.');
INSERT INTO `b_advantage` VALUES (5, '1747478339542.jpg', 'Quality Certifications', 'Holder of multiple international certifications including ISO9001 and ISO14001, meeting quality and environmental standards of strict markets like EU and US.');
INSERT INTO `b_advantage` VALUES (6, '1747478254293.jpg', 'Competitive Pricing', 'Leveraging scale advantages and efficient supply chain to provide competitive prices, helping customers reduce procurement costs.');
INSERT INTO `b_advantage` VALUES (7, '1747478349368.jpg', 'One-Stop Services', 'Providing product consulting, customized solutions, logistics arrangements, customs clearance, and comprehensive professional support to simplify international trade.');
-- ----------------------------
-- Table structure for b_basic_additional
-- ----------------------------
DROP TABLE IF EXISTS `b_basic_additional`;
CREATE TABLE `b_basic_additional` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`additional_mission` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_addition_about_image` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_addition_company_image` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_one_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_one_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_two_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_two_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_three_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_three_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_four_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_four_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`additional_about` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_addition_mission_image` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_addition_contact_image` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ext01` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ext02` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ext03` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ext04` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ext05` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`ext06` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_basic_additional
-- ----------------------------
INSERT INTO `b_basic_additional` VALUES (1, 'Our mission is to revolutionize the way people shop by creating an accessible, trustworthy, and enjoyable online marketplace. We are dedicated to empowering customers with a wide variety of high-quality products at competitive prices, while ensuring unparalleled convenience and service every step of the way.\n<br><br>\nWe believe shopping should be effortless and rewarding, which is why we continually invest in technology, logistics, and customer support to provide a seamless experience. Our platform is designed with the customer in mind, making it easy to explore, compare, and purchase products from the comfort of home or on-the-go. purchase products from the comfort of home or on-the-go. Our platform is designed with the customer.', '1747118959809.jpg', '1747119220756.jpg#1747119224816.jpg#1747119228932.jpg#1747119237581.jpg#1749284325689.jpg#1749284333480.jpg#1749284339181.jpg#1749284345883.jpg', 'Global Customers', '1000+', 'Countries Served', '80+', 'Years Experience', '18+', 'Products', '75+', 'Founded in 2018, Blueheart is a leading e-commerce platform dedicated to delivering a seamless and enjoyable shopping experience to customers worldwide. Our mission is to connect people with the products they love, offering a curated selection of top-quality items across a variety of categories, including electronics, fashion, home goods, and more.\n<br><br>\nWith a focus on innovation, reliability, and customer satisfaction, we have rapidly grown our user base and built strong relationships with trusted suppliers and brands. Our user-friendly website and mobile app are designed to make shopping fast, easy, and secure for everyone. We utilize advanced technology to ensure safe transactions, prompt delivery, and responsive customer service. We utilize advanced technology to ensure safe transactions, prompt delivery, and responsive customer service.', '1745548221305.jpg', '1745053949716.png', 'Discover Smart Solutions to Boost Your Productivity.', '1749285451165.jpg#1749285458687.jpg#1749285462478.jpg#1749285465637.jpg#1749304055336.jpg#1749304060084.jpg', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for b_basic_banner
-- ----------------------------
DROP TABLE IF EXISTS `b_basic_banner`;
CREATE TABLE `b_basic_banner` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`banner_home` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_product` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_about` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_contact` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_news` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_case` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_download` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`banner_faq` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_basic_banner
-- ----------------------------
INSERT INTO `b_basic_banner` VALUES (1, '1745460011834.jpg#1745460019136.jpg', '', '1749538547679.jpg', '1749538555679.jpg', '', '', '', '');
-- ----------------------------
-- Table structure for b_basic_global
-- ----------------------------
DROP TABLE IF EXISTS `b_basic_global`;
CREATE TABLE `b_basic_global` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`global_phone` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_company_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_address` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_wechat` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_facebook` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_twitter` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_linkedin` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_whatsapp` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_youtube` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_instagram` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`global_wechat_qrcode` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_basic_global
-- ----------------------------
INSERT INTO `b_basic_global` VALUES (1, '+86-17801460534', '[email protected]', 'Blueheart Technology of Zhejiang Ltd.', 'No. 2875 Beichen West Road, Shaoxing, Zhejiang, China', 'lengqin1024', 'https://facebook.com/java1024', 'https://twitter.com/hello', 'https://linkedin.com/in/java1024', 'https://wa.me/1234567890', 'https://youtube.com/', 'https://instagram.com/', '1746598578851.jpg');
-- ----------------------------
-- Table structure for b_basic_site
-- ----------------------------
DROP TABLE IF EXISTS `b_basic_site`;
CREATE TABLE `b_basic_site` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`status` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_nickname` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_logo` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_ico` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_address` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_copyright` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_code` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`site_switch_about` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_switch_case` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_switch_contact` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_switch_download` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_switch_faq` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_switch_news` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_switch_product` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`site_gaid` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_basic_site
-- ----------------------------
INSERT INTO `b_basic_site` VALUES (2, '1', 'B2B外贸演示站', 'BlueTech', 'logo.png', 'favicon.ico', '', '22222', '', '1', '2', '1', '2', '2', '2', '1', '359000');
-- ----------------------------
-- Table structure for b_basic_tdk
-- ----------------------------
DROP TABLE IF EXISTS `b_basic_tdk`;
CREATE TABLE `b_basic_tdk` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`tdk_home_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_home_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_home_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_product_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_product_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_product_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_about_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_about_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_about_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_contact_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_contact_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_contact_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_news_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_news_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_news_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_case_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_case_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_case_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_download_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_download_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_download_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_faq_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_faq_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tdk_faq_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_basic_tdk
-- ----------------------------
INSERT INTO `b_basic_tdk` VALUES (1, '', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!', 'Products | BlueTech', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!', '', '', 'Learn more about our Company. Explore our history, mission, and core values that drive us to deliver quality solutions to our customers worldwide.', '', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!', 'News | BlueTech', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!', 'Case | BlueTech', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!', 'Download | BlueTech', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!', 'Faq | BlueTech', '', 'Explore our international e-commerce platform for high-quality products at competitive prices. Shop wholesale & retail, enjoy fast global shipping, secure payment, and excellent customer service. Grow your business with us today!');
-- ----------------------------
-- Table structure for b_case
-- ----------------------------
DROP TABLE IF EXISTS `b_case`;
CREATE TABLE `b_case` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cover` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`seo_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`pv` int(11) NOT NULL,
`client` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 19 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_case
-- ----------------------------
INSERT INTO `b_case` VALUES (4, 'Elevating Service With Excellence', '1747121502707.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-03-20 11:21:31.506692', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (5, 'Partnering For Business Success', '1747121511009.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-03-20 11:22:24.840195', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (6, 'Superior Products, Successful Outcomes', '1747121540214.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 20:57:04.619972', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (7, 'Performance Improved With Us', '1747121556368.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 20:57:13.263779', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (8, 'Reliable Products, Real Results', '1747121567269.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 20:57:23.467434', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (9, 'Achieving More With Us', '1747121583725.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 21:05:58.154373', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (10, 'Empowering Business With Innovation', '1747121607770.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 21:06:04.682389', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (11, 'Healthcare Patient Management System', '1747121477242.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 21:06:11.065578', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (12, 'Fintech Mobile Application', '1747121455751.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 21:06:19.787944', 0, 'Jackson');
INSERT INTO `b_case` VALUES (13, 'Global E-commerce Platform Redesign', '1747121446862.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-18 21:06:26.267060', 0, 'Tom');
INSERT INTO `b_case` VALUES (14, 'Transforming Workflow, Boosting Productivity', '1747121438435.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-24 15:15:51.474019', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (15, 'Solutions That Drive Results', '1747121617112.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-24 15:24:58.079609', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (16, 'Enhancing Efficiency With Us', '1747121429625.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', '', '', '', '0', '2025-04-24 15:25:06.862449', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (17, 'Success Through Our Products', '1747121418430.jpg', '<p style=\"text-align: start;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</p><p style=\"text-align: start;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</p><p style=\"text-align: start;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</p><p style=\"text-align: start;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</p><p style=\"text-align: start;\">“We are extremely satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</p><p style=\"text-align: start;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</p>', 'Test Success Through Our Products', 'Test Success Through Our Products', '', '0', '2025-04-24 15:25:13.717810', 0, 'Tom Green');
INSERT INTO `b_case` VALUES (18, 'Customer Success Story Highlight', '1747121224330.jpg', '<p style=\"text-align: start;\"><span style=\"font-size: 14px;\">We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.</span></p><p style=\"text-align: start; line-height: 1.5;\"><span style=\"font-size: 14px;\">GreenTech Solutions, a leading firm in environmental consulting, was searching for reliable and user-friendly equipment to streamline their daily work. Facing challenges with their previous supplier’s products— which often led to delays and inefficiencies— they decided it was time for a change. After careful research, they discovered our solutions and reached out to our team for advice and support.</span></p><p style=\"text-align: start;\"><span style=\"font-size: 14px;\">Upon placing their order, GreenTech Solutions was impressed by the smooth purchasing process and the attentive customer service they received from our staff. We provided personalized recommendations and quick responses to their inquiries, ensuring they selected the best products for their unique projects.</span></p><p style=\"text-align: start;\"><span style=\"font-size: 14px;\">After implementing our products, GreenTech Solutions noticed immediate improvements. Their project teams found our equipment easy to use, efficient, and highly dependable, which increased overall productivity. In particular, they highlighted our products’ durability and advanced features, which allowed them to deliver higher quality work to their clients while keeping costs low.</span></p><p style=\"text-align: start;\"><span style=\"font-size: 14px;\">“We are </span><span style=\"font-size: 14px;\"><strong>extremely </strong></span><span style=\"font-size: 14px;\">satisfied with our purchase,” said Ms. Li, the project leader at GreenTech Solutions. “Your products have made a significant difference in our workflow, and your excellent support has exceeded our expectations.”</span></p><p style=\"text-align: start;\"><span style=\"font-size: 14px;\">We are delighted to be a part of GreenTech Solutions’ ongoing success and proud that our products continue to make a positive impact. If you are looking to upgrade your equipment and improve your business performance, we invite you to discover the difference that our products can make for you.</span></p>', 'Customer Success Story Highlight', 'We are proud to share the success story of one of our valued customers, GreenTech Solutions, who recently enhanced their business operations by choosing our innovative products.', '', '0', '2025-04-24 15:25:20.557607', 0, 'Tom Green');
-- ----------------------------
-- Table structure for b_category
-- ----------------------------
DROP TABLE IF EXISTS `b_category`;
CREATE TABLE `b_category` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cover` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`pid` bigint(20) NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`sort` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 49 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_category
-- ----------------------------
INSERT INTO `b_category` VALUES (7, '分类444', '1747127411294.jpg', -1, '2025-03-12 11:30:03.452116', 3);
INSERT INTO `b_category` VALUES (8, 'Very Good Very Good Hello With Me', '1747127404721.jpg', -1, '2025-03-12 11:30:06.944356', 2);
INSERT INTO `b_category` VALUES (40, 'We Are from USA', '1747127398455.jpg', -1, '2025-04-02 14:27:59.442669', 1);
INSERT INTO `b_category` VALUES (41, 'Very Good Hello Great', '1745460949926.jpg', -1, '2025-04-02 14:28:02.213774', 0);
INSERT INTO `b_category` VALUES (42, 'Great Apple Great Apple Great', '1747899216089.jpg', -1, '2025-05-15 21:17:10.990090', 0);
INSERT INTO `b_category` VALUES (43, 'hhh', '1747379274802.png', 42, '2025-05-16 15:07:55.949386', 0);
INSERT INTO `b_category` VALUES (44, 'helllo', '1747382537173.ico', 42, '2025-05-16 16:02:18.263834', 0);
INSERT INTO `b_category` VALUES (45, 'very good', '1747382551568.png', 42, '2025-05-16 16:02:32.271722', 0);
INSERT INTO `b_category` VALUES (46, 'aaaaa aaaaa aaaaa', '1749280960098.jpeg', -1, '2025-06-07 15:22:41.242885', 4);
INSERT INTO `b_category` VALUES (47, 'bbbbbbb bbbbbbb', '1749280969287.jpeg', -1, '2025-06-07 15:22:50.144798', 5);
INSERT INTO `b_category` VALUES (48, 'cccccccccc cccccccccc', '1749280975639.jpeg', -1, '2025-06-07 15:22:58.213955', 6);
-- ----------------------------
-- Table structure for b_comment
-- ----------------------------
DROP TABLE IF EXISTS `b_comment`;
CREATE TABLE `b_comment` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`comment_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`comment_location` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`comment_content` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`comment_cover` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_comment
-- ----------------------------
INSERT INTO `b_comment` VALUES (1, 'Phoebe Buffay', 'Korea', 'Reliable platform, fast response, and great suppliers. Our sourcing process is easier and more efficient. Highly recommended. The product quality is very high, I am very satisfied.', '1745290367491.jpg');
INSERT INTO `b_comment` VALUES (3, 'Monica Geller', 'USA', 'Great user experience on your website. Great user experience on your website.I found exactly what I was looking for at a great price. I will definitely be telling my friends.', '1745290373456.jpg');
INSERT INTO `b_comment` VALUES (4, 'Robort Green', 'USA', 'This B2B website made it easy to find reliable suppliers. Orders are processed quickly and support is excellent. It really improved our business efficiency!', '1745290377932.jpg');
-- ----------------------------
-- Table structure for b_download
-- ----------------------------
DROP TABLE IF EXISTS `b_download`;
CREATE TABLE `b_download` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`summary` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`raw` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`pv` int(11) NOT NULL,
`link` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_download
-- ----------------------------
INSERT INTO `b_download` VALUES (4, 'Product Price File', 'This manual provides detailed installation, operation, and maintenance instructions.', '1745483220862.docx', '0', '2025-03-22 11:14:00.425994', 0, '');
INSERT INTO `b_download` VALUES (5, 'Software Installation Guide', 'This manual offers comprehensive guidance on installation, operation, and maintenance.', '1745483212567.png', '0', '2025-03-22 11:17:30.954173', 0, '');
INSERT INTO `b_download` VALUES (6, 'Equipment Operation Manual', 'This manual provides detailed installation, operation, and maintenance instructions.', '1745483200558.docx', '0', '2025-03-22 11:17:33.590433', 0, '');
INSERT INTO `b_download` VALUES (7, 'Test Test 产品价格表', 'This manual offers comprehensive guidance on installation, operation, and maintenance.', '1745483187020.docx', '0', '2025-03-22 11:17:36.664924', 0, '');
INSERT INTO `b_download` VALUES (8, 'Product Specification Manual', 'This manual provides detailed installation, operation, and maintenance instructions.', '1745029106706.pdf', '0', '2025-03-22 11:17:39.294378', 0, 'https://pan.baidu.com/s/1Ge1sbkBridam3_tWhuOMbw');
-- ----------------------------
-- Table structure for b_error_log
-- ----------------------------
DROP TABLE IF EXISTS `b_error_log`;
CREATE TABLE `b_error_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`ip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`content` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`log_time` datetime(6) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_error_log
-- ----------------------------
-- ----------------------------
-- Table structure for b_faq
-- ----------------------------
DROP TABLE IF EXISTS `b_faq`;
CREATE TABLE `b_faq` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`question` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`reply` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`pv` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_faq
-- ----------------------------
INSERT INTO `b_faq` VALUES (2, 'What are your production and delivery lead times?', 'Our standard production lead time is 20-30 days after order confirmation and deposit receipt. For large volume or customized orders, lead time may extend to 30-45 days. Shipping times vary by destination: 3-5 days for express air freight, 20-30 days for standard sea freight. We provide detailed production schedules with milestone updates throughout the process.', '0', '2025-03-17 11:41:28.666947', 0);
INSERT INTO `b_faq` VALUES (3, 'What certifications and compliance standards do your products meet?', 'Our products comply with major international standards including CE, RoHS, REACH, FCC, and UL certifications. For specific markets, we ensure compliance with region-specific regulations such as FDA for the US market and UKCA for the UK. We can provide all necessary certification documentation with each shipment for smooth customs clearance.', '0', '2025-03-17 11:41:31.886817', 0);
INSERT INTO `b_faq` VALUES (4, 'How do you handle samples before bulk orders?', 'We offer both standard and customized sampling options. Standard samples can be delivered within 3-5 working days, while customized samples may take 10-15 days depending on specifications. Sample costs are typically refundable against future bulk orders. We also provide a comprehensive sample kit featuring our bestselling products at a nominal charge.', '0', '2025-03-17 11:41:35.518381', 0);
INSERT INTO `b_faq` VALUES (5, 'Can you provide product customization and OEM/ODM services?', 'Yes, we specialize in product customization and OEM/ODM services. We can customize packaging, branding, product specifications, and even develop entirely new products based on your requirements. Our R&D team works closely with clients to ensure all customizations meet international quality standards and market requirements.', '0', '2025-03-17 11:41:40.120941', 0);
INSERT INTO `b_faq` VALUES (6, 'What payment methods do you accept for international orders?', 'We accept secure international payments via T/T (wire transfer), L/C (Letter of Credit), D/P, and major credit cards through our secure payment gateway. For new clients, we typically require a 30% deposit with the balance due before shipment. Established clients may qualify for 30-60 day payment terms after credit approval.', '0', '2025-03-17 11:41:43.066286', 0);
INSERT INTO `b_faq` VALUES (12, 'What international shipping and logistics options do you provide?', 'We offer comprehensive international shipping solutions including FOB, CIF, EXW, and DDP terms. We partner with reliable logistics providers like DHL, FedEx, and Maersk for air and sea freight. All shipments are fully insured and trackable through our client portal. We also handle all export documentation and customs clearance procedures.', '0', '2025-03-17 22:14:29.328918', 0);
INSERT INTO `b_faq` VALUES (13, 'How can I contact customer support if I have questions or encounter any issues with my products?', 'You can reach our customer service team via email at [email protected] or through the live chat feature on our website.', '0', '2025-04-24 15:11:22.709163', 0);
INSERT INTO `b_faq` VALUES (14, 'How do I return or exchange an item if I am not satisfied with my products?', 'If you are not satisfied with your products, you can initiate a return or exchange within 14 days of receipt. Please visit our Returns & Exchanges page for more details.', '0', '2025-04-24 15:12:00.665879', 0);
-- ----------------------------
-- Table structure for b_inquiry
-- ----------------------------
DROP TABLE IF EXISTS `b_inquiry`;
CREATE TABLE `b_inquiry` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`tel` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`email` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`company` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`message` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`pv` int(11) NOT NULL,
`ip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 47 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_inquiry
-- ----------------------------
INSERT INTO `b_inquiry` VALUES (30, 'json tim', '77771651534', '[email protected]', NULL, 'hhhhh hello', '0', '2025-04-18 15:24:32.363714', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (31, 'aaaaaao', '222534', '[email protected]', NULL, 'dddddddddd', '0', '2025-04-23 17:08:48.966849', 0, '192.168.123.161');
INSERT INTO `b_inquiry` VALUES (32, 'tom', '111651534', '[email protected]', NULL, 'dddddddddd', '0', '2025-04-23 22:26:25.396069', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (33, 'dddd', '22221534', '[email protected]', NULL, 'aaaa', '0', '2025-05-07 15:31:31.955550', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (34, 'dddd', '11151534', '[email protected]', NULL, 'ddddfff', '0', '2025-05-07 16:09:16.029949', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (35, 'jso9999', '777651534', '[email protected]', NULL, 'kkkk', '0', '2025-05-13 15:41:33.201741', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (38, '8888ao', '8881534', '[email protected]', NULL, 'hhh', '0', '2025-05-19 11:22:22.954448', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (39, 'hyt', '88534', '[email protected]', NULL, '09999', '0', '2025-05-19 11:36:31.717643', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (40, 'tom', '13599998888', '[email protected]', NULL, 'aaaaa', '0', '2025-05-21 21:48:19.004677', 0, '192.168.1.18');
INSERT INTO `b_inquiry` VALUES (41, 'Qing222', '2222651534', '[email protected]', NULL, '33333', '0', '2025-05-23 11:35:21.063418', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (42, 'json tim', '22281651534', '[email protected]', NULL, '33333', '0', '2025-05-23 21:33:26.444041', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (43, 'tom', '189888777', '[email protected]', NULL, 'hello', '0', '2025-05-24 20:39:17.861011', 0, '192.168.1.18');
INSERT INTO `b_inquiry` VALUES (44, 'Tim', '99887789', '[email protected]', NULL, 'hello', '0', '2025-05-26 20:52:36.413809', 0, '192.168.1.18');
INSERT INTO `b_inquiry` VALUES (45, 'json tim', '33331651534', '[email protected]', NULL, '啊啊啊啊啊啊啊', '0', '2025-05-29 15:23:31.990089', 0, '127.0.0.1');
INSERT INTO `b_inquiry` VALUES (46, 'json tim', '333351534', '[email protected]', NULL, 'test', '0', '2025-05-29 16:36:55.206172', 0, '127.0.0.1');
-- ----------------------------
-- Table structure for b_news
-- ----------------------------
DROP TABLE IF EXISTS `b_news`;
CREATE TABLE `b_news` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`summary` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`source` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cover` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`seo_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`pv` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 17 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_news
-- ----------------------------
INSERT INTO `b_news` VALUES (5, 'Exporters Embrace Artificial Intelligence Solutions', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Google', '1747118774080.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '11', '', '22', '0', '2025-03-16 15:13:37.981890', 0);
INSERT INTO `b_news` VALUES (6, 'The future of e-commerce and retail technology', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Google', '1745484510188.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '55', '11', '55', '0', '2025-03-17 11:06:00.119543', 0);
INSERT INTO `b_news` VALUES (7, 'Supply Chains Face New Hurdles', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Google', '1745484496336.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-03-20 11:16:13.409709', 0);
INSERT INTO `b_news` VALUES (8, 'SMEs Embrace Digital Trade', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Google', '1745484486390.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-03-20 11:16:55.064010', 0);
INSERT INTO `b_news` VALUES (9, 'B2B Marketplaces Expand Globally', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Yahoo', '1747118748287.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-03-27 11:17:39.789108', 0);
INSERT INTO `b_news` VALUES (10, 'Payment Gateways Simplify Trade', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Yahoo', '1747118738275.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-04-19 11:04:57.492501', 0);
INSERT INTO `b_news` VALUES (11, 'Logistics Solutions Aid Exporters', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Yahoo', '1747118729539.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-04-19 11:05:04.702227', 0);
INSERT INTO `b_news` VALUES (12, 'Mobile Shopping Grows Worldwide', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Yahoo', '1747118718622.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-04-19 11:05:11.733774', 0);
INSERT INTO `b_news` VALUES (13, 'New Markets Attract Foreign Sellers', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Yahoo', '1747118704917.jpg', '<p style=\"text-align: start;\"> In an era where digital commerce is becoming increasingly personalized and convenient, ShopEase, a leading e-commerce platform renowned for its commitment to customer satisfaction, is thrilled to announce the launch of its new AI-powered shopping experience. This strategic step reflects ShopEase’s dedication to staying at the forefront of digital innovation and to meeting the ever-evolving needs of modern consumers.</p><p style=\"text-align: start;\"><strong>Reinventing Online Shopping with Artificial Intelligence</strong></p><p style=\"text-align: start;\">Innovation has always driven ShopEase’s growth, and this year marks a significant milestone as the company integrates advanced artificial intelligence (AI) technologies into its platform. The new system analyzes customer preferences, shopping behaviors, and market trends to provide highly accurate product recommendations and tailored promotions. As a result, shoppers can now enjoy an intuitive browsing experience that saves time and makes discovering new products effortless.</p><p style=\"text-align: start;\">\"Our mission at ShopEase is to create a shopping experience that feels personal, convenient, and enjoyable for everyone,\" explains Emily Carter, CEO of ShopEase. \"AI allows us to better understand our customers’ unique tastes and needs, ensuring that every visit to our platform is engaging and truly relevant.\"</p><p style=\"text-align: start;\">Smart features such as predictive search, visual search, and voice-assisted navigation will empower customers to find what they\'re looking for with ease. For instance, users can now take a picture of an item they like, upload it to ShopEase, and instantly receive product suggestions that match or closely resemble the desired item. This level of personalization extends beyond product searches, impacting promotions, discounts, and even curated homepage layouts.</p><p style=\"text-align: start;\"><strong>Boosting Seller Success with Data-Driven Tools</strong></p><p style=\"text-align: start;\">While customers benefit from a richer shopping experience, ShopEase’s new AI suite also brings powerful tools to its community of sellers. Merchants can access real-time analytics about their products, gain insights into shifting consumer demand, and receive actionable recommendations for improving sales performance. Automated inventory management and dynamic pricing tools help sellers respond efficiently to market changes, ensuring competitive prices and product availability without manual intervention.</p><p style=\"text-align: start;\">\"We believe in empowering our sellers because their success is the backbone of our platform,\" says Raj Patel, Vice President of Marketplace Operations. \"By harnessing AI, we’re helping merchants optimize their business strategies and enhance customer engagement at every touchpoint.\"</p><p style=\"text-align: start;\"><strong>Expanding Product Categories and Delivery Options</strong></p><p style=\"text-align: start;\">To further meet customers’ needs, ShopEase is also expanding its product categories and delivery services. The website now offers an extended range of home essentials, electronics, fashion, and groceries, making it a true one-stop shop for everyday living. Newly introduced express and same-day delivery options in select cities ensure that customers receive their orders quickly and reliably, further strengthening ShopEase’s reputation for convenience and dependability.</p><p style=\"text-align: start;\">Additionally, the “ShopEase Fresh” initiative brings farm-to-table groceries and organic produce to urban consumers, promoting healthier lifestyles and supporting local agriculture.</p><p style=\"text-align: start;\"><strong>Enhancing Customer Care and Secure Payments</strong></p><p style=\"text-align: start;\">Recognizing that excellent service and security are pillars of consumer trust, ShopEase has ramped up customer support and payment authentication measures. The newly introduced AI-powered chatbot is available 24/7 to answer questions, resolve issues, and guide shoppers through the buying process. Enhanced encryption and multi-factor authentication safeguard every transaction, giving customers peace of mind while shopping online.</p><p style=\"text-align: start;\">\"Our shoppers’ safety is our top priority,\" notes CIO Hannah Lee. \"By combining advanced technology with friendly, responsive support, we’re building a platform that people can trust for all their shopping needs.\"</p><p style=\"text-align: start;\"><strong>Community Initiatives and Sustainability Efforts</strong></p><p style=\"text-align: start;\">Beyond technology and commerce, ShopEase remains committed to making a positive impact. The company has launched several initiatives aimed at supporting local businesses and promoting sustainability. Through its “Green Shopping” program, ShopEase encourages the sale of eco-friendly products and partners with suppliers that adopt environmentally responsible practices.</p><p style=\"text-align: start;\">In the coming months, the company plans to introduce a trade-in program, allowing customers to recycle used electronics and apparel for store credit, reducing waste and minimizing environmental impact.</p><p style=\"text-align: start;\"><strong>Looking Forward: ShopEase’s Vision for the Future</strong></p><p style=\"text-align: start;\">ShopEase’s recent upgrades underscore its vision for the future: a seamless ecosystem where advanced technology, customer-centric values, and sustainable practices come together to redefine online shopping.</p><p style=\"text-align: start;\">\"We are only at the beginning of what we can do with data and artificial intelligence to make lives easier,\" says CEO Emily Carter. \"The future of e-commerce is not just about selling products – it\'s about forging connections, building trust, and creating value for every member of our community.\"</p><p style=\"text-align: start;\">With continuous innovation, expanded services, and a steadfast focus on quality, ShopEase is positioning itself for further growth and leadership in the e-commerce industry. Both new and long-time users can look forward to an even more engaging and secure shopping experience in the months to come.</p>', '', '', '', '0', '2025-04-19 11:05:18.237498', 0);
INSERT INTO `b_news` VALUES (14, 'Cross-Border Sales Surge Ahead', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Yahoo', '1747118695771.jpg', '<p style=\"text-align: start;\">Artificial Intelligence (AI) has become one of the most transformative technologies of our time, affecting various sectors from healthcare to finance to transportation. Understanding the history of AI provides valuable insights into its current capabilities and future potential. This article explores the significant developments in AI from its inception to the present day.</p><p style=\"text-align: start;\"><strong>The Early Years: 1950s to 1970s</strong></p><p style=\"text-align: start;\">The concept of artificial intelligence dates back to ancient times, but the term \"Artificial Intelligence\" was first coined by John McCarthy in 1956 during the Dartmouth Conference, which is considered the birthplace of AI as a formal field of study. Early pioneers, including Alan Turing, proposed theories and models for machine intelligence. Turing\'s famous test, introduced in his 1950 paper \"Computing Machinery and Intelligence,” set a benchmark for evaluating a machine\'s ability to exhibit intelligent behavior indistinguishable from a human.</p><p style=\"text-align: start;\">In the 1960s, AI research gained momentum with the development of early algorithms. The LISP programming language, created by McCarthy for AI applications, allowed researchers to create complex programs that could solve problems. However, despite initial enthusiasm, progress was slow, leading to the first \"AI winter\" in the 1970s, a period marked by reduced funding and interest in AI research due to unmet expectations.</p><p style=\"text-align: start;\"><strong>Revival and Growth: 1980s to 1990s</strong></p><p style=\"text-align: start;\">The 1980s witnessed a revival of interest in AI, primarily driven by the emergence of expert systems. These computer programs mimicked the decision-making abilities of human experts and found applications in fields such as medicine and finance. Systems like MYCIN and XCON showcased the potential of AI and garnered commercial interest, leading to significant investments in the technology.</p><p style=\"text-align: start;\">Moreover, advancements in hardware made it possible to execute more complex algorithms. The introduction of parallel processing and increased computing power opened new avenues for AI research. However, by the late 1980s, expert systems experienced another decline, leading to a second AI winter. Critics argued that the limitations of these systems and their inability to adapt to new situations inhibited their growth.</p><p style=\"text-align: start;\"><strong>The Rise of Machine Learning: 1990s to 2010s</strong></p><p style=\"text-align: start;\">The 1990s marked a paradigm shift in AI research with the focus moving from rule-based systems to machine learning (ML). Researchers began to develop algorithms that allowed computers to learn from data rather than relying solely on predefined rules.</p><p style=\"text-align: start;\">One landmark event was IBM\'s Deep Blue defeating world chess champion Garry Kasparov in 1997, showcasing the potential of AI in strategic thinking and problem-solving. This victory generated significant media attention and spurred public interest in AI technologies.</p><p style=\"text-align: start;\">The advent of the internet and the boom of big data in the 2000s provided fertile ground for machine learning algorithms. Techniques such as support vector machines, decision trees, and neural networks started to gain traction. The introduction of deep learning, a subset of ML utilizing artificial neural networks, revolutionized the field, allowing machines to process vast amounts of unstructured data like images and audio.</p><p style=\"text-align: start;\"><strong>The Current Era: 2010s to Present</strong></p><p style=\"text-align: start;\">The past decade has witnessed unprecedented advances in AI technology. Breakthroughs in deep learning have enabled significant improvements in natural language processing (NLP), computer vision, and speech recognition. Technologies such as Google’s AlphaGo defeating the world Go champion in 2016 demonstrated that AI could tackle highly complex and abstract games, further validating its potential.</p><p style=\"text-align: start;\">In addition, companies like OpenAI, Google, and Facebook have developed powerful AI models—like the GPT series and Google\'s BERT—capable of generating human-like text and understanding context, thus transforming how we interact with machines.</p><p style=\"text-align: start;\">Concerns surrounding ethics, privacy, and the societal impact of AI have also become more pronounced. The role of AI in automation, biases in algorithms, and the implications of AI in surveillance raise significant questions that researchers, policymakers, and businesses must address.</p><p style=\"text-align: start;\"><strong>Future Perspectives</strong></p><p style=\"text-align: start;\">As we look to the future, the potential for AI seems limitless. Emerging technologies such as quantum computing could exponentially increase processing power, allowing more complex AI models to flourish. Moreover, advancements in robotics and automation are likely to reshape industries, creating new job opportunities while rendering some roles obsolete.</p><p style=\"text-align: start;\">However, the path forward will require careful consideration of ethical frameworks, regulations, and collaborative efforts among governments, businesses, and researchers. Promoting transparency, fairness, and accountability in AI systems will be crucial to harnessing the technology for the greater good.</p><p style=\"text-align: start;\"><strong>Conclusion</strong></p><p style=\"text-align: start;\">The history of artificial intelligence is a tale of ambition, innovation, and adaptation over several decades. From its humble beginnings in the mid-20th century to its current applications in diverse fields, AI has continually evolved, driven by human curiosity and technological advancements. As we stand on the brink of a new era in AI, understanding its past will help guide efforts to create a future where artificial intelligence serves humanity responsibly and ethically.</p>', '', '', '', '0', '2025-04-19 11:05:27.965356', 0);
INSERT INTO `b_news` VALUES (15, 'Exporters Boost Online Presence', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Google', '1747118686146.jpg', '<p style=\"text-align: start;\"><span style=\"font-size: 16px;\">测试文本 The gunman, identified as the stepson of a sheriff’s deputy, arrived on campus an hour before the shooting Thursday and stayed near a parking garage before he walked in and out of buildings and green spaces while firing a handgun just before lunchtime, police said.</span></p><blockquote style=\"text-align: start;\"><span style=\"font-size: 16px;\">In roughly four minutes, officers confronted 20-year-old Phoenix Ikner, a Florida State student, and shot and wounded him, Tallahassee police said.</span></blockquote><p style=\"text-align: start;\"><span style=\"font-size: 16px;\"><strong>Officials have not identified the two men who died, but family members said Robert Morales, a university dining coordinator, was one of them. He worked at Florida State since 2015 and studied criminology there in the early 1990s, according to his LinkedIn profile.😀🙂</strong></span></p><p style=\"text-align: start;\"><span style=\"font-size: 16px;\"><em>The other was Tiru Chabba, 45, a married father of two from Greenville, South Carolina, who was working for food service vendor Aramark, said Michael Wukela, a spokesperson for attorneys hired by the family.</em></span></p><p style=\"text-align: start;\"><span style=\"font-size: 16px;\"><code>The gunman, identified as the stepson of a sheriff’s deputy, arrived on campus an hour before the shooting Thursday and stayed near a parking garage before he walked in and out of buildings and green spaces while firing a handgun just before lunchtime, police said.</code></span></p><ol><li style=\"text-align: start;\"><span style=\"font-size: 16px;\">bbb</span></li><li style=\"text-align: start;\"><span style=\"font-size: 16px;\">aaa</span></li><li style=\"text-align: start;\"><span style=\"font-size: 16px;\">eee</span></li></ol><ul><li style=\"text-align: start;\"><span style=\"font-size: 16px;\">aaa</span></li><li style=\"text-align: start;\"><span style=\"font-size: 16px;\">bbb</span></li><li style=\"text-align: start;\"><span style=\"font-size: 16px;\">ccc</span></li></ul><p style=\"text-align: start;\"><span style=\"font-size: 16px;\"><strong>In roughly four minutes, officers confronted 20-year-old Phoenix Ikner, a Florida State student, and shot and wounded him, Tallahassee police said.</strong></span></p><p style=\"text-align: start;\"><span style=\"font-size: 16px;\"><em>Officials have not identified the two men who died, but family members said Robert Morales, a university dining coordinator, was one of them. He worked at Florida State since 2015 and studied criminology there in the early 1990s, according to his LinkedIn profile.</em></span></p><p style=\"text-align: start;\"><br></p><p style=\"text-align: start;\"><br></p><p style=\"text-align: start;\"><br></p><p style=\"text-align: start;\"><br></p>', '', '', '', '0', '2025-04-19 11:05:34.329587', 0);
INSERT INTO `b_news` VALUES (16, 'Global E-Commerce Sales Reach Record High', 'ShopEase, a leading e-commerce platform, has launched a new AI-powered shopping experience to provide personalized recommendations and improve convenience for customers. The upgrade includes expanded product categories, express delivery, enhanced seller tools, and stronger security. Additionally, ShopEase is promoting sustainable practices with green initiatives and recycling programs, reinforcing its commitment to innovation, customer satisfaction, and environmental responsibility.', 'Google', '1747118675095.jpg', '<p style=\"text-align: start;\">测试文本 The gunman, identified as the stepson of a sheriff’s deputy, <span style=\"font-size: 14px;\">arrived </span>on campus an hour before the shooting Thursday and stayed near a parking garage before he walked in and out of buildings and green spaces while firing a handgun just before lunchtime, police said.</p><p style=\"text-align: start;\">In roughly four minutes, officers confronted 20-year-old Phoenix Ikner, a Florida State student, and shot and wounded him, Tallahassee police said.</p><p style=\"text-align: start;\">Officials have not identified the two men who died, but family members said Robert Morales, a university dining coordinator, was one of them. He worked at Florida State since 2015 and studied criminology there in the early 1990s, according to his LinkedIn profile.</p><p style=\"text-align: start;\">The other was Tiru Chabba, 45, a married father of two from Greenville, South Carolina, who was working for food service vendor Aramark, said Michael Wukela, a spokesperson for attorneys hired by the family.</p><p style=\"text-align: start;\">The gunman, identified as the stepson of a sheriff’s deputy, arrived on campus an hour before the shooting Thursday and stayed near a parking garage before he walked in and out of buildings and green spaces while firing a handgun just before lunchtime, police said.</p><p style=\"text-align: start;\">In roughly four minutes, officers confronted 20-year-old Phoenix Ikner, a Florida State student, and shot and wounded him, Tallahassee police said.</p><p style=\"text-align: start;\">Officials have not identified the two men who died, but family members said Robert Morales, a university dining coordinator, was one of them. He worked at Florida State since 2015 and studied criminology there in the early 1990s, according to his LinkedIn profile.</p><p style=\"text-align: start;\">The other was Tiru Chabba, 45, a married father of two from Greenville, South Carolina, who was working for food service vendor Aramark, said Michael Wukela, a spokesperson for attorneys hired by the family.</p>', 'Test', 'Test', '', '0', '2025-04-24 16:34:00.952110', 0);
-- ----------------------------
-- Table structure for b_op_log
-- ----------------------------
DROP TABLE IF EXISTS `b_op_log`;
CREATE TABLE `b_op_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`re_ip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`re_time` datetime(6) NULL DEFAULT NULL,
`re_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`re_method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`re_content` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`access_time` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `re_time`(`re_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3517 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_op_log
-- ----------------------------
INSERT INTO `b_op_log` VALUES (3467, '127.0.0.1', '2025-06-17 09:31:11.544931', '/myapp/admin/opLog/deleteAll', 'POST', NULL, '53');
INSERT INTO `b_op_log` VALUES (3468, '127.0.0.1', '2025-06-17 09:31:11.599489', '/myapp/admin/opLog/list', 'GET', NULL, '22');
INSERT INTO `b_op_log` VALUES (3469, '127.0.0.1', '2025-06-18 09:29:55.585047', '/myapp/index/common/section', 'GET', NULL, '55');
INSERT INTO `b_op_log` VALUES (3470, '127.0.0.1', '2025-06-18 09:29:55.653064', '/myapp/index/home/section', 'GET', NULL, '123');
INSERT INTO `b_op_log` VALUES (3471, '127.0.0.1', '2025-06-18 09:31:27.782020', '/myapp/index/common/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3472, '127.0.0.1', '2025-06-18 09:31:27.783022', '/myapp/index/common/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3473, '127.0.0.1', '2025-06-18 09:31:28.306266', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3474, '127.0.0.1', '2025-06-18 09:31:28.311266', '/myapp/index/common/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3475, '127.0.0.1', '2025-06-18 09:32:14.356281', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3476, '127.0.0.1', '2025-06-18 09:32:14.358278', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3477, '127.0.0.1', '2025-06-18 09:32:14.687995', '/myapp/index/home/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3478, '127.0.0.1', '2025-06-18 09:32:14.697995', '/myapp/index/common/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3479, '127.0.0.1', '2025-06-18 09:32:45.796204', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3480, '127.0.0.1', '2025-06-18 09:32:45.798172', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3481, '127.0.0.1', '2025-06-18 09:33:29.731966', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3482, '127.0.0.1', '2025-06-18 09:33:29.732882', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3483, '127.0.0.1', '2025-06-18 09:33:36.749285', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3484, '127.0.0.1', '2025-06-18 09:33:36.750285', '/myapp/index/home/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3485, '127.0.0.1', '2025-06-18 09:35:02.459138', '/myapp/index/home/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3486, '127.0.0.1', '2025-06-18 09:35:02.461143', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3487, '127.0.0.1', '2025-06-18 09:35:02.470698', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3488, '127.0.0.1', '2025-06-18 09:35:02.500684', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3489, '127.0.0.1', '2025-06-18 09:37:55.063628', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3490, '127.0.0.1', '2025-06-18 09:37:55.064629', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3491, '127.0.0.1', '2025-06-18 09:38:05.242305', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3492, '127.0.0.1', '2025-06-18 09:38:05.245305', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3493, '127.0.0.1', '2025-06-18 09:38:54.117451', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3494, '127.0.0.1', '2025-06-18 09:38:54.191811', '/myapp/index/contact/section', 'GET', NULL, '81');
INSERT INTO `b_op_log` VALUES (3495, '127.0.0.1', '2025-06-18 09:39:19.044103', '/myapp/index/contact/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3496, '127.0.0.1', '2025-06-18 09:39:19.045103', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3497, '127.0.0.1', '2025-06-18 09:55:51.114739', '/myapp/index/contact/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3498, '127.0.0.1', '2025-06-18 09:55:51.115737', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3499, '127.0.0.1', '2025-06-18 09:55:56.537664', '/myapp/index/contact/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3500, '127.0.0.1', '2025-06-18 09:55:56.564352', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3501, '127.0.0.1', '2025-06-18 09:55:59.277842', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3502, '127.0.0.1', '2025-06-18 09:56:15.596730', '/myapp/index/common/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3503, '127.0.0.1', '2025-06-18 09:56:15.611733', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3504, '127.0.0.1', '2025-06-18 09:56:51.069095', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3505, '127.0.0.1', '2025-06-18 09:56:51.082230', '/myapp/index/home/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3506, '127.0.0.1', '2025-06-18 09:56:51.479005', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3507, '127.0.0.1', '2025-06-18 09:56:51.486988', '/myapp/index/common/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3508, '127.0.0.1', '2025-06-18 09:57:13.919119', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3509, '127.0.0.1', '2025-06-18 09:57:13.920107', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3510, '127.0.0.1', '2025-06-18 09:57:46.741484', '/myapp/index/home/section', 'GET', NULL, '3');
INSERT INTO `b_op_log` VALUES (3511, '127.0.0.1', '2025-06-18 09:57:46.755507', '/myapp/index/common/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3512, '127.0.0.1', '2025-06-18 09:58:24.694150', '/myapp/index/common/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3513, '127.0.0.1', '2025-06-18 09:58:24.705140', '/myapp/index/home/section', 'GET', NULL, '2');
INSERT INTO `b_op_log` VALUES (3514, '127.0.0.1', '2025-06-18 09:58:45.985254', '/myapp/index/common/section', 'GET', NULL, '1');
INSERT INTO `b_op_log` VALUES (3515, '127.0.0.1', '2025-06-18 09:58:46.015756', '/myapp/index/about/section', 'GET', NULL, '49');
INSERT INTO `b_op_log` VALUES (3516, '127.0.0.1', '2025-06-18 09:58:50.441036', '/myapp/index/home/section', 'GET', NULL, '1');
-- ----------------------------
-- Table structure for b_thing
-- ----------------------------
DROP TABLE IF EXISTS `b_thing`;
CREATE TABLE `b_thing` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cover` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`price` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`pv` int(11) NOT NULL,
`rate` int(11) NOT NULL,
`category_id` bigint(20) NULL DEFAULT NULL,
`summary` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_description` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_keywords` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`seo_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`properties` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`dimension` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `b_thing_category_id_d2a29cf0_fk_b_category_id`(`category_id`) USING BTREE,
CONSTRAINT `b_thing_category_id_d2a29cf0_fk_b_category_id` FOREIGN KEY (`category_id`) REFERENCES `b_category` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 42 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_thing
-- ----------------------------
INSERT INTO `b_thing` VALUES (27, 'Classic Glide', '1745462437068.jpg', '<p style=\"text-align: start;\">The EcoPure Water Bottle stands out due to its thoughtfully engineered design. With a sleek and modern silhouette, this bottle fits comfortably in hand, backpack side pockets, or car cup holders. Made from high-grade, BPA-free stainless steel, it guarantees durability and resistance to rust and stains. Whether you’re heading to the office, gym, school, or embarking on a weekend hike, the EcoPure Water Bottle is your reliable hydration companion.</p><p style=\"text-align: start;\">A unique double-walled vacuum insulation technology keeps beverages cold for up to 24 hours or hot for up to 12 hours. Busy commuters and students can enjoy ice-cold water all day or sip hot coffee during early morning classes. The wide-mouth opening enables effortless cleaning and allows you to easily add ice or fruit slices for fresh, flavoured hydration.</p><p style=\"text-align: start;\"><strong>Eco-Friendly Materials and Recyclability</strong></p><p style=\"text-align: start;\">Sustainability is at the heart of the EcoPure brand. Each water bottle is crafted using 100% recyclable materials, from the stainless steel body to the food-grade silicone leak-proof lid. By choosing EcoPure, consumers reduce their reliance on single-use plastics, helping to keep our rivers and oceans cleaner. Our bottles are not just reusable but also built to last for years, further minimizing environmental footprint.</p><p style=\"text-align: start;\">For environmentally conscious exporters and e-commerce businesses, EcoPure Water Bottles align perfectly with growing consumer demand for sustainable goods. Our minimalist and recyclable packaging also reduces waste during shipping and handling, supporting greener supply chains.</p><p style=\"text-align: start;\"><strong>Safe, Healthy, and Odor-Free</strong></p><p style=\"text-align: start;\">EcoPure Water Bottles are rigorously tested to ensure safety for daily use. The interior does not retain flavors or odors, so every refill is as pure as the first. Unlike plastic bottles, our stainless steel material is free from harmful chemicals, ensuring your drinks stay fresh and uncontaminated. The food-safe, BPA-free lid with a silicone gasket prevents leaks and spills, making it easy to carry in bags or backpacks without worry.</p><p style=\"text-align: start;\"><strong>Designed for Global Appeal</strong></p><p style=\"text-align: start;\">We understand that international shoppers seek products that combine style and practicality. The EcoPure Water Bottle is available in a range of fashionable colors and sizes, from a compact 350ml version for kids to a large 1L bottle for athletes. Custom logo printing offers additional branding opportunities for corporate gifts or promotional campaigns.</p><p style=\"text-align: start;\">Through our dedicated e-commerce platform, we provide seamless purchasing experiences for customers around the globe. With multilingual customer service, secure payment options, and worldwide shipping, international buyers can easily enjoy the EcoPure difference.</p><p style=\"text-align: start;\"><strong>Easy Care and Maintenance</strong></p><p style=\"text-align: start;\">Maintaining your EcoPure Water Bottle is effortless. The wide mouth design allows for easy handwashing, and the bottle is dishwasher-safe for added convenience. Each purchase includes a detailed care guide to ensure optimal bottle longevity and hygiene.</p><p style=\"text-align: start;\"><strong>Commitment to Social Responsibility</strong></p><p style=\"text-align: start;\">EcoPure is not only invested in environmental sustainability but also in making a positive social impact. A portion of our profits supports clean water initiatives in underserved communities. By purchasing an EcoPure Water Bottle, customers contribute to safe drinking water projects worldwide.</p><p style=\"text-align: start;\"><strong>Endorsements and Customer Reviews</strong></p><p style=\"text-align: start;\">The EcoPure Water Bottle has already gained positive reviews from outdoor enthusiasts, athletes, students, and families. Customers praise its ability to keep drinks at the perfect temperature, its lightweight portability, and the stylish designs that suit every personality.</p>', '2', '0', '2025-03-20 10:53:39.721355', 0, 3, 7, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', '');
INSERT INTO `b_thing` VALUES (28, 'Street Spirit', '1745462428866.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '22', '0', '2025-03-22 15:30:11.418305', 0, 3, 8, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '333', '222', '111', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Recommend,Feature');
INSERT INTO `b_thing` VALUES (30, 'Pure Motion', '1745462412737.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '', '0', '2025-04-20 15:39:19.418785', 0, 3, 41, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Feature');
INSERT INTO `b_thing` VALUES (31, 'Dynamic Step', '1745462405276.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '', '0', '2025-04-20 15:39:34.764155', 0, 3, 7, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', '');
INSERT INTO `b_thing` VALUES (32, 'Elite Walker Elite Walker', '1745462395579.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '', '0', '2025-04-20 17:09:54.174946', 0, 3, 41, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Recommend,Feature');
INSERT INTO `b_thing` VALUES (33, 'Swift Trail Swift Trail', '1745462388292.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '3', '0', '2025-04-20 17:10:05.633730', 0, 3, 8, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Recommend,Feature');
INSERT INTO `b_thing` VALUES (34, 'Modern Pathway', '1745462380944.jpg', '<p style=\"text-align: start;\"><strong>Overview:</strong> Introducing our state-of-the-art Mechanical Gaming Keyboard, designed to elevate your gaming experience to the next level. With its customizable features, robust build quality, and dynamic lighting options, this keyboard is perfect for gamers, typists, and anyone looking for precision in their keystrokes.</p><p style=\"text-align: start;\"><strong>Key Features:</strong></p><ol><li style=\"text-align: start;\">Mechanical Switches: Our keyboard is equipped with high-quality mechanical switches that deliver tactile feedback and a satisfying click with each press. Choose from a variety of switches (Clicky, Tactile, or Linear) to suit your typing style and preferences.</li><li style=\"text-align: start;\">RGB Backlighting: Illuminate your gaming setup with customizable RGB backlighting. With multiple lighting effects and color options, you can create stunning visual displays or synchronize with in-game actions for an immersive experience.</li><li style=\"text-align: start;\">Durable Construction: Built to withstand intense gaming sessions, this keyboard features a sturdy frame and high-quality keycaps that resist wear and tear. Each key is rated for over 50 million presses, ensuring longevity and reliability.</li><li style=\"text-align: start;\">Anti-Ghosting Technology: Enjoy smooth gameplay without missed keystrokes. Our anti-ghosting technology allows multiple keys to be pressed simultaneously, making sure every action is registered accurately.</li><li style=\"text-align: start;\">Customizable Macros: Tailor your gameplay with programmable macros. Assign complex commands to specific keys, giving you the edge in competitive gaming situations. The onboard memory can save your profiles for quick access.</li><li style=\"text-align: start;\">Ergonomic Design: Comfort is key during long gaming sessions. The keyboard features an ergonomic design that reduces strain on your wrists and hands. The detachable wrist rest provides extra support and can be removed for convenience.</li><li style=\"text-align: start;\">Compatibility: This keyboard is compatible with multiple operating systems, including Windows, macOS, and even some Linux distributions. Plug it in via USB, and you\'re ready to go—no additional drivers required!</li></ol><p style=\"text-align: start;\"><strong>Specifications:</strong></p><ul><li style=\"text-align: start;\">Key Switch Type: Mechanical (Choose between types)</li><li style=\"text-align: start;\">Backlit: Yes (RGB)</li><li style=\"text-align: start;\">Key Rollover: 100% Anti-Ghosting</li><li style=\"text-align: start;\">Connectivity: USB</li><li style=\"text-align: start;\">Dimensions: [Insert dimensions here]</li><li style=\"text-align: start;\">Weight: [Insert weight here]</li></ul><p style=\"text-align: start;\"><strong>Conclusion:</strong> Whether you’re a competitive gamer or someone who enjoys a good typing experience, our Mechanical Gaming Keyboard is the perfect addition to your setup. Experience enhanced performance, comfort, and style. Upgrade your gaming experience today!</p><p style=\"text-align: start;\"><strong>Order Now!</strong> Don’t miss out on the ultimate gaming accessory. Order your Mechanical Gaming Keyboard now and take your gaming to new heights!</p>', '', '0', '2025-04-20 17:10:17.030117', 0, 3, 40, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', 'very good', '[{\"name\":\"Weight\",\"value\":\"0.5 kg\"},{\"name\":\"Dimensions\",\"value\":\"30 × 40 × 2 cm\"},{\"name\":\"Material\",\"value\":\"Cotton, Polyester\"},{\"name\":\"Height\",\"value\":\"80 cm\"}]', 'Feature');
INSERT INTO `b_thing` VALUES (35, 'City Explorer Shoe', '1745462491685.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '', '0', '2025-04-24 10:41:33.313807', 0, 3, 7, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', '');
INSERT INTO `b_thing` VALUES (36, 'Active Flex Path', '1745462508547.jpg', '<p style=\"text-align: start;\">Step up your style and comfort with the Elevate Pro Runner Lightweight Breathable Sneakers, meticulously crafted for the modern individual who refuses to compromise between fashion and functionality. Whether you’re an avid runner, a daily city commuter, or simply someone who values the perfect blend of aesthetics and performance in their footwear, these sneakers are designed to keep you moving with confidence, comfort, and flair.</p><p style=\"text-align: start;\"><strong>Design and Aesthetics</strong></p><p style=\"text-align: start;\">The Elevate Pro Runner is a masterful union of sleek design and contemporary trends. Its athletic silhouette features dynamic lines and a streamlined profile that flatter any foot and outfit combination. Available in a range of versatile colorways — from classic black and pure white to bold neon and pastel gradients — there’s a style for every personality. A subtle reflective logo and accents ensure visibility at night while adding a premium, urban edge.</p><p style=\"text-align: start;\"><strong>Ergonomic Fit and Support</strong></p><p style=\"text-align: start;\">Designed with your anatomy in mind, Elevate Pro Runner offers a supportive, adaptive fit. The padded heel collar and tongue prevent chafing, while the reinforced heel counter offers extra ankle support. The lace-up design ensures a secure fit, and a slightly wider forefoot delivers natural toe splay, since comfort is key for peak performance and daily wear.</p><p style=\"text-align: start;\"><strong>Lightweight Performance</strong></p><ul><li style=\"text-align: start;\">Running and jogging</li><li style=\"text-align: start;\">Walking and casual strolls</li><li style=\"text-align: start;\">Gym and cross-training sessions</li><li style=\"text-align: start;\">Travel and long commutes</li><li style=\"text-align: start;\">Everyday lifestyle wear</li></ul><p style=\"text-align: start;\"><strong>Key Features at a Glance:</strong></p><ul><li style=\"text-align: start;\">Lightweight, breathable mesh upper</li><li style=\"text-align: start;\">Cushioned memory foam insole with anti-odor properties</li><li style=\"text-align: start;\">Shock-absorbing EVA midsole for supreme comfort</li><li style=\"text-align: start;\">High-grip, multidirectional rubber outsole for excellent traction</li><li style=\"text-align: start;\">Reflective elements for increased visibility and safety</li><li style=\"text-align: start;\">Anatomically supportive design for optimal fit</li><li style=\"text-align: start;\">Available in multiple colorways and full size range (Men’s/Women’s/Unisex)</li><li style=\"text-align: start;\">Machine washable for easy care</li></ul>', '', '0', '2025-04-24 10:41:50.435906', 0, 3, 7, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Recommend,Feature');
INSERT INTO `b_thing` VALUES (37, 'classic product', '1745462520685.jpg', '<p style=\"text-align: start;\">The EcoPure Water Bottle stands out due to its thoughtfully engineered design. With a sleek and modern silhouette, this bottle fits comfortably in hand, backpack side pockets, or car cup holders. Made from high-grade, BPA-free stainless steel, it guarantees durability and resistance to rust and stains. Whether you’re heading to the office, gym, school, or embarking on a weekend hike, the EcoPure Water Bottle is your reliable hydration companion.</p><p style=\"text-align: start;\">A unique double-walled vacuum insulation technology keeps beverages cold for up to 24 hours or hot for up to 12 hours. Busy commuters and students can enjoy ice-cold water all day or sip hot coffee during early morning classes. The wide-mouth opening enables effortless cleaning and allows you to easily add ice or fruit slices for fresh, flavoured hydration.</p><p style=\"text-align: start;\"><strong>Eco-Friendly Materials and Recyclability</strong></p><p style=\"text-align: start;\">Sustainability is at the heart of the EcoPure brand. Each water bottle is crafted using 100% recyclable materials, from the stainless steel body to the food-grade silicone leak-proof lid. By choosing EcoPure, consumers reduce their reliance on single-use plastics, helping to keep our rivers and oceans cleaner. Our bottles are not just reusable but also built to last for years, further minimizing environmental footprint.</p><p style=\"text-align: start;\">For environmentally conscious exporters and e-commerce businesses, EcoPure Water Bottles align perfectly with growing consumer demand for sustainable goods. Our minimalist and recyclable packaging also reduces waste during shipping and handling, supporting greener supply chains.</p><p style=\"text-align: start;\"><strong>Safe, Healthy, and Odor-Free</strong></p><p style=\"text-align: start;\">EcoPure Water Bottles are rigorously tested to ensure safety for daily use. The interior does not retain flavors or odors, so every refill is as pure as the first. Unlike plastic bottles, our stainless steel material is free from harmful chemicals, ensuring your drinks stay fresh and uncontaminated. The food-safe, BPA-free lid with a silicone gasket prevents leaks and spills, making it easy to carry in bags or backpacks without worry.</p><p style=\"text-align: start;\"><strong>Designed for Global Appeal</strong></p><p style=\"text-align: start;\">We understand that international shoppers seek products that combine style and practicality. The EcoPure Water Bottle is available in a range of fashionable colors and sizes, from a compact 350ml version for kids to a large 1L bottle for athletes. Custom logo printing offers additional branding opportunities for corporate gifts or promotional campaigns.</p><p style=\"text-align: start;\">Through our dedicated e-commerce platform, we provide seamless purchasing experiences for customers around the globe. With multilingual customer service, secure payment options, and worldwide shipping, international buyers can easily enjoy the EcoPure difference.</p><p style=\"text-align: start;\"><strong>Easy Care and Maintenance</strong></p><p style=\"text-align: start;\">Maintaining your EcoPure Water Bottle is effortless. The wide mouth design allows for easy handwashing, and the bottle is dishwasher-safe for added convenience. Each purchase includes a detailed care guide to ensure optimal bottle longevity and hygiene.</p><p style=\"text-align: start;\"><strong>Commitment to Social Responsibility</strong></p><p style=\"text-align: start;\">EcoPure is not only invested in environmental sustainability but also in making a positive social impact. A portion of our profits supports clean water initiatives in underserved communities. By purchasing an EcoPure Water Bottle, customers contribute to safe drinking water projects worldwide.</p><p style=\"text-align: start;\"><strong>Endorsements and Customer Reviews</strong></p><p style=\"text-align: start;\">The EcoPure Water Bottle has already gained positive reviews from outdoor enthusiasts, athletes, students, and families. Customers praise its ability to keep drinks at the perfect temperature, its lightweight portability, and the stylish designs that suit every personality.</p>', '', '0', '2025-04-24 10:42:01.789771', 0, 3, 42, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Feature');
INSERT INTO `b_thing` VALUES (38, 'Swift Energy Pace Good Swift Energy Swift Energy Pace Swift Energy', '1745462532757.jpg', '<p style=\"text-align: start;\">The EcoPure Water Bottle stands out due to its thoughtfully engineered design. With a sleek and modern silhouette, this bottle fits comfortably in hand, backpack side pockets, or car cup holders. Made from high-grade, BPA-free stainless steel, it guarantees durability and resistance to rust and stains. Whether you’re heading to the office, gym, school, or embarking on a weekend hike, the EcoPure Water Bottle is your reliable hydration companion.</p><p style=\"text-align: start;\">A unique double-walled vacuum insulation technology keeps beverages cold for up to 24 hours or hot for up to 12 hours. Busy commuters and students can enjoy ice-cold water all day or sip hot coffee during early morning classes. The wide-mouth opening enables effortless cleaning and allows you to easily add ice or fruit slices for fresh, flavoured hydration.</p><p style=\"text-align: start;\"><strong>Eco-Friendly Materials and Recyclability</strong></p><p style=\"text-align: start;\">Sustainability is at the heart of the EcoPure brand. Each water bottle is crafted using 100% recyclable materials, from the stainless steel body to the food-grade silicone leak-proof lid. By choosing EcoPure, consumers reduce their reliance on single-use plastics, helping to keep our rivers and oceans cleaner. Our bottles are not just reusable but also built to last for years, further minimizing environmental footprint.</p><p style=\"text-align: start;\">For environmentally conscious exporters and e-commerce businesses, EcoPure Water Bottles align perfectly with growing consumer demand for sustainable goods. Our minimalist and recyclable packaging also reduces waste during shipping and handling, supporting greener supply chains.</p><p style=\"text-align: start;\"><strong>Safe, Healthy, and Odor-Free</strong></p><p style=\"text-align: start;\">EcoPure Water Bottles are rigorously tested to ensure safety for daily use. The interior does not retain flavors or odors, so every refill is as pure as the first. Unlike plastic bottles, our stainless steel material is free from harmful chemicals, ensuring your drinks stay fresh and uncontaminated. The food-safe, BPA-free lid with a silicone gasket prevents leaks and spills, making it easy to carry in bags or backpacks without worry.</p><p style=\"text-align: start;\"><strong>Designed for Global Appeal</strong></p><p style=\"text-align: start;\">We understand that international shoppers seek products that combine style and practicality. The EcoPure Water Bottle is available in a range of fashionable colors and sizes, from a compact 350ml version for kids to a large 1L bottle for athletes. Custom logo printing offers additional branding opportunities for corporate gifts or promotional campaigns.</p><p style=\"text-align: start;\">Through our dedicated e-commerce platform, we provide seamless purchasing experiences for customers around the globe. With multilingual customer service, secure payment options, and worldwide shipping, international buyers can easily enjoy the EcoPure difference.</p><p style=\"text-align: start;\"><strong>Easy Care and Maintenance</strong></p><p style=\"text-align: start;\">Maintaining your EcoPure Water Bottle is effortless. The wide mouth design allows for easy handwashing, and the bottle is dishwasher-safe for added convenience. Each purchase includes a detailed care guide to ensure optimal bottle longevity and hygiene.</p><p style=\"text-align: start;\"><strong>Commitment to Social Responsibility</strong></p><p style=\"text-align: start;\">EcoPure is not only invested in environmental sustainability but also in making a positive social impact. A portion of our profits supports clean water initiatives in underserved communities. By purchasing an EcoPure Water Bottle, customers contribute to safe drinking water projects worldwide.</p><p style=\"text-align: start;\"><strong>Endorsements and Customer Reviews</strong></p><p style=\"text-align: start;\">The EcoPure Water Bottle has already gained positive reviews from outdoor enthusiasts, athletes, students, and families. Customers praise its ability to keep drinks at the perfect temperature, its lightweight portability, and the stylish designs that suit every personality.</p>', '', '0', '2025-04-24 10:42:13.689086', 0, 3, 43, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', '');
INSERT INTO `b_thing` VALUES (39, 'Dreamy Nights Dog My Nights Duvet', '1745462544431.jpg#1745891764973.jpg', '<p style=\"text-align: start;\">The EcoPure Water Bottle stands out due to its thoughtfully engineered design. With a sleek and modern silhouette, this bottle fits comfortably in hand, backpack side pockets, or car cup holders. Made from high-grade, BPA-free stainless steel, it guarantees durability and resistance to rust and stains. Whether you’re heading to the office, gym, school, or embarking on a weekend hike, the EcoPure Water Bottle is your reliable hydration companion.</p><p style=\"text-align: start;\">A unique double-walled vacuum insulation technology keeps beverages cold for up to 24 hours or hot for up to 12 hours. Busy commuters and students can enjoy ice-cold water all day or sip hot coffee during early morning classes. The wide-mouth opening enables effortless cleaning and allows you to easily add ice or fruit slices for fresh, flavoured hydration.</p><p style=\"text-align: start;\"><strong>Eco-Friendly Materials and Recyclability</strong></p><p style=\"text-align: start;\">Sustainability is at the heart of the EcoPure brand. Each water bottle is crafted using 100% recyclable materials, from the stainless steel body to the food-grade silicone leak-proof lid. By choosing EcoPure, consumers reduce their reliance on single-use plastics, helping to keep our rivers and oceans cleaner. Our bottles are not just reusable but also built to last for years, further minimizing environmental footprint.</p><p style=\"text-align: start;\">For environmentally conscious exporters and e-commerce businesses, EcoPure Water Bottles align perfectly with growing consumer demand for sustainable goods. Our minimalist and recyclable packaging also reduces waste during shipping and handling, supporting greener supply chains.</p><p style=\"text-align: start;\"><strong>Safe, Healthy, and Odor-Free</strong></p><p style=\"text-align: start;\">EcoPure Water Bottles are rigorously tested to ensure safety for daily use. The interior does not retain flavors or odors, so every refill is as pure as the first. Unlike plastic bottles, our stainless steel material is free from harmful chemicals, ensuring your drinks stay fresh and uncontaminated. The food-safe, BPA-free lid with a silicone gasket prevents leaks and spills, making it easy to carry in bags or backpacks without worry.</p><p style=\"text-align: start;\"><strong>Designed for Global Appeal</strong></p><p style=\"text-align: start;\">We understand that international shoppers seek products that combine style and practicality. The EcoPure Water Bottle is available in a range of fashionable colors and sizes, from a compact 350ml version for kids to a large 1L bottle for athletes. Custom logo printing offers additional branding opportunities for corporate gifts or promotional campaigns.</p><p style=\"text-align: start;\">Through our dedicated e-commerce platform, we provide seamless purchasing experiences for customers around the globe. With multilingual customer service, secure payment options, and worldwide shipping, international buyers can easily enjoy the EcoPure difference.</p><p style=\"text-align: start;\"><strong>Easy Care and Maintenance</strong></p><p style=\"text-align: start;\">Maintaining your EcoPure Water Bottle is effortless. The wide mouth design allows for easy handwashing, and the bottle is dishwasher-safe for added convenience. Each purchase includes a detailed care guide to ensure optimal bottle longevity and hygiene.</p><p style=\"text-align: start;\"><strong>Commitment to Social Responsibility</strong></p><p style=\"text-align: start;\">EcoPure is not only invested in environmental sustainability but also in making a positive social impact. A portion of our profits supports clean water initiatives in underserved communities. By purchasing an EcoPure Water Bottle, customers contribute to safe drinking water projects worldwide.</p><p style=\"text-align: start;\"><strong>Endorsements and Customer Reviews</strong></p><p style=\"text-align: start;\">The EcoPure Water Bottle has already gained positive reviews from outdoor enthusiasts, athletes, students, and families. Customers praise its ability to keep drinks at the perfect temperature, its lightweight portability, and the stylish designs that suit every personality.</p>', '$158.00', '0', '2025-04-24 10:42:25.275677', 0, 3, 45, 'Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', 'Test Active Venture', 'test', 'Test Active Venture', '[{\"name\":\"Height\",\"value\":\"19cm\"},{\"name\":\"Weight\",\"value\":\"0.25kg\"},{\"name\":\"Color\",\"value\":\"Light\"}]', 'Recommend,Feature');
INSERT INTO `b_thing` VALUES (41, '测试商品测试商品测试商品测试商品测试商品', '1748226242704.jpeg', '<p style=\"text-align: start;\">A unique double-walled vacuum insulation technology keeps beverages cold for up to 24 hours or hot for up to 12 hours. Busy commuters and students can enjoy ice-cold water all day or sip hot coffee during early morning classes. The wide-mouth opening enables effortless cleaning and allows you to easily add ice or fruit slices for fresh, flavoured hydration.</p><p style=\"text-align: start;\"><strong>Eco-Friendly Materials and Recyclability</strong></p><p style=\"text-align: start;\">Sustainability is at the heart of the EcoPure brand. Each water bottle is crafted using 100% recyclable materials, from the stainless steel body to the food-grade silicone leak-proof lid. By choosing EcoPure, consumers reduce their reliance on single-use plastics, helping to keep our rivers and oceans cleaner. Our bottles are not just reusable but also built to last for years, further minimizing environmental footprint.</p><p style=\"text-align: start;\">For environmentally conscious exporters and e-commerce businesses, EcoPure Water Bottles align perfectly with growing consumer demand for sustainable goods. Our minimalist and recyclable packaging also reduces waste during shipping and handling, supporting greener supply chains.</p><p style=\"text-align: start;\"><strong>Safe, Healthy, and Odor-Free</strong></p><p style=\"text-align: start;\">EcoPure Water Bottles are rigorously tested to ensure safety for daily use. The interior does not retain flavors or odors, so every refill is as pure as the first. Unlike plastic bottles, our stainless steel material is free from harmful chemicals, ensuring your drinks stay fresh and uncontaminated. The food-safe, BPA-free lid with a silicone gasket prevents leaks and spills, making it easy to carry in bags or backpacks without worry.</p><p style=\"text-align: start;\"><strong>Designed for Global Appeal</strong></p><p style=\"text-align: start;\">We understand that international shoppers seek products that combine style and practicality. The EcoPure Water Bottle is available in a range of fashionable colors and sizes, from a compact 350ml version for kids to a large 1L bottle for athletes. Custom logo printing offers additional branding opportunities for corporate gifts or promotional campaigns.</p><p style=\"text-align: start;\">Through our dedicated e-commerce platform, we provide seamless purchasing experiences for customers around the globe. With multilingual customer service, secure payment options, and worldwide shipping, international buyers can easily enjoy the EcoPure difference.</p>', '$90', '0', '2025-05-26 10:24:05.766496', 0, 3, 40, 'This is remark. Discover a perfect blend of quality, innovation, and value with our latest product, designed to enhance your daily life. Carefully crafted using premium materials, it offers outstanding performance, reliability, and durability. Its user-friendly features ensure easy operation for both beginners and experts, making it an ideal choice for homes, offices, and on-the-go lifestyles. The contemporary design seamlessly integrates with any environment.', '', '', '', '', '');
-- ----------------------------
-- Table structure for b_user
-- ----------------------------
DROP TABLE IF EXISTS `b_user`;
CREATE TABLE `b_user` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`role` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`nickname` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`mobile` varchar(13) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`create_time` datetime(6) NULL DEFAULT NULL,
`admin_token` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`token` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`exp` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 21 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of b_user
-- ----------------------------
INSERT INTO `b_user` VALUES (15, 'admin111', 'c0ce70cfec1aacd2837c491aea1f5e72', '1', '0', NULL, NULL, NULL, NULL, '2025-03-27 10:41:47.208154', 'be73dc828dd0a29015f46826be353de4', NULL, '1750210254545');
INSERT INTO `b_user` VALUES (17, 'test', 'd1b7fa61d8078d10dd59f70bb526c04c', '3', '0', NULL, NULL, NULL, NULL, '2025-04-30 10:00:48.252369', 'c85d5dc35ea03d20ebfcf50ff08d8ed3', NULL, '1747230024341');
INSERT INTO `b_user` VALUES (19, 'test2', 'af9a925e89c33993213aa983af348a7b', '3', '0', NULL, NULL, NULL, NULL, '2025-06-10 10:04:58.603713', NULL, NULL, NULL);
INSERT INTO `b_user` VALUES (20, 'admin', 'bbe926801b93618cbe1548684a3de3f9', '1', '0', NULL, NULL, NULL, NULL, '2025-06-10 10:05:30.228003', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for django_admin_log
-- ----------------------------
DROP TABLE IF EXISTS `django_admin_log`;
CREATE TABLE `django_admin_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`action_time` datetime(6) NOT NULL,
`object_id` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`object_repr` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`action_flag` smallint(5) UNSIGNED NOT NULL,
`change_message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`content_type_id` int(11) NULL DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `django_admin_log_content_type_id_c4bce8eb_fk_django_co`(`content_type_id`) USING BTREE,
INDEX `django_admin_log_user_id_c564eba6_fk_auth_user_id`(`user_id`) USING BTREE,
CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of django_admin_log
-- ----------------------------
-- ----------------------------
-- Table structure for django_content_type
-- ----------------------------
DROP TABLE IF EXISTS `django_content_type`;
CREATE TABLE `django_content_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`model` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `django_content_type_app_label_model_76bd3d3b_uniq`(`app_label`, `model`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 25 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of django_content_type
-- ----------------------------
INSERT INTO `django_content_type` VALUES (1, 'admin', 'logentry');
INSERT INTO `django_content_type` VALUES (3, 'auth', 'group');
INSERT INTO `django_content_type` VALUES (2, 'auth', 'permission');
INSERT INTO `django_content_type` VALUES (4, 'auth', 'user');
INSERT INTO `django_content_type` VALUES (5, 'contenttypes', 'contenttype');
INSERT INTO `django_content_type` VALUES (23, 'myapp', 'about');
INSERT INTO `django_content_type` VALUES (24, 'myapp', 'advantage');
INSERT INTO `django_content_type` VALUES (21, 'myapp', 'basicadditional');
INSERT INTO `django_content_type` VALUES (19, 'myapp', 'basicbanner');
INSERT INTO `django_content_type` VALUES (20, 'myapp', 'basicglobal');
INSERT INTO `django_content_type` VALUES (17, 'myapp', 'basicsite');
INSERT INTO `django_content_type` VALUES (18, 'myapp', 'basictdk');
INSERT INTO `django_content_type` VALUES (13, 'myapp', 'case');
INSERT INTO `django_content_type` VALUES (7, 'myapp', 'category');
INSERT INTO `django_content_type` VALUES (22, 'myapp', 'comment');
INSERT INTO `django_content_type` VALUES (16, 'myapp', 'download');
INSERT INTO `django_content_type` VALUES (8, 'myapp', 'errorlog');
INSERT INTO `django_content_type` VALUES (14, 'myapp', 'faq');
INSERT INTO `django_content_type` VALUES (15, 'myapp', 'inquiry');
INSERT INTO `django_content_type` VALUES (12, 'myapp', 'news');
INSERT INTO `django_content_type` VALUES (9, 'myapp', 'oplog');
INSERT INTO `django_content_type` VALUES (11, 'myapp', 'thing');
INSERT INTO `django_content_type` VALUES (10, 'myapp', 'user');
INSERT INTO `django_content_type` VALUES (6, 'sessions', 'session');
-- ----------------------------
-- Table structure for django_migrations
-- ----------------------------
DROP TABLE IF EXISTS `django_migrations`;
CREATE TABLE `django_migrations` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 61 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of django_migrations
-- ----------------------------
INSERT INTO `django_migrations` VALUES (1, 'contenttypes', '0001_initial', '2025-04-30 22:13:58.544764');
INSERT INTO `django_migrations` VALUES (2, 'auth', '0001_initial', '2025-04-30 22:13:59.278789');
INSERT INTO `django_migrations` VALUES (3, 'admin', '0001_initial', '2025-04-30 22:13:59.420616');
INSERT INTO `django_migrations` VALUES (4, 'admin', '0002_logentry_remove_auto_add', '2025-04-30 22:13:59.437161');
INSERT INTO `django_migrations` VALUES (5, 'admin', '0003_logentry_add_action_flag_choices', '2025-04-30 22:13:59.452479');
INSERT INTO `django_migrations` VALUES (6, 'contenttypes', '0002_remove_content_type_name', '2025-04-30 22:13:59.578979');
INSERT INTO `django_migrations` VALUES (7, 'auth', '0002_alter_permission_name_max_length', '2025-04-30 22:13:59.647412');
INSERT INTO `django_migrations` VALUES (8, 'auth', '0003_alter_user_email_max_length', '2025-04-30 22:13:59.676859');
INSERT INTO `django_migrations` VALUES (9, 'auth', '0004_alter_user_username_opts', '2025-04-30 22:13:59.693862');
INSERT INTO `django_migrations` VALUES (10, 'auth', '0005_alter_user_last_login_null', '2025-04-30 22:13:59.776486');
INSERT INTO `django_migrations` VALUES (11, 'auth', '0006_require_contenttypes_0002', '2025-04-30 22:13:59.785488');
INSERT INTO `django_migrations` VALUES (12, 'auth', '0007_alter_validators_add_error_messages', '2025-04-30 22:13:59.804846');
INSERT INTO `django_migrations` VALUES (13, 'auth', '0008_alter_user_username_max_length', '2025-04-30 22:13:59.886927');
INSERT INTO `django_migrations` VALUES (14, 'auth', '0009_alter_user_last_name_max_length', '2025-04-30 22:13:59.979361');
INSERT INTO `django_migrations` VALUES (15, 'auth', '0010_alter_group_name_max_length', '2025-04-30 22:14:00.021384');
INSERT INTO `django_migrations` VALUES (16, 'auth', '0011_update_proxy_permissions', '2025-04-30 22:14:00.039909');
INSERT INTO `django_migrations` VALUES (17, 'auth', '0012_alter_user_first_name_max_length', '2025-04-30 22:14:00.116771');
INSERT INTO `django_migrations` VALUES (18, 'myapp', '0001_initial', '2025-04-30 22:14:00.704572');
INSERT INTO `django_migrations` VALUES (19, 'myapp', '0002_category_sort', '2025-04-30 22:14:00.804494');
INSERT INTO `django_migrations` VALUES (20, 'myapp', '0003_user_exp', '2025-04-30 22:14:00.888518');
INSERT INTO `django_migrations` VALUES (21, 'myapp', '0004_alter_category_pid', '2025-04-30 22:14:00.966845');
INSERT INTO `django_migrations` VALUES (22, 'myapp', '0005_auto_20250314_1613', '2025-04-30 22:14:00.990854');
INSERT INTO `django_migrations` VALUES (23, 'myapp', '0006_thing_summary', '2025-04-30 22:14:01.060240');
INSERT INTO `django_migrations` VALUES (24, 'myapp', '0007_auto_20250315_1451', '2025-04-30 22:14:01.236073');
INSERT INTO `django_migrations` VALUES (25, 'myapp', '0008_thing_properties', '2025-04-30 22:14:01.359498');
INSERT INTO `django_migrations` VALUES (26, 'myapp', '0009_alter_thing_properties', '2025-04-30 22:14:01.432502');
INSERT INTO `django_migrations` VALUES (27, 'myapp', '0010_alter_thing_category', '2025-04-30 22:14:01.448383');
INSERT INTO `django_migrations` VALUES (28, 'myapp', '0011_news', '2025-04-30 22:14:01.658495');
INSERT INTO `django_migrations` VALUES (29, 'myapp', '0012_case', '2025-04-30 22:14:01.802254');
INSERT INTO `django_migrations` VALUES (30, 'myapp', '0013_faq', '2025-04-30 22:14:01.909456');
INSERT INTO `django_migrations` VALUES (31, 'myapp', '0014_inquiry', '2025-04-30 22:14:02.047838');
INSERT INTO `django_migrations` VALUES (32, 'myapp', '0015_download', '2025-04-30 22:14:02.178160');
INSERT INTO `django_migrations` VALUES (33, 'myapp', '0016_download_link', '2025-04-30 22:14:02.275678');
INSERT INTO `django_migrations` VALUES (34, 'myapp', '0017_basicsite', '2025-04-30 22:14:02.405137');
INSERT INTO `django_migrations` VALUES (35, 'myapp', '0018_alter_basicsite_id', '2025-04-30 22:14:02.418157');
INSERT INTO `django_migrations` VALUES (36, 'myapp', '0019_alter_basicsite_id', '2025-04-30 22:14:02.431480');
INSERT INTO `django_migrations` VALUES (37, 'myapp', '0020_basictdk', '2025-04-30 22:14:02.702286');
INSERT INTO `django_migrations` VALUES (38, 'myapp', '0021_basicbanner', '2025-04-30 22:14:02.870631');
INSERT INTO `django_migrations` VALUES (39, 'myapp', '0022_basicglobal', '2025-04-30 22:14:03.004314');
INSERT INTO `django_migrations` VALUES (40, 'myapp', '0023_basicglobal_global_wechat_qrcode', '2025-04-30 22:14:03.105577');
INSERT INTO `django_migrations` VALUES (41, 'myapp', '0024_basicadditional', '2025-04-30 22:14:03.294999');
INSERT INTO `django_migrations` VALUES (42, 'myapp', '0025_comment', '2025-04-30 22:14:03.409223');
INSERT INTO `django_migrations` VALUES (43, 'myapp', '0026_inquiry_ip', '2025-04-30 22:14:03.482646');
INSERT INTO `django_migrations` VALUES (44, 'myapp', '0027_about', '2025-04-30 22:14:03.563242');
INSERT INTO `django_migrations` VALUES (45, 'myapp', '0028_oplog_re_time', '2025-04-30 22:14:03.608550');
INSERT INTO `django_migrations` VALUES (46, 'myapp', '0029_auto_20250327_1504', '2025-04-30 22:14:04.076434');
INSERT INTO `django_migrations` VALUES (47, 'myapp', '0030_auto_20250327_1512', '2025-04-30 22:14:04.553940');
INSERT INTO `django_migrations` VALUES (48, 'myapp', '0031_alter_basicsite_status', '2025-04-30 22:14:04.660452');
INSERT INTO `django_migrations` VALUES (49, 'myapp', '0032_case_client', '2025-04-30 22:14:04.770168');
INSERT INTO `django_migrations` VALUES (50, 'myapp', '0033_auto_20250419_1456', '2025-04-30 22:14:04.973596');
INSERT INTO `django_migrations` VALUES (51, 'myapp', '0034_advantage', '2025-04-30 22:14:05.063668');
INSERT INTO `django_migrations` VALUES (52, 'myapp', '0035_basicadditional_global_addition_contact_image', '2025-04-30 22:14:05.148006');
INSERT INTO `django_migrations` VALUES (53, 'myapp', '0036_comment_comment_cover', '2025-04-30 22:14:05.246296');
INSERT INTO `django_migrations` VALUES (54, 'myapp', '0037_thing_dimension', '2025-04-30 22:14:05.319160');
INSERT INTO `django_migrations` VALUES (55, 'myapp', '0038_basicsite_site_gaid', '2025-04-30 22:14:05.387099');
INSERT INTO `django_migrations` VALUES (56, 'myapp', '0039_alter_basicadditional_global_addition_company_image', '2025-04-30 22:14:05.413403');
INSERT INTO `django_migrations` VALUES (57, 'myapp', '0040_auto_20250430_0957', '2025-04-30 22:14:05.788183');
INSERT INTO `django_migrations` VALUES (58, 'sessions', '0001_initial', '2025-04-30 22:14:05.876252');
INSERT INTO `django_migrations` VALUES (59, 'myapp', '0041_auto_20250606_1449', '2025-06-06 14:49:35.008844');
INSERT INTO `django_migrations` VALUES (60, 'myapp', '0042_alter_basicadditional_ext02', '2025-06-07 16:06:21.909162');
-- ----------------------------
-- Table structure for django_session
-- ----------------------------
DROP TABLE IF EXISTS `django_session`;
CREATE TABLE `django_session` (
`session_key` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`session_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`expire_date` datetime(6) NOT NULL,
PRIMARY KEY (`session_key`) USING BTREE,
INDEX `django_session_expire_date_a5c62663`(`expire_date`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of django_session
-- ----------------------------
SET FOREIGN_KEY_CHECKS = 1;