category-data.sql
715 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
SELECT REPLACE(CONCAT('INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (', id, ', ', IFNULL(parent, ''), ', \'', IFNULL(name, ''), '\', \'', IFNULL(name, ''), '\', ', IFNULL(cate_level, ''), ', \'', IFNULL(pingying, ''), '\', \'', IFNULL(py_initials, ''), '\', \'', IFNULL(path, ''), '\', \'', IFNULL(icon, ''), '\', ', 1, ', \'2017-05-27 23:42:37\', ', '\'2017-05-27 23:42:37\');'), '\'\'', 'NULL') FROM category order by id;
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1, 0, '蔬菜', '蔬菜', 1, 'shucai', 'sc', '1', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2, 1, '白菜类', '白菜类', 2, 'baicailei', 'bcl', '1,2', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (3, 2, '白菜', '白菜', 3, 'baicai', 'bc', '1,2,3', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (4, 3, '普通白菜', '普通白菜', 4, 'putongbaicai', 'ptbc', '1,2,3,4', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (5, 3, '小白菜', '小白菜', 4, 'xiaobaicai', 'xbc', '1,2,3,5', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (6, 3, '麻叶菜', '麻叶菜', 4, 'mayecai', 'myc', '1,2,3,6', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (7, 3, '青口白', '青口白', 4, 'qingkoubai', 'qkb', '1,2,3,7', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (8, 2, '娃娃菜', '娃娃菜', 3, 'wawacai', 'wwc', '1,2,8', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (9, 2, '菜心', '菜心', 3, 'caixin', 'cx', '1,2,9', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (10, 2, '紫白菜', '紫白菜', 3, 'zibaicai', 'zbc', '1,2,10', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (11, 2, '奶白菜', '奶白菜', 3, 'naibaicai', 'nbc', '1,2,11', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (12, 2, '长白菜', '长白菜', 3, 'zhangbaicai', 'zbc', '1,2,12', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (13, 2, '快菜', '快菜', 3, 'kuaicai', 'kc', '1,2,13', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (14, 1, '甘蓝类', '甘蓝类', 2, 'ganlanlei', 'gll', '1,14', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (15, 14, '圆白菜', '圆白菜', 3, 'yuanbaicai', 'ybc', '1,14,15', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (16, 15, '普通圆白菜', '普通圆白菜', 4, 'putongyuanbaicai', 'ptybc', '1,14,15,16', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (17, 15, '牛心菜', '牛心菜', 4, 'niuxincai', 'nxc', '1,14,15,17', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (18, 14, '紫甘蓝', '紫甘蓝', 3, 'ziganlan', 'zgl', '1,14,18', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (19, 14, '菜花', '菜花', 3, 'caihua', 'ch', '1,14,19', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (20, 19, '白菜花', '白菜花', 4, 'baicaihua', 'bch', '1,14,19,20', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (21, 19, '青梗散花', '青梗散花', 4, 'qinggengsanhua', 'qgsh', '1,14,19,21', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (22, 19, '有机菜花', '有机菜花', 4, 'youjicaihua', 'yjch', '1,14,19,22', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (23, 19, '精菜花', '精菜花', 4, 'jingcaihua', 'jch', '1,14,19,23', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (24, 19, '宝塔花', '宝塔花', 4, 'baotahua', 'bth', '1,14,19,24', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (25, 19, '西兰花', '西兰花', 4, 'xilanhua', 'xlh', '1,14,19,25', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (26, 14, '芥蓝', '芥蓝', 3, 'jielan', 'jl', '1,14,26', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (27, 1, '叶菜类', '叶菜类', 2, 'yecailei', 'ycl', '1,27', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (28, 27, '生菜', '生菜', 3, 'shengcai', 'sc', '1,27,28', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (29, 28, '圆生菜', '圆生菜', 4, 'yuanshengcai', 'ysc', '1,27,28,29', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (30, 28, '散叶生菜', '散叶生菜', 4, 'sanyeshengcai', 'sysc', '1,27,28,30', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (31, 28, '花叶生菜', '花叶生菜', 4, 'huayeshengcai', 'hysc', '1,27,28,31', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (32, 28, '罗马生菜', '罗马生菜', 4, 'luomashengcai', 'lmsc', '1,27,28,32', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (33, 28, '紫叶生菜', '紫叶生菜', 4, 'ziyeshengcai', 'zysc', '1,27,28,33', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (34, 28, '西生菜', '西生菜', 4, 'xishengcai', 'xsc', '1,27,28,34', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (35, 27, '菠菜', '菠菜', 3, 'bocai', 'bc', '1,27,35', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (36, 27, '油菜', '油菜', 3, 'youcai', 'yc', '1,27,36', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (37, 36, '小油菜', '小油菜', 4, 'xiaoyoucai', 'xyc', '1,27,36,37', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (38, 36, '大头油菜', '大头油菜', 4, 'datouyoucai', 'dtyc', '1,27,36,38', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (39, 36, '油麦菜', '油麦菜', 4, 'youmaicai', 'ymc', '1,27,36,39', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (40, 36, '鸡毛菜', '鸡毛菜', 4, 'jimaocai', 'jmc', '1,27,36,40', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (41, 36, '盖菜', '盖菜', 4, 'gaicai', 'gc', '1,27,36,41', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (42, 36, '上海青', '上海青', 4, 'shanghaiqing', 'shq', '1,27,36,42', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (43, 36, '菊花菜', '菊花菜', 4, 'juhuacai', 'jhc', '1,27,36,43', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (44, 27, '茼蒿', '茼蒿', 3, 'tonghao', 'th', '1,27,44', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (45, 27, '苋菜', '苋菜', 3, 'xiancai', 'xc', '1,27,45', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (46, 27, '香菜', '香菜', 3, 'xiangcai', 'xc', '1,27,46', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (47, 46, '大叶香菜', '大叶香菜', 4, 'dayexiangcai', 'dyxc', '1,27,46,47', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (48, 46, '小香菜', '小香菜', 4, 'xiaoxiangcai', 'xxc', '1,27,46,48', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (49, 27, '苦菊', '苦菊', 3, 'kuju', 'kj', '1,27,49', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (50, 27, '芝麻菜', '芝麻菜', 3, 'zhimacai', 'zmc', '1,27,50', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (51, 27, '冰草', '冰草', 3, 'bingcao', 'bc', '1,27,51', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (52, 27, '冰菜', '冰菜', 3, 'bingcai', 'bc', '1,27,52', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (53, 27, '菊苣', '菊苣', 3, 'juju', 'jj', '1,27,53', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (54, 27, '珍珠养心菜', '珍珠养心菜', 3, 'zhenzhuyangxincai', 'zzyxc', '1,27,54', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (55, 27, '木耳菜', '木耳菜', 3, 'muercai', 'mec', '1,27,55', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (56, 27, '空心菜', '空心菜', 3, 'kongxincai', 'kxc', '1,27,56', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (57, 27, '茴香', '茴香', 3, 'huixiang', 'hx', '1,27,57', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (58, 27, '芹菜', '芹菜', 3, 'qincai', 'qc', '1,27,58', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (59, 58, '普通芹菜', '普通芹菜', 4, 'putongqincai', 'ptqc', '1,27,58,59', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (60, 58, '香芹', '香芹', 4, 'xiangqin', 'xq', '1,27,58,60', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (61, 58, '西芹', '西芹', 4, 'xiqin', 'xq', '1,27,58,61', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (62, 58, '根芹', '根芹', 4, 'genqin', 'gq', '1,27,58,62', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (63, 58, '山芹', '山芹', 4, 'shanqin', 'sq', '1,27,58,63', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (64, 58, '小芹苗', '小芹苗', 4, 'xiaoqinmiao', 'xqm', '1,27,58,64', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (65, 27, '臭菜', '臭菜', 3, 'choucai', 'cc', '1,27,65', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (66, 27, '塔菜', '塔菜', 3, 'tacai', 'tc', '1,27,66', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (67, 27, '塔花', '塔花', 3, 'tahua', 'th', '1,27,67', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (68, 27, '苏子叶', '苏子叶', 3, 'suziye', 'szy', '1,27,68', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (69, 27, '香茅草', '香茅草', 3, 'xiangmaocao', 'xmc', '1,27,69', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (70, 27, '酸膜叶', '酸膜叶', 3, 'suanmoye', 'smy', '1,27,70', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (71, 27, '薄荷叶', '薄荷叶', 3, 'boheye', 'bhy', '1,27,71', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (72, 27, '紫叶', '紫叶', 3, 'ziye', 'zy', '1,27,72', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (73, 27, '耳菜', '耳菜', 3, 'ercai', 'ec', '1,27,73', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (74, 27, '叶用甜菜', '叶用甜菜', 3, 'yeyongtiancai', 'yytc', '1,27,74', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (75, 27, '雪里红', '雪里红', 3, 'xuelihong', 'xlh', '1,27,75', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (76, 27, '香椿芽', '香椿芽', 3, 'xiangchunya', 'xcy', '1,27,76', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (77, 27, '甜麦菜', '甜麦菜', 3, 'tianmaicai', 'tmc', '1,27,77', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (78, 27, '青梗菜', '青梗菜', 3, 'qinggengcai', 'qgc', '1,27,78', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (79, 27, '黄心菜', '黄心菜', 3, 'huangxincai', 'hxc', '1,27,79', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (80, 27, '番薯叶', '番薯叶', 3, 'fanshuye', 'fsy', '1,27,80', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (81, 27, '菜苔', '菜苔', 3, 'caitai', 'ct', '1,27,81', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (82, 27, '铁苋菜', '铁苋菜', 3, 'tiexiancai', 'txc', '1,27,82', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (83, 27, '山野菜', '山野菜', 3, 'shanyecai', 'syc', '1,27,83', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (84, 27, '三叶菜', '三叶菜', 3, 'sanyecai', 'syc', '1,27,84', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (85, 27, '曲麻菜', '曲麻菜', 3, 'qumacai', 'qmc', '1,27,85', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (86, 27, '紫苏叶', '紫苏叶', 3, 'zisuye', 'zsy', '1,27,86', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (87, 27, '养心菜', '养心菜', 3, 'yangxincai', 'yxc', '1,27,87', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (88, 27, '凤尾菜', '凤尾菜', 3, 'fengweicai', 'fwc', '1,27,88', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (89, 27, '菜胆', '菜胆', 3, 'caidan', 'cd', '1,27,89', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (90, 27, '芦蒿', '芦蒿', 3, 'luhao', 'lh', '1,27,90', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (91, 27, '刺五加', '刺五加', 3, 'ciwujia', 'cwj', '1,27,91', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (92, 27, '柳蒿芽', '柳蒿芽', 3, 'liuhaoya', 'lhy', '1,27,92', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (93, 27, '猴腿菜', '猴腿菜', 3, 'houtuicai', 'htc', '1,27,93', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (94, 27, '刺老芽', '刺老芽', 3, 'cilaoya', 'cly', '1,27,94', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (95, 27, '萝卜菜', '萝卜菜', 3, 'luobucai', 'lbc', '1,27,95', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (96, 27, '白菜叶', '白菜叶', 3, 'baicaiye', 'bcy', '1,27,96', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (97, 1, '根茎类', '根茎类', 2, 'genjinglei', 'gjl', '1,97', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (98, 97, '萝卜', '萝卜', 3, 'luobu', 'lb', '1,97,98', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (99, 98, '胡萝卜', '胡萝卜', 4, 'huluobu', 'hlb', '1,97,98,99', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (100, 98, '黄胡萝卜', '黄胡萝卜', 4, 'huanghuluobu', 'hhlb', '1,97,98,100', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (101, 98, '紫胡萝卜', '紫胡萝卜', 4, 'zihuluobu', 'zhlb', '1,97,98,101', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (102, 98, '青萝卜', '青萝卜', 4, 'qingluobu', 'qlb', '1,97,98,102', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (103, 98, '白萝卜', '白萝卜', 4, 'bailuobu', 'blb', '1,97,98,103', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (104, 98, '红萝卜', '红萝卜', 4, 'hongluobu', 'hlb', '1,97,98,104', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (105, 98, '樱桃萝卜', '樱桃萝卜', 4, 'yingtaoluobu', 'ytlb', '1,97,98,105', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (106, 98, '心里美萝卜', '心里美萝卜', 4, 'xinlimeiluobu', 'xlmlb', '1,97,98,106', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (107, 98, '水果萝卜', '水果萝卜', 4, 'shuiguoluobu', 'sglb', '1,97,98,107', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (108, 98, '地萝卜', '地萝卜', 4, 'diluobu', 'dlb', '1,97,98,108', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (109, 98, '藕片红萝卜', '藕片红萝卜', 4, 'oupianhongluobu', 'ophlb', '1,97,98,109', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (110, 98, '迷你胡萝卜', '迷你胡萝卜', 4, 'minihuluobu', 'mnhlb', '1,97,98,110', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (111, 98, '水晶萝卜', '水晶萝卜', 4, 'shuijingluobu', 'sjlb', '1,97,98,111', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (112, 98, '沙窝萝卜', '沙窝萝卜', 4, 'shawoluobu', 'swlb', '1,97,98,112', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (113, 97, '甜菜根', '甜菜根', 3, 'tiancaigen', 'tcg', '1,97,113', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (114, 97, '榨菜', '榨菜', 3, 'zhacai', 'zc', '1,97,114', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (115, 97, '芥菜', '芥菜', 3, 'jiecai', 'jc', '1,97,115', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (116, 115, '普通芥菜', '普通芥菜', 4, 'putongjiecai', 'ptjc', '1,97,115,116', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (117, 115, '儿菜', '儿菜', 4, 'ercai', 'ec', '1,97,115,117', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (118, 115, '芥菜头', '芥菜头', 4, 'jiecaitou', 'jct', '1,97,115,118', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (119, 115, '茎瘤芥', '茎瘤芥', 4, 'jingliujie', 'jlj', '1,97,115,119', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (120, 115, '抱子芥', '抱子芥', 4, 'baozijie', 'bzj', '1,97,115,120', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (121, 115, '笋子芥', '笋子芥', 4, 'sunzijie', 'szj', '1,97,115,121', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (122, 115, '大头菜', '大头菜', 4, 'datoucai', 'dtc', '1,97,115,122', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (123, 115, '薹芥', '薹芥', 4, 'taijie', 'tj', '1,97,115,123', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (124, 115, '大芥兰', '大芥兰', 4, 'dajielan', 'djl', '1,97,115,124', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (125, 115, '中芥兰', '中芥兰', 4, 'zhongjielan', 'zjl', '1,97,115,125', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (126, 115, '芥兰苗', '芥兰苗', 4, 'jielanmiao', 'jlm', '1,97,115,126', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (127, 115, '芥菜丝', '芥菜丝', 4, 'jiecaisi', 'jcs', '1,97,115,127', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (128, 97, '芜菁', '芜菁', 3, 'wujing', 'wj', '1,97,128', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (129, 97, '苤蓝', '苤蓝', 3, 'pielan', 'pl', '1,97,129', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (130, 97, '牛蒡', '牛蒡', 3, 'niubang', 'nb', '1,97,130', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (131, 130, '菊牛蒡', '菊牛蒡', 4, 'juniubang', 'jnb', '1,97,130,131', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (132, 130, '婆罗门参', '婆罗门参', 4, 'poluomencan', 'plmc', '1,97,130,132', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (133, 97, '山葵', '山葵', 3, 'shankui', 'sk', '1,97,133', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (134, 97, '辣根', '辣根', 3, 'lagen', 'lg', '1,97,134', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (135, 97, '莴笋', '莴笋', 3, 'wosun', 'ws', '1,97,135', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (136, 97, '莴苣', '莴苣', 3, 'woju', 'wj', '1,97,136', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (137, 97, '芦篙', '芦篙', 3, 'lugao', 'lg', '1,97,137', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (138, 97, '皮蜡', '皮蜡', 3, 'pila', 'pl', '1,97,138', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (139, 97, '马铃薯', '马铃薯', 3, 'malingshu', 'mls', '1,97,139', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (140, 139, '新土豆', '新土豆', 4, 'xintudou', 'xtd', '1,97,139,140', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (141, 139, '荷兰土豆', '荷兰土豆', 4, 'helantudou', 'hltd', '1,97,139,141', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (142, 139, '土豆', '土豆', 4, 'tudou', 'td', '1,97,139,142', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (143, 139, '大白', '大白', 4, 'dabai', 'db', '1,97,139,143', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (144, 139, '荷兰七', '荷兰七', 4, 'helanqi', 'hlq', '1,97,139,144', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (145, 139, '八八五', '八八五', 4, 'babawu', 'bbw', '1,97,139,145', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (146, 139, '酱豆', '酱豆', 4, 'jiangdou', 'jd', '1,97,139,146', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (147, 139, '丽暑', '丽暑', 4, 'lishu', 'ls', '1,97,139,147', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (148, 97, '红薯', '红薯', 3, 'hongshu', 'hs', '1,97,148', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (149, 148, '普通红薯', '普通红薯', 4, 'putonghongshu', 'pths', '1,97,148,149', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (150, 148, '龙薯地瓜', '龙薯地瓜', 4, 'longshudigua', 'lsdg', '1,97,148,150', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (151, 148, '206地瓜', '206地瓜', 4, '206digua', '206dg', '1,97,148,151', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (152, 148, '济薯26地瓜', '济薯26地瓜', 4, 'jishu26digua', 'js26dg', '1,97,148,152', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (153, 148, '西瓜红地瓜', '西瓜红地瓜', 4, 'xiguahongdigua', 'xghdg', '1,97,148,153', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (154, 148, '白瓤地瓜', '白瓤地瓜', 4, 'bairangdigua', 'brdg', '1,97,148,154', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (155, 148, '红瓤地瓜', '红瓤地瓜', 4, 'hongrangdigua', 'hrdg', '1,97,148,155', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (156, 97, '紫薯', '紫薯', 3, 'zishu', 'zs', '1,97,156', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (157, 97, '木薯', '木薯', 3, 'mushu', 'ms', '1,97,157', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (158, 97, '豆薯', '豆薯', 3, 'doushu', 'ds', '1,97,158', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (159, 97, '毛薯', '毛薯', 3, 'maoshu', 'ms', '1,97,159', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (160, 97, '姜薯', '姜薯', 3, 'jiangshu', 'js', '1,97,160', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (161, 97, '糯米薯', '糯米薯', 3, 'nuomishu', 'nms', '1,97,161', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (162, 97, '山药', '山药', 3, 'shanyao', 'sy', '1,97,162', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (163, 162, '普通山药', '普通山药', 4, 'putongshanyao', 'ptsy', '1,97,162,163', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (164, 162, '铁棍山药', '铁棍山药', 4, 'tiegunshanyao', 'tgsy', '1,97,162,164', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (165, 162, '山药豆', '山药豆', 4, 'shanyaodou', 'syd', '1,97,162,165', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (166, 162, '白玉山药', '白玉山药', 4, 'baiyushanyao', 'bysy', '1,97,162,166', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (167, 162, '淮山药', '淮山药', 4, 'huaishanyao', 'hsy', '1,97,162,167', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (168, 97, '芋头', '芋头', 3, 'yutou', 'yt', '1,97,168', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (169, 168, '普通芋头', '普通芋头', 4, 'putongyutou', 'ptyt', '1,97,168,169', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (170, 168, '小芋头', '小芋头', 4, 'xiaoyutou', 'xyt', '1,97,168,170', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (171, 168, '毛芋头', '毛芋头', 4, 'maoyutou', 'myt', '1,97,168,171', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (172, 168, '菊芋', '菊芋', 4, 'juyu', 'jy', '1,97,168,172', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (173, 168, '竹芋', '竹芋', 4, 'zhuyu', 'zy', '1,97,168,173', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (174, 168, '魔芋', '魔芋', 4, 'moyu', 'my', '1,97,168,174', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (175, 168, '蕉芋', '蕉芋', 4, 'jiaoyu', 'jy', '1,97,168,175', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (176, 168, '香芋', '香芋', 4, 'xiangyu', 'xy', '1,97,168,176', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (177, 97, '葛根', '葛根', 3, 'gegen', 'gg', '1,97,177', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (178, 177, '葛根干', '葛根干', 4, 'gegengan', 'ggg', '1,97,177,178', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (179, 97, '甘露', '甘露', 3, 'ganlu', 'gl', '1,97,179', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (180, 97, '螺丝菜', '螺丝菜', 3, 'luosicai', 'lsc', '1,97,180', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (181, 97, '盘菜', '盘菜', 3, 'pancai', 'pc', '1,97,181', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (182, 97, '棒菜', '棒菜', 3, 'bangcai', 'bc', '1,97,182', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (183, 97, '银条菜', '银条菜', 3, 'yintiaocai', 'ytc', '1,97,183', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (184, 97, '羊角菜', '羊角菜', 3, 'yangjiaocai', 'yjc', '1,97,184', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (185, 1, '茄果类', '茄果类', 2, 'qieguolei', 'qgl', '1,185', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (186, 185, '茄子', '茄子', 3, 'qiezi', 'qz', '1,185,186', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (187, 186, '圆茄', '圆茄', 4, 'yuanqie', 'yq', '1,185,186,187', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (188, 186, '长茄', '长茄', 4, 'zhangqie', 'zq', '1,185,186,188', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (189, 186, '小黑茄子', '小黑茄子', 4, 'xiaoheiqiezi', 'xhqz', '1,185,186,189', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (190, 186, '广茄', '广茄', 4, 'guangqie', 'gq', '1,185,186,190', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (191, 186, '杭茄', '杭茄', 4, 'hangqie', 'hq', '1,185,186,191', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (192, 186, '不立卡茄子', '不立卡茄子', 4, 'bulikaqiezi', 'blkqz', '1,185,186,192', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (193, 186, '矮茄', '矮茄', 4, 'aiqie', 'aq', '1,185,186,193', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (194, 186, '绿茄', '绿茄', 4, 'lvqie', 'lq', '1,185,186,194', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (195, 186, '线茄', '线茄', 4, 'xianqie', 'xq', '1,185,186,195', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (196, 186, '花茄', '花茄', 4, 'huaqie', 'hq', '1,185,186,196', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (197, 186, '紫丽人', '紫丽人', 4, 'ziliren', 'zlr', '1,185,186,197', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (198, 186, '面包茄子', '面包茄子', 4, 'mianbaoqiezi', 'mbqz', '1,185,186,198', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (199, 186, '大龙茄', '大龙茄', 4, 'dalongqie', 'dlq', '1,185,186,199', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (200, 186, '茄王', '茄王', 4, 'qiewang', 'qw', '1,185,186,200', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (201, 186, '茄子次品', '茄子次品', 4, 'qiezicipin', 'qzcp', '1,185,186,201', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (202, 186, '茄子头', '茄子头', 4, 'qiezitou', 'qzt', '1,185,186,202', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (203, 185, '番茄', '番茄', 3, 'fanqie', 'fq', '1,185,203', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (204, 203, '西红柿', '西红柿', 4, 'xihongshi', 'xhs', '1,185,203,204', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (205, 203, '树番茄', '树番茄', 4, 'shufanqie', 'sfq', '1,185,203,205', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (206, 203, '普通圣女果', '普通圣女果', 4, 'putongshengnvguo', 'ptsng', '1,185,203,206', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (207, 203, '黄圣女果', '黄圣女果', 4, 'huangshengnvguo', 'hsng', '1,185,203,207', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (208, 203, '红圣女果', '红圣女果', 4, 'hongshengnvguo', 'hsng', '1,185,203,208', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (209, 203, '珍珠圣女果', '珍珠圣女果', 4, 'zhenzhushengnvguo', 'zzsng', '1,185,203,209', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (210, 203, '小黄柿子', '小黄柿子', 4, 'xiaohuangshizi', 'xhsz', '1,185,203,210', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (211, 203, '小红柿子', '小红柿子', 4, 'xiaohongshizi', 'xhsz', '1,185,203,211', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (212, 203, '萝蔓西红柿', '萝蔓西红柿', 4, 'luomanxihongshi', 'lmxhs', '1,185,203,212', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (213, 203, '串柿子', '串柿子', 4, 'chuanshizi', 'csz', '1,185,203,213', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (214, 203, '毛粉柿子', '毛粉柿子', 4, 'maofenshizi', 'mfsz', '1,185,203,214', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (215, 203, '大红柿子', '大红柿子', 4, 'dahongshizi', 'dhsz', '1,185,203,215', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (216, 203, '板栗柿子', '板栗柿子', 4, 'banlishizi', 'blsz', '1,185,203,216', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (217, 203, '樱桃西红柿', '樱桃西红柿', 4, 'yingtaoxihongshi', 'ytxhs', '1,185,203,217', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (218, 185, '辣椒', '辣椒', 3, 'lajiao', 'lj', '1,185,218', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (219, 218, '树椒', '树椒', 4, 'shujiao', 'sj', '1,185,218,219', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (220, 218, '尖椒', '尖椒', 4, 'jianjiao', 'jj', '1,185,218,220', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (221, 218, '尖椒头', '尖椒头', 4, 'jianjiaotou', 'jjt', '1,185,218,221', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (222, 218, '红尖椒', '红尖椒', 4, 'hongjianjiao', 'hjj', '1,185,218,222', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (223, 218, '青椒', '青椒', 4, 'qingjiao', 'qj', '1,185,218,223', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (224, 218, '薄皮青椒', '薄皮青椒', 4, 'bopiqingjiao', 'bpqj', '1,185,218,224', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (225, 218, '彩椒', '彩椒', 4, 'caijiao', 'cj', '1,185,218,225', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (226, 218, '五彩椒', '五彩椒', 4, 'wucaijiao', 'wcj', '1,185,218,226', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (227, 218, '五彩椒次品', '五彩椒次品', 4, 'wucaijiaocipin', 'wcjcp', '1,185,218,227', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (228, 218, '椒类次品', '椒类次品', 4, 'jiaoleicipin', 'jlcp', '1,185,218,228', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (229, 218, '黄彩椒', '黄彩椒', 4, 'huangcaijiao', 'hcj', '1,185,218,229', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (230, 218, '红彩椒', '红彩椒', 4, 'hongcaijiao', 'hcj', '1,185,218,230', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (231, 218, '螺丝椒', '螺丝椒', 4, 'luosijiao', 'lsj', '1,185,218,231', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (232, 218, '杭椒', '杭椒', 4, 'hangjiao', 'hj', '1,185,218,232', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (233, 218, '柿子椒', '柿子椒', 4, 'shizijiao', 'szj', '1,185,218,233', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (234, 218, '小米辣', '小米辣', 4, 'xiaomila', 'xml', '1,185,218,234', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (235, 218, '苏椒', '苏椒', 4, 'sujiao', 'sj', '1,185,218,235', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (236, 218, '红椒', '红椒', 4, 'hongjiao', 'hj', '1,185,218,236', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (237, 218, '辣妹子', '辣妹子', 4, 'lameizi', 'lmz', '1,185,218,237', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (238, 218, '泡椒', '泡椒', 4, 'paojiao', 'pj', '1,185,218,238', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (239, 218, '麻辣椒', '麻辣椒', 4, 'malajiao', 'mlj', '1,185,218,239', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (240, 218, '美人椒', '美人椒', 4, 'meirenjiao', 'mrj', '1,185,218,240', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (241, 218, '红美人椒', '红美人椒', 4, 'hongmeirenjiao', 'hmrj', '1,185,218,241', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (242, 218, '绿美人椒', '绿美人椒', 4, 'lvmeirenjiao', 'lmrj', '1,185,218,242', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (243, 218, '龙椒', '龙椒', 4, 'longjiao', 'lj', '1,185,218,243', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (244, 218, '泰椒', '泰椒', 4, 'taijiao', 'tj', '1,185,218,244', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (245, 218, '绿泰椒', '绿泰椒', 4, 'lvtaijiao', 'ltj', '1,185,218,245', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (246, 218, '麻椒', '麻椒', 4, 'majiao', 'mj', '1,185,218,246', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (247, 218, '太空椒', '太空椒', 4, 'taikongjiao', 'tkj', '1,185,218,247', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (248, 218, '港椒', '港椒', 4, 'gangjiao', 'gj', '1,185,218,248', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (249, 218, '圆椒', '圆椒', 4, 'yuanjiao', 'yj', '1,185,218,249', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (250, 218, '圆椒头', '圆椒头', 4, 'yuanjiaotou', 'yjt', '1,185,218,250', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (251, 218, '白圆椒', '白圆椒', 4, 'baiyuanjiao', 'byj', '1,185,218,251', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (252, 218, '花泡椒', '花泡椒', 4, 'huapaojiao', 'hpj', '1,185,218,252', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (253, 218, '线椒', '线椒', 4, 'xianjiao', 'xj', '1,185,218,253', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (254, 1, '葱姜蒜类', '葱姜蒜类', 2, 'congjiangsuanlei', 'cjsl', '1,254', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (255, 254, '韭菜', '韭菜', 3, 'jiucai', 'jc', '1,254,255', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (256, 254, '韭苔', '韭苔', 3, 'jiutai', 'jt', '1,254,256', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (257, 254, '韭黄', '韭黄', 3, 'jiuhuang', 'jh', '1,254,257', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (258, 254, '韭菜花', '韭菜花', 3, 'jiucaihua', 'jch', '1,254,258', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (259, 254, '葱类', '葱类', 3, 'conglei', 'cl', '1,254,259', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (260, 259, '大葱', '大葱', 4, 'dacong', 'dc', '1,254,259,260', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (261, 259, '小葱', '小葱', 4, 'xiaocong', 'xc', '1,254,259,261', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (262, 259, '毛葱', '毛葱', 4, 'maocong', 'mc', '1,254,259,262', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (263, 259, '香葱', '香葱', 4, 'xiangcong', 'xc', '1,254,259,263', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (264, 259, '沙葱', '沙葱', 4, 'shacong', 'sc', '1,254,259,264', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (265, 259, '发芽葱', '发芽葱', 4, 'fayacong', 'fyc', '1,254,259,265', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (266, 259, '鸡腿葱', '鸡腿葱', 4, 'jituicong', 'jtc', '1,254,259,266', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (267, 254, '圆葱', '圆葱', 3, 'yuancong', 'yc', '1,254,267', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (268, 267, '普通圆葱', '普通圆葱', 4, 'putongyuancong', 'ptyc', '1,254,267,268', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (269, 267, '紫圆葱', '紫圆葱', 4, 'ziyuancong', 'zyc', '1,254,267,269', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (270, 267, '白圆葱', '白圆葱', 4, 'baiyuancong', 'byc', '1,254,267,270', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (271, 267, '黄圆葱', '黄圆葱', 4, 'huangyuancong', 'hyc', '1,254,267,271', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (272, 267, '红圆葱', '红圆葱', 4, 'hongyuancong', 'hyc', '1,254,267,272', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (273, 267, '圆葱苗', '圆葱苗', 4, 'yuancongmiao', 'ycm', '1,254,267,273', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (274, 254, '姜类', '姜类', 3, 'jianglei', 'jl', '1,254,274', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (275, 274, '生姜', '生姜', 4, 'shengjiang', 'sj', '1,254,274,275', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (276, 274, '沙姜', '沙姜', 4, 'shajiang', 'sj', '1,254,274,276', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (277, 274, '山姜', '山姜', 4, 'shanjiang', 'sj', '1,254,274,277', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (278, 274, '老姜', '老姜', 4, 'laojiang', 'lj', '1,254,274,278', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (279, 274, '南姜', '南姜', 4, 'nanjiang', 'nj', '1,254,274,279', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (280, 254, '蒜类', '蒜类', 3, 'suanlei', 'sl', '1,254,280', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (281, 280, '大蒜', '大蒜', 4, 'dasuan', 'ds', '1,254,280,281', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (282, 280, '独头蒜', '独头蒜', 4, 'dutousuan', 'dts', '1,254,280,282', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (283, 280, '鲜蒜', '鲜蒜', 4, 'xiansuan', 'xs', '1,254,280,283', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (284, 280, '青蒜', '青蒜', 4, 'qingsuan', 'qs', '1,254,280,284', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (285, 280, '蒜瓣', '蒜瓣', 4, 'suanban', 'sb', '1,254,280,285', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (286, 280, '蒜苔', '蒜苔', 4, 'suantai', 'st', '1,254,280,286', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (287, 280, '新蒜苔', '新蒜苔', 4, 'xinsuantai', 'xst', '1,254,280,287', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (288, 280, '藠头', '藠头', 4, 'jiaotou', 'jt', '1,254,280,288', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (289, 280, '蒜黄', '蒜黄', 4, 'suanhuang', 'sh', '1,254,280,289', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (290, 280, '蒜苗', '蒜苗', 4, 'suanmiao', 'sm', '1,254,280,290', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (291, 280, '小根蒜', '小根蒜', 4, 'xiaogensuan', 'xgs', '1,254,280,291', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (292, 1, '瓜菜类', '瓜菜类', 2, 'guacailei', 'gcl', '1,292', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (293, 292, '黄瓜', '黄瓜', 3, 'huanggua', 'hg', '1,292,293', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (294, 293, '普通黄瓜', '普通黄瓜', 4, 'putonghuanggua', 'pthg', '1,292,293,294', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (295, 293, '荷兰黄瓜', '荷兰黄瓜', 4, 'helanhuanggua', 'hlhg', '1,292,293,295', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (296, 293, '旱黄瓜', '旱黄瓜', 4, 'hanhuanggua', 'hhg', '1,292,293,296', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (297, 293, '水黄瓜', '水黄瓜', 4, 'shuihuanggua', 'shg', '1,292,293,297', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (298, 293, '精品小黄瓜', '精品小黄瓜', 4, 'jingpinxiaohuanggua', 'jpxhg', '1,292,293,298', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (299, 293, '小黄瓜', '小黄瓜', 4, 'xiaohuanggua', 'xhg', '1,292,293,299', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (300, 293, '小黄瓜次品', '小黄瓜次品', 4, 'xiaohuangguacipin', 'xhgcp', '1,292,293,300', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (301, 293, '水果黄瓜', '水果黄瓜', 4, 'shuiguohuanggua', 'sghg', '1,292,293,301', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (302, 293, '老黄瓜', '老黄瓜', 4, 'laohuanggua', 'lhg', '1,292,293,302', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (303, 293, '金童', '金童', 4, 'jintong', 'jt', '1,292,293,303', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (304, 293, '玉女', '玉女', 4, 'yunv', 'yn', '1,292,293,304', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (305, 293, '黄瓜头', '黄瓜头', 4, 'huangguatou', 'hgt', '1,292,293,305', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (306, 292, '冬瓜', '冬瓜', 3, 'donggua', 'dg', '1,292,306', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (307, 306, '普通冬瓜', '普通冬瓜', 4, 'putongdonggua', 'ptdg', '1,292,306,307', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (308, 306, '白皮冬瓜', '白皮冬瓜', 4, 'baipidonggua', 'bpdg', '1,292,306,308', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (309, 306, '小冬瓜', '小冬瓜', 4, 'xiaodonggua', 'xdg', '1,292,306,309', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (310, 292, '南瓜', '南瓜', 3, 'nangua', 'ng', '1,292,310', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (311, 310, '普通南瓜', '普通南瓜', 4, 'putongnangua', 'ptng', '1,292,310,311', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (312, 310, '长南瓜', '长南瓜', 4, 'zhangnangua', 'zng', '1,292,310,312', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (313, 310, '红南瓜', '红南瓜', 4, 'hongnangua', 'hng', '1,292,310,313', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (314, 310, '绿南瓜', '绿南瓜', 4, 'lvnangua', 'lng', '1,292,310,314', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (315, 310, '贝贝瓜', '贝贝瓜', 4, 'beibeigua', 'bbg', '1,292,310,315', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (316, 310, '贵族南瓜', '贵族南瓜', 4, 'guizunangua', 'gzng', '1,292,310,316', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (317, 310, '银栗南瓜', '银栗南瓜', 4, 'yinlinangua', 'ylng', '1,292,310,317', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (318, 310, '奶油南瓜', '奶油南瓜', 4, 'naiyounangua', 'nyng', '1,292,310,318', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (319, 310, '新意本南瓜', '新意本南瓜', 4, 'xinyibennangua', 'xybng', '1,292,310,319', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (320, 310, '花南瓜', '花南瓜', 4, 'huanangua', 'hng', '1,292,310,320', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (321, 310, '板栗南瓜', '板栗南瓜', 4, 'banlinangua', 'blng', '1,292,310,321', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (322, 292, '西葫芦', '西葫芦', 3, 'xihulu', 'xhl', '1,292,322', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (323, 322, '普通西葫芦', '普通西葫芦', 4, 'putongxihulu', 'ptxhl', '1,292,322,323', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (324, 322, '香蕉西葫芦', '香蕉西葫芦', 4, 'xiangjiaoxihulu', 'xjxhl', '1,292,322,324', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (325, 322, '葫芦头', '葫芦头', 4, 'hulutou', 'hlt', '1,292,322,325', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (326, 292, '菜瓜', '菜瓜', 3, 'caigua', 'cg', '1,292,326', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (327, 292, '丝瓜', '丝瓜', 3, 'sigua', 'sg', '1,292,327', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (328, 292, '苦瓜', '苦瓜', 3, 'kugua', 'kg', '1,292,328', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (329, 292, '瓠瓜', '瓠瓜', 3, 'hugua', 'hg', '1,292,329', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (330, 292, '佛手瓜', '佛手瓜', 3, 'foshougua', 'fsg', '1,292,330', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (331, 292, '蛇瓜', '蛇瓜', 3, 'shegua', 'sg', '1,292,331', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (332, 292, '金丝搅瓜', '金丝搅瓜', 3, 'jinsijiaogua', 'jsjg', '1,292,332', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (333, 292, '葫芦', '葫芦', 3, 'hulu', 'hl', '1,292,333', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (334, 292, '瓜蒌', '瓜蒌', 3, 'gualou', 'gl', '1,292,334', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (335, 292, '棕笋', '棕笋', 3, 'zongsun', 'zs', '1,292,335', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (336, 292, '倭瓜', '倭瓜', 3, 'wogua', 'wg', '1,292,336', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (337, 292, '角瓜', '角瓜', 3, 'jiaogua', 'jg', '1,292,337', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (338, 292, '棱瓜', '棱瓜', 3, 'lenggua', 'lg', '1,292,338', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (339, 292, '金瓜', '金瓜', 3, 'jingua', 'jg', '1,292,339', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (340, 1, '豆类', '豆类', 2, 'doulei', 'dl', '1,340', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (341, 340, '豌豆荚', '豌豆荚', 3, 'wandoujia', 'wdj', '1,340,341', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (342, 340, '菜豆', '菜豆', 3, 'caidou', 'cd', '1,340,342', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (343, 342, '毛豆', '毛豆', 4, 'maodou', 'md', '1,340,342,343', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (344, 342, '青豆', '青豆', 4, 'qingdou', 'qd', '1,340,342,344', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (345, 342, '刀豆', '刀豆', 4, 'daodou', 'dd', '1,340,342,345', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (346, 342, '扁豆', '扁豆', 4, 'biandou', 'bd', '1,340,342,346', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (347, 342, '白玉豆', '白玉豆', 4, 'baiyudou', 'byd', '1,340,342,347', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (348, 342, '甜蜜豆', '甜蜜豆', 4, 'tianmidou', 'tmd', '1,340,342,348', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (349, 342, '架豆', '架豆', 4, 'jiadou', 'jd', '1,340,342,349', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (350, 342, '架豆王', '架豆王', 4, 'jiadouwang', 'jdw', '1,340,342,350', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (351, 342, '小毛豆', '小毛豆', 4, 'xiaomaodou', 'xmd', '1,340,342,351', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (352, 342, '豇豆', '豇豆', 4, 'jiangdou', 'jd', '1,340,342,352', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (353, 342, '狗爪豆', '狗爪豆', 4, 'gouzhuadou', 'gzd', '1,340,342,353', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (354, 342, '蛇豆', '蛇豆', 4, 'shedou', 'sd', '1,340,342,354', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (355, 342, '四棱豆', '四棱豆', 4, 'silengdou', 'sld', '1,340,342,355', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (356, 342, '龙牙豆', '龙牙豆', 4, 'longyadou', 'lyd', '1,340,342,356', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (357, 340, '豆角', '豆角', 3, 'doujiao', 'dj', '1,340,357', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (358, 357, '长豆角', '长豆角', 4, 'zhangdoujiao', 'zdj', '1,340,357,358', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (359, 357, '棒豆', '棒豆', 4, 'bangdou', 'bd', '1,340,357,359', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (360, 357, '油豆角', '油豆角', 4, 'youdoujiao', 'ydj', '1,340,357,360', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (361, 357, '架豆角', '架豆角', 4, 'jiadoujiao', 'jdj', '1,340,357,361', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (362, 357, '豇豆角', '豇豆角', 4, 'jiangdoujiao', 'jdj', '1,340,357,362', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (363, 357, '扁豆角', '扁豆角', 4, 'biandoujiao', 'bdj', '1,340,357,363', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (364, 357, '四角豆', '四角豆', 4, 'sijiaodou', 'sjd', '1,340,357,364', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (365, 357, '白芸豆', '白芸豆', 4, 'baiyundou', 'byd', '1,340,357,365', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (366, 357, '四季豆', '四季豆', 4, 'sijidou', 'sjd', '1,340,357,366', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (367, 357, '红豆角', '红豆角', 4, 'hongdoujiao', 'hdj', '1,340,357,367', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (368, 357, '花豆', '花豆', 4, 'huadou', 'hd', '1,340,357,368', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (369, 357, '芸豆', '芸豆', 4, 'yundou', 'yd', '1,340,357,369', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (370, 357, '芸豆头', '芸豆头', 4, 'yundoutou', 'ydt', '1,340,357,370', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (371, 357, '豌豆', '豌豆', 4, 'wandou', 'wd', '1,340,357,371', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (372, 357, '荷兰豆', '荷兰豆', 4, 'helandou', 'hld', '1,340,357,372', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (373, 357, '黄金勾', '黄金勾', 4, 'huangjingou', 'hjg', '1,340,357,373', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (374, 357, '翻白眼', '翻白眼', 4, 'fanbaiyan', 'fby', '1,340,357,374', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (375, 357, '猪耳朵菜', '猪耳朵菜', 4, 'zhuerduocai', 'zedc', '1,340,357,375', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (376, 357, '马掌豆', '马掌豆', 4, 'mazhangdou', 'mzd', '1,340,357,376', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (377, 357, '甩袖豆角', '甩袖豆角', 4, 'shuaixiudoujiao', 'sxdj', '1,340,357,377', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (378, 357, '紫花油豆', '紫花油豆', 4, 'zihuayoudou', 'zhyd', '1,340,357,378', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (379, 357, '后弯腰', '后弯腰', 4, 'houwanyao', 'hwy', '1,340,357,379', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (380, 357, '勾勾黄', '勾勾黄', 4, 'gougouhuang', 'ggh', '1,340,357,380', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (381, 1, '水生蔬菜', '水生蔬菜', 2, 'shuishengshucai', 'sssc', '1,381', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (382, 381, '莲藕', '莲藕', 3, 'lianou', 'lo', '1,381,382', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (383, 381, '藕片', '藕片', 3, 'oupian', 'op', '1,381,383', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (384, 381, '茭白', '茭白', 3, 'jiaobai', 'jb', '1,381,384', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (385, 381, '慈姑', '慈姑', 3, 'cigu', 'cg', '1,381,385', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (386, 381, '水芹', '水芹', 3, 'shuiqin', 'sq', '1,381,386', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (387, 381, '荸荠', '荸荠', 3, 'biji', 'bj', '1,381,387', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (388, 381, '菱角', '菱角', 3, 'lingjiao', 'lj', '1,381,388', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (389, 381, '豆瓣菜', '豆瓣菜', 3, 'doubancai', 'dbc', '1,381,389', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (390, 381, '芡实', '芡实', 3, 'qianshi', 'qs', '1,381,390', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (391, 381, '莼菜', '莼菜', 3, 'chuncai', 'cc', '1,381,391', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (392, 381, '蒲菜', '蒲菜', 3, 'pucai', 'pc', '1,381,392', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (393, 381, '菱角米', '菱角米', 3, 'lingjiaomi', 'ljm', '1,381,393', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (394, 381, '藕带', '藕带', 3, 'oudai', 'od', '1,381,394', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (395, 381, '狐尾藻', '狐尾藻', 3, 'huweizao', 'hwz', '1,381,395', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (396, 381, '金鱼藻', '金鱼藻', 3, 'jinyuzao', 'jyz', '1,381,396', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (397, 381, '冰藻参', '冰藻参', 3, 'bingzaocan', 'bzc', '1,381,397', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (398, 381, '芡实杆', '芡实杆', 3, 'qianshigan', 'qsg', '1,381,398', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (399, 381, '海木耳', '海木耳', 3, 'haimuer', 'hme', '1,381,399', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (400, 381, '水蕨菜', '水蕨菜', 3, 'shuijuecai', 'sjc', '1,381,400', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (401, 381, '鲜海带', '鲜海带', 3, 'xianhaidai', 'xhd', '1,381,401', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (402, 1, '多年生蔬菜', '多年生蔬菜', 2, 'duonianshengshucai', 'dnssc', '1,402', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (403, 402, '芦荟', '芦荟', 3, 'luhui', 'lh', '1,402,403', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (404, 402, '笋类', '笋类', 3, 'sunlei', 'sl', '1,402,404', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (405, 404, '竹笋', '竹笋', 4, 'zhusun', 'zs', '1,402,404,405', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (406, 404, '春笋', '春笋', 4, 'chunsun', 'cs', '1,402,404,406', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (407, 404, '冬笋', '冬笋', 4, 'dongsun', 'ds', '1,402,404,407', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (408, 404, '青笋', '青笋', 4, 'qingsun', 'qs', '1,402,404,408', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (409, 404, '甜笋', '甜笋', 4, 'tiansun', 'ts', '1,402,404,409', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (410, 404, '罗汉笋', '罗汉笋', 4, 'luohansun', 'lhs', '1,402,404,410', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (411, 404, '芦笋', '芦笋', 4, 'lusun', 'ls', '1,402,404,411', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (412, 404, '苦笋', '苦笋', 4, 'kusun', 'ks', '1,402,404,412', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (413, 404, '慈笋', '慈笋', 4, 'cisun', 'cs', '1,402,404,413', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (414, 404, '鞭笋', '鞭笋', 4, 'biansun', 'bs', '1,402,404,414', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (415, 402, '紫菜', '紫菜', 3, 'zicai', 'zc', '1,402,415', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (416, 402, '莲蓬', '莲蓬', 3, 'lianpeng', 'lp', '1,402,416', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (417, 402, '黄花菜', '黄花菜', 3, 'huanghuacai', 'hhc', '1,402,417', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (418, 402, '百合', '百合', 3, 'baihe', 'bh', '1,402,418', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (419, 418, '百合干', '百合干', 4, 'baihegan', 'bhg', '1,402,418,419', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (420, 402, '香椿', '香椿', 3, 'xiangchun', 'xc', '1,402,420', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (421, 1, '食用菌', '食用菌', 2, 'shiyongjun', 'syj', '1,421', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (422, 421, '雪榕金针菇', '雪榕金针菇', 3, 'xuerongjinzhengu', 'xrjzg', '1,421,422', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (423, 421, '蘑菇', '蘑菇', 3, 'mogu', 'mg', '1,421,423', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (424, 421, '姬松茸', '姬松茸', 3, 'jisongrong', 'jsr', '1,421,424', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (425, 421, '滑子菇', '滑子菇', 3, 'huazigu', 'hzg', '1,421,425', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (426, 421, '红菇', '红菇', 3, 'honggu', 'hg', '1,421,426', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (427, 421, '鲜香菇', '鲜香菇', 3, 'xianxianggu', 'xxg', '1,421,427', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (428, 421, '鲜蘑', '鲜蘑', 3, 'xianmo', 'xm', '1,421,428', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (429, 421, '松茸', '松茸', 3, 'songrong', 'sr', '1,421,429', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (430, 421, '松露', '松露', 3, 'songlu', 'sl', '1,421,430', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (431, 421, '榛蘑', '榛蘑', 3, 'zhenmo', 'zm', '1,421,431', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (432, 421, '双孢菇', '双孢菇', 3, 'shuangbaogu', 'sbg', '1,421,432', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (433, 421, '滑菇', '滑菇', 3, 'huagu', 'hg', '1,421,433', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (434, 421, '棒菇', '棒菇', 3, 'banggu', 'bg', '1,421,434', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (435, 421, '榆蘑', '榆蘑', 3, 'yumo', 'ym', '1,421,435', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (436, 421, '香菇', '香菇', 3, 'xianggu', 'xg', '1,421,436', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (437, 421, '花菇', '花菇', 3, 'huagu', 'hg', '1,421,437', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (438, 421, '蟹味菇', '蟹味菇', 3, 'xieweigu', 'xwg', '1,421,438', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (439, 421, '海鲜菇', '海鲜菇', 3, 'haixiangu', 'hxg', '1,421,439', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (440, 421, '口蘑', '口蘑', 3, 'koumo', 'km', '1,421,440', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (441, 421, '平菇', '平菇', 3, 'pinggu', 'pg', '1,421,441', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (442, 421, '草菇', '草菇', 3, 'caogu', 'cg', '1,421,442', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (443, 421, '乳菇', '乳菇', 3, 'rugu', 'rg', '1,421,443', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (444, 421, '金针菇', '金针菇', 3, 'jinzhengu', 'jzg', '1,421,444', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (445, 421, '柳钉菇', '柳钉菇', 3, 'liudinggu', 'ldg', '1,421,445', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (446, 421, '茶树菇', '茶树菇', 3, 'chashugu', 'csg', '1,421,446', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (447, 421, '白灵菇', '白灵菇', 3, 'bailinggu', 'blg', '1,421,447', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (448, 421, '杏鲍菇', '杏鲍菇', 3, 'xingbaogu', 'xbg', '1,421,448', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (449, 421, '凤尾菇', '凤尾菇', 3, 'fengweigu', 'fwg', '1,421,449', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (450, 421, '白玉菇', '白玉菇', 3, 'baiyugu', 'byg', '1,421,450', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (451, 421, '虫草菇', '虫草菇', 3, 'chongcaogu', 'ccg', '1,421,451', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (452, 421, '木耳', '木耳', 3, 'muer', 'me', '1,421,452', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (453, 452, '黑木耳', '黑木耳', 4, 'heimuer', 'hme', '1,421,452,453', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (454, 452, '银耳', '银耳', 4, 'yiner', 'ye', '1,421,452,454', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (455, 421, '鸡棕', '鸡棕', 3, 'jizong', 'jz', '1,421,455', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (456, 421, '竹荪', '竹荪', 3, 'zhusun', 'zs', '1,421,456', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (457, 421, '猴头菇', '猴头菇', 3, 'houtougu', 'htg', '1,421,457', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (458, 421, '牛肝菌', '牛肝菌', 3, 'niuganjun', 'ngj', '1,421,458', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (459, 421, '牛舌菌', '牛舌菌', 3, 'niushejun', 'nsj', '1,421,459', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (460, 421, '羊肚菌', '羊肚菌', 3, 'yangdujun', 'ydj', '1,421,460', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (461, 421, '多孔菌', '多孔菌', 3, 'duokongjun', 'dkj', '1,421,461', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (462, 421, '鸡油菌', '鸡油菌', 3, 'jiyoujun', 'jyj', '1,421,462', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (463, 421, '马鞍菌', '马鞍菌', 3, 'maanjun', 'maj', '1,421,463', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (464, 421, '白桦茸', '白桦茸', 3, 'baihuarong', 'bhr', '1,421,464', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (465, 421, '竹燕窝', '竹燕窝', 3, 'zhuyanwo', 'zyw', '1,421,465', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (466, 421, '秀珍菇', '秀珍菇', 3, 'xiuzhengu', 'xzg', '1,421,466', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (467, 421, '松茸干片', '松茸干片', 3, 'songrongganpian', 'srgp', '1,421,467', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (468, 421, '松蘑', '松蘑', 3, 'songmo', 'sm', '1,421,468', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (469, 421, '鸡腿菇', '鸡腿菇', 3, 'jituigu', 'jtg', '1,421,469', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (470, 421, '黄油蘑', '黄油蘑', 3, 'huangyoumo', 'hym', '1,421,470', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (471, 421, '野生菌', '野生菌', 3, 'yeshengjun', 'ysj', '1,421,471', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (472, 421, '鸡枞菌', '鸡枞菌', 3, 'jizongjun', 'jzj', '1,421,472', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (473, 421, '鹿茸菇', '鹿茸菇', 3, 'luronggu', 'lrg', '1,421,473', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (474, 421, '黑皮鸡枞', '黑皮鸡枞', 3, 'heipijizong', 'hpjz', '1,421,474', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (475, 421, '松树菌', '松树菌', 3, 'songshujun', 'ssj', '1,421,475', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (476, 421, '大球盖菇', '大球盖菇', 3, 'daqiugaigu', 'dqgg', '1,421,476', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (477, 421, '金耳', '金耳', 3, 'jiner', 'je', '1,421,477', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (478, 421, '马勃', '马勃', 3, 'mabo', 'mb', '1,421,478', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (479, 421, '松乳菇', '松乳菇', 3, 'songrugu', 'srg', '1,421,479', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (480, 421, '石耳', '石耳', 3, 'shier', 'se', '1,421,480', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (481, 421, '羊肚耳', '羊肚耳', 3, 'yangduer', 'yde', '1,421,481', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (482, 421, '榆耳', '榆耳', 3, 'yuer', 'ye', '1,421,482', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (483, 421, '黑虎掌', '黑虎掌', 3, 'heihuzhang', 'hhz', '1,421,483', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (484, 421, '栗蘑', '栗蘑', 3, 'limo', 'lm', '1,421,484', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (485, 421, '桑黄菌', '桑黄菌', 3, 'sanghuangjun', 'shj', '1,421,485', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (486, 421, '奶浆菌', '奶浆菌', 3, 'naijiangjun', 'njj', '1,421,486', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (487, 421, '干巴菌', '干巴菌', 3, 'ganbajun', 'gbj', '1,421,487', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (488, 421, '铆钉菇', '铆钉菇', 3, 'maodinggu', 'mdg', '1,421,488', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (489, 421, '灵芝菇', '灵芝菇', 3, 'lingzhigu', 'lzg', '1,421,489', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (490, 421, '白参菇', '白参菇', 3, 'baicangu', 'bcg', '1,421,490', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (491, 421, '青冈菌', '青冈菌', 3, 'qinggangjun', 'qgj', '1,421,491', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (492, 421, '硫磺菌', '硫磺菌', 3, 'liuhuangjun', 'lhj', '1,421,492', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (493, 421, '乌米', '乌米', 3, 'wumi', 'wm', '1,421,493', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (494, 421, '白葱菌', '白葱菌', 3, 'baicongjun', 'bcj', '1,421,494', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (495, 421, '青杆菌', '青杆菌', 3, 'qingganjun', 'qgj', '1,421,495', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (496, 421, '老人头菇', '老人头菇', 3, 'laorentougu', 'lrtg', '1,421,496', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (497, 421, '块菌', '块菌', 3, 'kuaijun', 'kj', '1,421,497', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (498, 421, '牛肚菌', '牛肚菌', 3, 'niudujun', 'ndj', '1,421,498', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (499, 421, '喇叭菌', '喇叭菌', 3, 'labajun', 'lbj', '1,421,499', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (500, 421, '榆黄蘑', '榆黄蘑', 3, 'yuhuangmo', 'yhm', '1,421,500', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (501, 1, '其他蔬菜', '其他蔬菜', 2, 'qitashucai', 'qtsc', '1,501', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (502, 501, '鲜玉米', '鲜玉米', 3, 'xianyumi', 'xym', '1,501,502', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (503, 502, '黏玉米', '黏玉米', 4, 'nianyumi', 'nym', '1,501,502,503', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (504, 502, '甜玉米', '甜玉米', 4, 'tianyumi', 'tym', '1,501,502,504', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (505, 502, '糯玉米', '糯玉米', 4, 'nuoyumi', 'nym', '1,501,502,505', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (506, 501, '朝鲜蓟', '朝鲜蓟', 3, 'chaoxianji', 'cxj', '1,501,506', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (507, 501, '秋葵', '秋葵', 3, 'qiukui', 'qk', '1,501,507', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (508, 507, '普通秋葵', '普通秋葵', 4, 'putongqiukui', 'ptqk', '1,501,507,508', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (509, 507, '红秋葵', '红秋葵', 4, 'hongqiukui', 'hqk', '1,501,507,509', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (510, 501, '芽苗菜', '芽苗菜', 3, 'yamiaocai', 'ymc', '1,501,510', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (511, 510, '丝瓜尖', '丝瓜尖', 4, 'siguajian', 'sgj', '1,501,510,511', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (512, 510, '萝卜苗', '萝卜苗', 4, 'luobumiao', 'lbm', '1,501,510,512', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (513, 510, '豆芽', '豆芽', 4, 'douya', 'dy', '1,501,510,513', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (514, 510, '绿豆芽', '绿豆芽', 4, 'lvdouya', 'ldy', '1,501,510,514', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (515, 510, '黄豆芽', '黄豆芽', 4, 'huangdouya', 'hdy', '1,501,510,515', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (516, 510, '香椿苗', '香椿苗', 4, 'xiangchunmiao', 'xcm', '1,501,510,516', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (517, 510, '豌豆尖', '豌豆尖', 4, 'wandoujian', 'wdj', '1,501,510,517', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (518, 510, '松柳芽苗菜', '松柳芽苗菜', 4, 'songliuyamiaocai', 'slymc', '1,501,510,518', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (519, 510, '花椒芽', '花椒芽', 4, 'huajiaoya', 'hjy', '1,501,510,519', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (520, 510, '苜蓿芽', '苜蓿芽', 4, 'muxuya', 'mxy', '1,501,510,520', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (521, 510, '萝卜芽', '萝卜芽', 4, 'luobuya', 'lby', '1,501,510,521', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (522, 510, '莴笋尖', '莴笋尖', 4, 'wosunjian', 'wsj', '1,501,510,522', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (523, 510, '豌豆苗', '豌豆苗', 4, 'wandoumiao', 'wdm', '1,501,510,523', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (524, 510, '空心菜苗', '空心菜苗', 4, 'kongxincaimiao', 'kxcm', '1,501,510,524', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (525, 510, '花生芽', '花生芽', 4, 'huashengya', 'hsy', '1,501,510,525', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (526, 510, '刺龙芽菜', '刺龙芽菜', 4, 'cilongyacai', 'clyc', '1,501,510,526', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (527, 501, '豆青', '豆青', 3, 'douqing', 'dq', '1,501,527', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (528, 501, '鲜花生', '鲜花生', 3, 'xianhuasheng', 'xhs', '1,501,528', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (529, 501, '花生衣', '花生衣', 3, 'huashengyi', 'hsy', '1,501,529', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (530, 501, '婆婆丁', '婆婆丁', 3, 'popoding', 'ppd', '1,501,530', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (531, 501, '海带丝', '海带丝', 3, 'haidaisi', 'hds', '1,501,531', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (532, 501, '迷迭香', '迷迭香', 3, 'midiexiang', 'mdx', '1,501,532', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (533, 501, '虫草花', '虫草花', 3, 'chongcaohua', 'cch', '1,501,533', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (534, 501, '红丁', '红丁', 3, 'hongding', 'hd', '1,501,534', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (535, 501, '三叶香', '三叶香', 3, 'sanyexiang', 'syx', '1,501,535', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (536, 501, '法香', '法香', 3, 'faxiang', 'fx', '1,501,536', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (537, 501, '百里香', '百里香', 3, 'bailixiang', 'blx', '1,501,537', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (538, 501, '荠菜', '荠菜', 3, 'jicai', 'jc', '1,501,538', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (539, 501, '蒲公英', '蒲公英', 3, 'pugongying', 'pgy', '1,501,539', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (540, 501, '萝卜叶', '萝卜叶', 3, 'luobuye', 'lby', '1,501,540', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (541, 501, '蕨菜', '蕨菜', 3, 'juecai', 'jc', '1,501,541', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (542, 501, '刺嫩芽', '刺嫩芽', 3, 'cinenya', 'cny', '1,501,542', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (543, 501, '穿心莲叶', '穿心莲叶', 3, 'chuanxinlianye', 'cxly', '1,501,543', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (544, 501, '白花菜', '白花菜', 3, 'baihuacai', 'bhc', '1,501,544', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (545, 501, '地皮菜', '地皮菜', 3, 'dipicai', 'dpc', '1,501,545', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (546, 501, '槐花', '槐花', 3, 'huaihua', 'hh', '1,501,546', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (547, 501, '龙须菜', '龙须菜', 3, 'longxucai', 'lxc', '1,501,547', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (548, 501, '贡菜', '贡菜', 3, 'gongcai', 'gc', '1,501,548', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (549, 501, '洋荷', '洋荷', 3, 'yanghe', 'yh', '1,501,549', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (550, 501, '阳荷', '阳荷', 3, 'yanghe', 'yh', '1,501,550', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (551, 501, '费菜', '费菜', 3, 'feicai', 'fc', '1,501,551', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (552, 501, '玉米笋', '玉米笋', 3, 'yumisun', 'yms', '1,501,552', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (553, 501, '苦菜', '苦菜', 3, 'kucai', 'kc', '1,501,553', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (554, 501, '桑芽菜', '桑芽菜', 3, 'sangyacai', 'syc', '1,501,554', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (555, 501, '人参菜', '人参菜', 3, 'rencancai', 'rcc', '1,501,555', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (556, 501, '藤三七', '藤三七', 3, 'tengsanqi', 'tsq', '1,501,556', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (557, 501, '面条菜', '面条菜', 3, 'miantiaocai', 'mtc', '1,501,557', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (558, 501, '枸杞叶', '枸杞叶', 3, 'gouqiye', 'gqy', '1,501,558', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (559, 501, '金花菜', '金花菜', 3, 'jinhuacai', 'jhc', '1,501,559', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (560, 501, '马兰头', '马兰头', 3, 'malantou', 'mlt', '1,501,560', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (561, 501, '荨麻草', '荨麻草', 3, 'qianmacao', 'qmc', '1,501,561', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (562, 501, '芝麻叶', '芝麻叶', 3, 'zhimaye', 'zmy', '1,501,562', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (563, 501, '黄瓜花', '黄瓜花', 3, 'huangguahua', 'hgh', '1,501,563', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (564, 501, '紫背天葵', '紫背天葵', 3, 'zibeitiankui', 'zbtk', '1,501,564', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (565, 501, '红薯梗', '红薯梗', 3, 'hongshugeng', 'hsg', '1,501,565', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (566, 501, '薯尖', '薯尖', 3, 'shujian', 'sj', '1,501,566', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (567, 501, '灰灰菜', '灰灰菜', 3, 'huihuicai', 'hhc', '1,501,567', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (568, 501, '甜七', '甜七', 3, 'tianqi', 'tq', '1,501,568', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (569, 501, '辣木叶', '辣木叶', 3, 'lamuye', 'lmy', '1,501,569', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (570, 501, '薇菜', '薇菜', 3, 'weicai', 'wc', '1,501,570', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (571, 501, '芋梗', '芋梗', 3, 'yugeng', 'yg', '1,501,571', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (572, 501, '台湾野莲', '台湾野莲', 3, 'taiwanyelian', 'twyl', '1,501,572', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (573, 501, '帝王菜', '帝王菜', 3, 'diwangcai', 'dwc', '1,501,573', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (574, 501, '榆钱', '榆钱', 3, 'yuqian', 'yq', '1,501,574', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (575, 501, '恰玛古', '恰玛古', 3, 'qiamagu', 'qmg', '1,501,575', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (576, 501, '树仔菜', '树仔菜', 3, 'shuzicai', 'szc', '1,501,576', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (577, 501, '玉兰菜', '玉兰菜', 3, 'yulancai', 'ylc', '1,501,577', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (578, 501, '天绿香', '天绿香', 3, 'tianlvxiang', 'tlx', '1,501,578', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (579, 501, '青瓜花', '青瓜花', 3, 'qingguahua', 'qgh', '1,501,579', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (580, 501, '苕尖', '苕尖', 3, 'tiaojian', 'tj', '1,501,580', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (581, 501, '雪樱子', '雪樱子', 3, 'xueyingzi', 'xyz', '1,501,581', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (582, 501, '血通菜', '血通菜', 3, 'xuetongcai', 'xtc', '1,501,582', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (583, 501, '树花菜', '树花菜', 3, 'shuhuacai', 'shc', '1,501,583', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (584, 501, '树毛衣', '树毛衣', 3, 'shumaoyi', 'smy', '1,501,584', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (585, 501, '南瓜花', '南瓜花', 3, 'nanguahua', 'ngh', '1,501,585', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (586, 501, '象牙菜', '象牙菜', 3, 'xiangyacai', 'xyc', '1,501,586', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (587, 501, '珊瑚藻', '珊瑚藻', 3, 'shanhuzao', 'shz', '1,501,587', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (588, 501, '襄荷', '襄荷', 3, 'xianghe', 'xh', '1,501,588', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (589, 501, '攀枝花', '攀枝花', 3, 'panzhihua', 'pzh', '1,501,589', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (590, 501, '白花野菜', '白花野菜', 3, 'baihuayecai', 'bhyc', '1,501,590', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (591, 501, '珍珠花菜', '珍珠花菜', 3, 'zhenzhuhuacai', 'zzhc', '1,501,591', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (592, 501, '新鲜板蓝根', '新鲜板蓝根', 3, 'xinxianbanlangen', 'xxblg', '1,501,592', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (593, 501, '沙松尖', '沙松尖', 3, 'shasongjian', 'ssj', '1,501,593', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (594, 501, '马苋菜', '马苋菜', 3, 'maxiancai', 'mxc', '1,501,594', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (595, 594, '马齿苋', '马齿苋', 4, 'machixian', 'mcx', '1,501,594,595', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (596, 501, '鲜花椒', '鲜花椒', 3, 'xianhuajiao', 'xhj', '1,501,596', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (597, 501, '鱼腥草', '鱼腥草', 3, 'yuxingcao', 'yxc', '1,501,597', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (598, 501, '粽子叶', '粽子叶', 3, 'zongziye', 'zzy', '1,501,598', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (599, 501, '蚕蛹', '蚕蛹', 3, 'canyong', 'cy', '1,501,599', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (600, 501, '地产菜', '地产菜', 3, 'dichancai', 'dcc', '1,501,600', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (601, 0, '其他商品', '其他商品', 1, 'qitashangpin', 'qtsp', '601', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (602, 601, '五金', '五金', 2, 'wujin', 'wj', '601,602', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (603, 601, '建材', '建材', 2, 'jiancai', 'jc', '601,603', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (604, 601, '家具', '家具', 2, 'jiaju', 'jj', '601,604', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (605, 601, '纺织', '纺织', 2, 'fangzhi', 'fz', '601,605', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (606, 601, '鞋服', '鞋服', 2, 'xiefu', 'xf', '601,606', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (607, 601, '文化', '文化', 2, 'wenhua', 'wh', '601,607', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (608, 601, '图书', '图书', 2, 'tushu', 'ts', '601,608', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (609, 601, '体育', '体育', 2, 'tiyu', 'ty', '601,609', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (610, 601, '音像', '音像', 2, 'yinxiang', 'yx', '601,610', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (611, 601, '预包装商品', '预包装商品', 2, 'yubaozhuangshangpin', 'ybzsp', '601,611', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (612, 601, '包装', '包装', 2, 'baozhuang', 'bz', '601,612', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (613, 612, '苫垫器材', '苫垫器材', 3, 'shandianqicai', 'sdqc', '601,612,613', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (614, 613, '笼子', '笼子', 4, 'longzi', 'lz', '601,612,613,614', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (615, 613, '棉被', '棉被', 4, 'mianbei', 'mb', '601,612,613,615', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (616, 613, '称', '称', 4, 'cheng', 'c', '601,612,613,616', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (617, 612, '冰块', '冰块', 3, 'bingkuai', 'bk', '601,612,617', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (618, 612, '冰瓶', '冰瓶', 3, 'bingping', 'bp', '601,612,618', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (619, 612, '冰瓶1', '冰瓶1', 3, 'bingping1', 'bp1', '601,612,619', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (620, 0, '肉类', '肉类', 1, 'roulei', 'rl', '620', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (621, 620, '猪肉类', '猪肉类', 2, 'zhuroulei', 'zrl', '620,621', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (622, 621, '猪肉', '猪肉', 3, 'zhurou', 'zr', '620,621,622', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (623, 622, '冷鲜肉', '冷鲜肉', 4, 'lengxianrou', 'lxr', '620,621,622,623', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (624, 621, '猪副', '猪副', 3, 'zhufu', 'zf', '620,621,624', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (625, 621, '猪手', '猪手', 3, 'zhushou', 'zs', '620,621,625', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (626, 621, '猪肺头', '猪肺头', 3, 'zhufeitou', 'zft', '620,621,626', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (627, 621, '猪梅肉', '猪梅肉', 3, 'zhumeirou', 'zmr', '620,621,627', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (628, 621, '猪后丘精肉', '猪后丘精肉', 3, 'zhuhouqiujingrou', 'zhqjr', '620,621,628', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (629, 621, '猪上下五花肉', '猪上下五花肉', 3, 'zhushangxiawuhuarou', 'zsxwhr', '620,621,629', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (630, 621, '猪前槽', '猪前槽', 3, 'zhuqiancao', 'zqc', '620,621,630', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (631, 621, '猪后丘', '猪后丘', 3, 'zhuhouqiu', 'zhq', '620,621,631', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (632, 621, '猪里脊', '猪里脊', 3, 'zhuliji', 'zlj', '620,621,632', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (633, 621, '猪骨棒', '猪骨棒', 3, 'zhugubang', 'zgb', '620,621,633', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (634, 621, '猪脊骨', '猪脊骨', 3, 'zhujigu', 'zjg', '620,621,634', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (635, 621, '猪排骨肉', '猪排骨肉', 3, 'zhupaigurou', 'zpgr', '620,621,635', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (636, 621, '猪肘', '猪肘', 3, 'zhuzhou', 'zz', '620,621,636', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (637, 621, '猪排', '猪排', 3, 'zhupai', 'zp', '620,621,637', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (638, 621, '猪月牙骨', '猪月牙骨', 3, 'zhuyueyagu', 'zyyg', '620,621,638', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (639, 621, '猪小里脊', '猪小里脊', 3, 'zhuxiaoliji', 'zxlj', '620,621,639', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (640, 621, '猪肉皮', '猪肉皮', 3, 'zhuroupi', 'zrp', '620,621,640', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (641, 621, '猪五花肉', '猪五花肉', 3, 'zhuwuhuarou', 'zwhr', '620,621,641', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (642, 621, '猪大油', '猪大油', 3, 'zhudayou', 'zdy', '620,621,642', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (643, 621, '猪肥膘', '猪肥膘', 3, 'zhufeibiao', 'zfb', '620,621,643', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (644, 621, '猪头', '猪头', 3, 'zhutou', 'zt', '620,621,644', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (645, 621, '猪肋排', '猪肋排', 3, 'zhuleipai', 'zlp', '620,621,645', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (646, 621, '猪肉馅', '猪肉馅', 3, 'zhurouxian', 'zrx', '620,621,646', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (647, 621, '猪护心肉', '猪护心肉', 3, 'zhuhuxinrou', 'zhxr', '620,621,647', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (648, 621, '猪耳朵', '猪耳朵', 3, 'zhuerduo', 'zed', '620,621,648', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (649, 621, '猪尾巴', '猪尾巴', 3, 'zhuweiba', 'zwb', '620,621,649', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (650, 621, '猪脊膘', '猪脊膘', 3, 'zhujibiao', 'zjb', '620,621,650', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (651, 621, '猪肝', '猪肝', 3, 'zhugan', 'zg', '620,621,651', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (652, 621, '猪心', '猪心', 3, 'zhuxin', 'zx', '620,621,652', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (653, 621, '猪腰子', '猪腰子', 3, 'zhuyaozi', 'zyz', '620,621,653', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (654, 621, '猪口条', '猪口条', 3, 'zhukoutiao', 'zkt', '620,621,654', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (655, 621, '猪肚', '猪肚', 3, 'zhudu', 'zd', '620,621,655', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (656, 621, '猪大肠头', '猪大肠头', 3, 'zhudachangtou', 'zdct', '620,621,656', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (657, 621, '猪肥肠', '猪肥肠', 3, 'zhufeichang', 'zfc', '620,621,657', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (658, 621, '猪苦肠', '猪苦肠', 3, 'zhukuchang', 'zkc', '620,621,658', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (659, 621, '猪肚头', '猪肚头', 3, 'zhudutou', 'zdt', '620,621,659', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (660, 621, '猪血', '猪血', 3, 'zhuxue', 'zx', '620,621,660', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (661, 621, '猪沙肝', '猪沙肝', 3, 'zhushagan', 'zsg', '620,621,661', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (662, 621, '猪鸡冠油', '猪鸡冠油', 3, 'zhujiguanyou', 'zjgy', '620,621,662', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (663, 621, '猪肺子', '猪肺子', 3, 'zhufeizi', 'zfz', '620,621,663', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (664, 621, '猪哈拉巴', '猪哈拉巴', 3, 'zhuhalaba', 'zhlb', '620,621,664', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (665, 621, '猪龙骨', '猪龙骨', 3, 'zhulonggu', 'zlg', '620,621,665', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (666, 621, '猪脑', '猪脑', 3, 'zhunao', 'zn', '620,621,666', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (667, 621, '猪扇骨', '猪扇骨', 3, 'zhushangu', 'zsg', '620,621,667', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (668, 621, '猪板油', '猪板油', 3, 'zhubanyou', 'zby', '620,621,668', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (669, 621, '猪巧舌', '猪巧舌', 3, 'zhuqiaoshe', 'zqs', '620,621,669', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (670, 620, '牛肉类', '牛肉类', 2, 'niuroulei', 'nrl', '620,670', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (671, 670, '牛肉', '牛肉', 3, 'niurou', 'nr', '620,670,671', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (672, 670, '牛副', '牛副', 3, 'niufu', 'nf', '620,670,672', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (673, 670, '腹肉', '腹肉', 3, 'furou', 'fr', '620,670,673', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (674, 670, '牛肋条', '牛肋条', 3, 'niuleitiao', 'nlt', '620,670,674', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (675, 670, '草地高钙砖', '草地高钙砖', 3, 'caodigaogaizhuan', 'cdggz', '620,670,675', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (676, 670, '牛外脊', '牛外脊', 3, 'niuwaiji', 'nwj', '620,670,676', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (677, 670, '牛雪花净肋', '牛雪花净肋', 3, 'niuxuehuajinglei', 'nxhjl', '620,670,677', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (678, 670, '肥牛', '肥牛', 3, 'feiniu', 'fn', '620,670,678', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (679, 670, '牛肋排', '牛肋排', 3, 'niuleipai', 'nlp', '620,670,679', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (680, 670, '牛腩', '牛腩', 3, 'niunan', 'nn', '620,670,680', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (681, 670, '牛肉片', '牛肉片', 3, 'niuroupian', 'nrp', '620,670,681', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (682, 670, '牛板肉', '牛板肉', 3, 'niubanrou', 'nbr', '620,670,682', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (683, 670, '牛柳', '牛柳', 3, 'niuliu', 'nl', '620,670,683', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (684, 670, '牛尾股肉', '牛尾股肉', 3, 'niuweigurou', 'nwgr', '620,670,684', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (685, 670, '牛小排', '牛小排', 3, 'niuxiaopai', 'nxp', '620,670,685', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (686, 670, '西冷', '西冷', 3, 'xileng', 'xl', '620,670,686', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (687, 670, '带骨牛碎肉', '带骨牛碎肉', 3, 'daiguniusuirou', 'dgnsr', '620,670,687', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (688, 670, '带皮黄牛肉', '带皮黄牛肉', 3, 'daipihuangniurou', 'dphnr', '620,670,688', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (689, 670, '冻牛排', '冻牛排', 3, 'dongniupai', 'dnp', '620,670,689', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (690, 670, '冻牛尾', '冻牛尾', 3, 'dongniuwei', 'dnw', '620,670,690', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (691, 670, '冻牛腹肉', '冻牛腹肉', 3, 'dongniufurou', 'dnfr', '620,670,691', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (692, 670, '冻牛腱子', '冻牛腱子', 3, 'dongniujianzi', 'dnjz', '620,670,692', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (693, 670, '冻牛金钱展', '冻牛金钱展', 3, 'dongniujinqianzhan', 'dnjqz', '620,670,693', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (694, 670, '冻牛罗肌肉', '冻牛罗肌肉', 3, 'dongniuluojirou', 'dnljr', '620,670,694', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (695, 670, '冻牛棒骨筋', '冻牛棒骨筋', 3, 'dongniubanggujin', 'dnbgj', '620,670,695', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (696, 670, '冻牛霖', '冻牛霖', 3, 'dongniulin', 'dnl', '620,670,696', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (697, 670, '冻牛窝骨', '冻牛窝骨', 3, 'dongniuwogu', 'dnwg', '620,670,697', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (698, 670, '冻上脑肥牛', '冻上脑肥牛', 3, 'dongshangnaofeiniu', 'dsnfn', '620,670,698', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (699, 670, '冻牛小黄瓜条', '冻牛小黄瓜条', 3, 'dongniuxiaohuangguatiao', 'dnxhgt', '620,670,699', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (700, 670, '冻牛胸口', '冻牛胸口', 3, 'dongniuxiongkou', 'dnxk', '620,670,700', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (701, 670, '分割牛肉', '分割牛肉', 3, 'fengeniurou', 'fgnr', '620,670,701', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (702, 670, '牛腹肉块', '牛腹肉块', 3, 'niufuroukuai', 'nfrk', '620,670,702', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (703, 670, '牛腹肉条', '牛腹肉条', 3, 'niufuroutiao', 'nfrt', '620,670,703', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (704, 670, '牛排', '牛排', 3, 'niupai', 'np', '620,670,704', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (705, 704, '黑椒牛排', '黑椒牛排', 4, 'heijiaoniupai', 'hjnp', '620,670,704,705', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (706, 704, '和牛牛排', '和牛牛排', 4, 'heniuniupai', 'hnnp', '620,670,704,706', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (707, 670, '黑牛雪花瓜条', '黑牛雪花瓜条', 3, 'heiniuxuehuaguatiao', 'hnxhgt', '620,670,707', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (708, 670, '后牛腱子', '后牛腱子', 3, 'houniujianzi', 'hnjz', '620,670,708', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (709, 670, '牛后胸', '牛后胸', 3, 'niuhouxiong', 'nhx', '620,670,709', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (710, 670, '牛脊骨', '牛脊骨', 3, 'niujigu', 'njg', '620,670,710', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (711, 670, '牛筋膜肉', '牛筋膜肉', 3, 'niujinmorou', 'njmr', '620,670,711', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (712, 670, '美味牛腩块', '美味牛腩块', 3, 'meiweiniunankuai', 'mwnnk', '620,670,712', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (713, 670, '牛牡蛎肉', '牛牡蛎肉', 3, 'niumulirou', 'nmlr', '620,670,713', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (714, 670, '牛嫩肩肉', '牛嫩肩肉', 3, 'niunenjianrou', 'nnjr', '620,670,714', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (715, 670, '牛扒', '牛扒', 3, 'niuba', 'nb', '620,670,715', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (716, 670, '牛棒骨', '牛棒骨', 3, 'niubanggu', 'nbg', '620,670,716', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (717, 670, '牛棒骨段', '牛棒骨段', 3, 'niubangguduan', 'nbgd', '620,670,717', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (718, 670, '牛脖肉', '牛脖肉', 3, 'niuborou', 'nbr', '620,670,718', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (719, 670, '牛脖子肉', '牛脖子肉', 3, 'niubozirou', 'nbzr', '620,670,719', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (720, 670, '牛侧柳', '牛侧柳', 3, 'niuceliu', 'ncl', '620,670,720', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (721, 670, '牛肠', '牛肠', 3, 'niuchang', 'nc', '620,670,721', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (722, 670, '牛大黄瓜条', '牛大黄瓜条', 3, 'niudahuangguatiao', 'ndhgt', '620,670,722', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (723, 670, '牛带肉脊骨排', '牛带肉脊骨排', 3, 'niudairoujigupai', 'ndrjgp', '620,670,723', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (724, 670, '牛腹肉', '牛腹肉', 3, 'niufurou', 'nfr', '620,670,724', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (725, 670, '牛拐骨', '牛拐骨', 3, 'niuguaigu', 'ngg', '620,670,725', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (726, 670, '牛光排', '牛光排', 3, 'niuguangpai', 'ngp', '620,670,726', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (727, 670, '牛后腿', '牛后腿', 3, 'niuhoutui', 'nht', '620,670,727', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (728, 670, '牛烩扒', '牛烩扒', 3, 'niuhuiba', 'nhb', '620,670,728', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (729, 670, '牛肩肉', '牛肩肉', 3, 'niujianrou', 'njr', '620,670,729', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (730, 670, '牛腱子', '牛腱子', 3, 'niujianzi', 'njz', '620,670,730', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (731, 670, '牛精炼油', '牛精炼油', 3, 'niujinglianyou', 'njly', '620,670,731', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (732, 670, '牛里脊', '牛里脊', 3, 'niuliji', 'nlj', '620,670,732', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (733, 670, '牛霖肉', '牛霖肉', 3, 'niulinrou', 'nlr', '620,670,733', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (734, 670, '牛罗肌肉', '牛罗肌肉', 3, 'niuluojirou', 'nljr', '620,670,734', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (735, 670, '牛奶花', '牛奶花', 3, 'niunaihua', 'nnh', '620,670,735', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (736, 670, '牛肉饼', '牛肉饼', 3, 'niuroubing', 'nrb', '620,670,736', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (737, 670, '牛肉卷', '牛肉卷', 3, 'niuroujuan', 'nrj', '620,670,737', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (738, 670, '牛肉块', '牛肉块', 3, 'niuroukuai', 'nrk', '620,670,738', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (739, 670, '牛肉沫', '牛肉沫', 3, 'niuroumo', 'nrm', '620,670,739', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (740, 670, '牛软骨', '牛软骨', 3, 'niuruangu', 'nrg', '620,670,740', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (741, 670, '牛软骨肉', '牛软骨肉', 3, 'niuruangurou', 'nrgr', '620,670,741', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (742, 670, '牛上脑', '牛上脑', 3, 'niushangnao', 'nsn', '620,670,742', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (743, 670, '牛舌', '牛舌', 3, 'niushe', 'ns', '620,670,743', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (744, 670, '牛肾', '牛肾', 3, 'niushen', 'ns', '620,670,744', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (745, 670, '牛蹄筋', '牛蹄筋', 3, 'niutijin', 'ntj', '620,670,745', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (746, 670, '牛腿外侧肉', '牛腿外侧肉', 3, 'niutuiwaicerou', 'ntwcr', '620,670,746', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (747, 670, '牛外脊筋', '牛外脊筋', 3, 'niuwaijijin', 'nwjj', '620,670,747', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (748, 670, '牛尾', '牛尾', 3, 'niuwei', 'nw', '620,670,748', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (749, 670, '牛窝骨筋', '牛窝骨筋', 3, 'niuwogujin', 'nwgj', '620,670,749', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (750, 670, '牛小黄瓜条', '牛小黄瓜条', 3, 'niuxiaohuangguatiao', 'nxhgt', '620,670,750', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (751, 670, '牛小里脊', '牛小里脊', 3, 'niuxiaoliji', 'nxlj', '620,670,751', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (752, 670, '牛胸口', '牛胸口', 3, 'niuxiongkou', 'nxk', '620,670,752', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (753, 670, '牛眼肉芯', '牛眼肉芯', 3, 'niuyanrouxin', 'nyrx', '620,670,753', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (754, 670, '牛雁翅骨', '牛雁翅骨', 3, 'niuyanchigu', 'nycg', '620,670,754', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (755, 670, '牛月牙骨', '牛月牙骨', 3, 'niuyueyagu', 'nyyg', '620,670,755', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (756, 670, '牛杂骨', '牛杂骨', 3, 'niuzagu', 'nzg', '620,670,756', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (757, 670, '牛仔骨', '牛仔骨', 3, 'niuzigu', 'nzg', '620,670,757', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (758, 670, '牛子盖', '牛子盖', 3, 'niuzigai', 'nzg', '620,670,758', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (759, 670, '前牛腱子', '前牛腱子', 3, 'qianniujianzi', 'qnjz', '620,670,759', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (760, 670, '牛前胸', '牛前胸', 3, 'niuqianxiong', 'nqx', '620,670,760', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (761, 670, '去骨牛肉上脑心', '去骨牛肉上脑心', 3, 'quguniuroushangnaoxin', 'qgnrsnx', '620,670,761', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (762, 670, '去骨牛肉臀腰肉盖', '去骨牛肉臀腰肉盖', 3, 'quguniuroutunyaorougai', 'qgnrtyrg', '620,670,762', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (763, 670, '去骨牛眼肉', '去骨牛眼肉', 3, 'quguniuyanrou', 'qgnyr', '620,670,763', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (764, 670, '牛百叶', '牛百叶', 3, 'niubaiye', 'nby', '620,670,764', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (765, 670, '牛揣油', '牛揣油', 3, 'niuchuaiyou', 'ncy', '620,670,765', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (766, 670, '牛肚油', '牛肚油', 3, 'niuduyou', 'ndy', '620,670,766', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (767, 670, '牛隔膜筋', '牛隔膜筋', 3, 'niugemojin', 'ngmj', '620,670,767', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (768, 670, '牛骨髓', '牛骨髓', 3, 'niugusui', 'ngs', '620,670,768', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (769, 670, '和牛腹肥', '和牛腹肥', 3, 'heniufufei', 'hnff', '620,670,769', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (770, 670, '和牛宏肠', '和牛宏肠', 3, 'heniuhongchang', 'hnhc', '620,670,770', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (771, 670, '和牛精炼油', '和牛精炼油', 3, 'heniujinglianyou', 'hnjly', '620,670,771', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (772, 670, '和牛牛心', '和牛牛心', 3, 'heniuniuxin', 'hnnx', '620,670,772', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (773, 670, '和牛上脑', '和牛上脑', 3, 'heniushangnao', 'hnsn', '620,670,773', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (774, 670, '和牛窝骨', '和牛窝骨', 3, 'heniuwogu', 'hnwg', '620,670,774', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (775, 670, '和牛小米龙', '和牛小米龙', 3, 'heniuxiaomilong', 'hnxml', '620,670,775', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (776, 670, '和牛心管', '和牛心管', 3, 'heniuxinguan', 'hnxg', '620,670,776', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (777, 670, '和牛脂肪油', '和牛脂肪油', 3, 'heniuzhifangyou', 'hnzfy', '620,670,777', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (778, 670, '牛腱子筋', '牛腱子筋', 3, 'niujianzijin', 'njzj', '620,670,778', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (779, 670, '牛腱子芯', '牛腱子芯', 3, 'niujianzixin', 'njzx', '620,670,779', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (780, 670, '牛金钱肚', '牛金钱肚', 3, 'niujinqiandu', 'njqd', '620,670,780', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (781, 670, '牛金钱展', '牛金钱展', 3, 'niujinqianzhan', 'njqz', '620,670,781', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (782, 670, '牛霸王鞭', '牛霸王鞭', 3, 'niubawangbian', 'nbwb', '620,670,782', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (783, 670, '牛板腱', '牛板腱', 3, 'niubanjian', 'nbj', '620,670,783', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (784, 670, '牛板筋', '牛板筋', 3, 'niubanjin', 'nbj', '620,670,784', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (785, 670, '牛鞭', '牛鞭', 3, 'niubian', 'nb', '620,670,785', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (786, 670, '牛蛋', '牛蛋', 3, 'niudan', 'nd', '620,670,786', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (787, 670, '牛肚', '牛肚', 3, 'niudu', 'nd', '620,670,787', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (788, 670, '牛肺子', '牛肺子', 3, 'niufeizi', 'nfz', '620,670,788', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (789, 670, '牛肝', '牛肝', 3, 'niugan', 'ng', '620,670,789', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (790, 670, '牛骨饼', '牛骨饼', 3, 'niugubing', 'ngb', '620,670,790', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (791, 670, '牛挂钩筋', '牛挂钩筋', 3, 'niuguagoujin', 'nggj', '620,670,791', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (792, 670, '鲜牛膀胱', '鲜牛膀胱', 3, 'xianniubangguang', 'xnbg', '620,670,792', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (793, 670, '牛黄瓜肉', '牛黄瓜肉', 3, 'niuhuangguarou', 'nhgr', '620,670,793', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (794, 670, '牛骨棒', '牛骨棒', 3, 'niugubang', 'ngb', '620,670,794', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (795, 670, '牛心管', '牛心管', 3, 'niuxinguan', 'nxg', '620,670,795', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (796, 670, '牛腰子', '牛腰子', 3, 'niuyaozi', 'nyz', '620,670,796', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (797, 670, '牛紫盖', '牛紫盖', 3, 'niuzigai', 'nzg', '620,670,797', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (798, 670, '牛三叉', '牛三叉', 3, 'niusancha', 'nsc', '620,670,798', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (799, 670, '牛元宝', '牛元宝', 3, 'niuyuanbao', 'nyb', '620,670,799', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (800, 670, '牛大板', '牛大板', 3, 'niudaban', 'ndb', '620,670,800', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (801, 670, '牛筋皮', '牛筋皮', 3, 'niujinpi', 'njp', '620,670,801', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (802, 670, '牛油', '牛油', 3, 'niuyou', 'ny', '620,670,802', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (803, 620, '羊肉类', '羊肉类', 2, 'yangroulei', 'yrl', '620,803', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (804, 803, '羊肉', '羊肉', 3, 'yangrou', 'yr', '620,803,804', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (805, 803, '羊副', '羊副', 3, 'yangfu', 'yf', '620,803,805', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (806, 803, '羊腿', '羊腿', 3, 'yangtui', 'yt', '620,803,806', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (807, 803, '羊辣椒肉', '羊辣椒肉', 3, 'yanglajiaorou', 'yljr', '620,803,807', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (808, 803, '全羊', '全羊', 3, 'quanyang', 'qy', '620,803,808', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (809, 803, '手切羔羊上脑', '手切羔羊上脑', 3, 'shouqiegaoyangshangnao', 'sqgysn', '620,803,809', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (810, 803, '鲜羔羊后腿包', '鲜羔羊后腿包', 3, 'xiangaoyanghoutuibao', 'xgyhtb', '620,803,810', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (811, 803, '鲜羔羊上脑', '鲜羔羊上脑', 3, 'xiangaoyangshangnao', 'xgysn', '620,803,811', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (812, 803, '羊脸', '羊脸', 3, 'yanglian', 'yl', '620,803,812', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (813, 803, '羊明镜', '羊明镜', 3, 'yangmingjing', 'ymj', '620,803,813', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (814, 803, '羊腩块', '羊腩块', 3, 'yangnankuai', 'ynk', '620,803,814', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (815, 803, '羊排', '羊排', 3, 'yangpai', 'yp', '620,803,815', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (816, 803, '羊排卷', '羊排卷', 3, 'yangpaijuan', 'ypj', '620,803,816', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (817, 803, '羊排块', '羊排块', 3, 'yangpaikuai', 'ypk', '620,803,817', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (818, 803, '羊排肉', '羊排肉', 3, 'yangpairou', 'ypr', '620,803,818', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (819, 803, '羊前腿', '羊前腿', 3, 'yangqiantui', 'yqt', '620,803,819', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (820, 803, '羊肉骨棒', '羊肉骨棒', 3, 'yangrougubang', 'yrgb', '620,803,820', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (821, 803, '羊肉卷', '羊肉卷', 3, 'yangroujuan', 'yrj', '620,803,821', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (822, 803, '羊肉片', '羊肉片', 3, 'yangroupian', 'yrp', '620,803,822', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (823, 803, '羊肉丸子', '羊肉丸子', 3, 'yangrouwanzi', 'yrwz', '620,803,823', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (824, 803, '羊软骨肉', '羊软骨肉', 3, 'yangruangurou', 'yrgr', '620,803,824', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (825, 803, '羊散袋', '羊散袋', 3, 'yangsandai', 'ysd', '620,803,825', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (826, 803, '羊上脑', '羊上脑', 3, 'yangshangnao', 'ysn', '620,803,826', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (827, 803, '羊蹄', '羊蹄', 3, 'yangti', 'yt', '620,803,827', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (828, 803, '羊尾', '羊尾', 3, 'yangwei', 'yw', '620,803,828', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (829, 803, '羊尾芯(羊蝎子)', '羊尾芯(羊蝎子)', 3, 'yangweixinyangxiezi', 'ywxyxz', '620,803,829', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (830, 803, '羊尾油', '羊尾油', 3, 'yangweiyou', 'ywy', '620,803,830', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (831, 803, '臻选羔羊排板', '臻选羔羊排板', 3, 'zhenxuangaoyangpaiban', 'zxgypb', '620,803,831', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (832, 803, '全羊杂', '全羊杂', 3, 'quanyangza', 'qyz', '620,803,832', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (833, 803, '熟羊杂', '熟羊杂', 3, 'shuyangza', 'syz', '620,803,833', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (834, 803, '鲜脊髓', '鲜脊髓', 3, 'xianjisui', 'xjs', '620,803,834', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (835, 803, '鲜羊百叶', '鲜羊百叶', 3, 'xianyangbaiye', 'xyby', '620,803,835', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (836, 803, '鲜羊板筋', '鲜羊板筋', 3, 'xianyangbanjin', 'xybj', '620,803,836', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (837, 803, '鲜羊棒骨', '鲜羊棒骨', 3, 'xianyangbanggu', 'xybg', '620,803,837', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (838, 803, '鲜羊拐肠', '鲜羊拐肠', 3, 'xianyangguaichang', 'xygc', '620,803,838', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (839, 803, '鲜羊盘肠', '鲜羊盘肠', 3, 'xianyangpanchang', 'xypc', '620,803,839', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (840, 803, '鲜羊尾油', '鲜羊尾油', 3, 'xianyangweiyou', 'xywy', '620,803,840', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (841, 803, '鲜羊腰子', '鲜羊腰子', 3, 'xianyangyaozi', 'xyyz', '620,803,841', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (842, 803, '羊百叶', '羊百叶', 3, 'yangbaiye', 'yby', '620,803,842', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (843, 803, '羊鞭', '羊鞭', 3, 'yangbian', 'yb', '620,803,843', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (844, 803, '羊肠', '羊肠', 3, 'yangchang', 'yc', '620,803,844', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (845, 803, '羊大肠', '羊大肠', 3, 'yangdachang', 'ydc', '620,803,845', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (846, 803, '羊蛋', '羊蛋', 3, 'yangdan', 'yd', '620,803,846', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (847, 803, '羊肚', '羊肚', 3, 'yangdu', 'yd', '620,803,847', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (848, 803, '羊菲力', '羊菲力', 3, 'yangfeili', 'yfl', '620,803,848', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (849, 803, '羊肥肠', '羊肥肠', 3, 'yangfeichang', 'yfc', '620,803,849', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (850, 803, '羊肺', '羊肺', 3, 'yangfei', 'yf', '620,803,850', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (851, 803, '羊肺管', '羊肺管', 3, 'yangfeiguan', 'yfg', '620,803,851', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (852, 803, '羊肺子', '羊肺子', 3, 'yangfeizi', 'yfz', '620,803,852', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (853, 803, '羊肝', '羊肝', 3, 'yanggan', 'yg', '620,803,853', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (854, 803, '羊宫后', '羊宫后', 3, 'yanggonghou', 'ygh', '620,803,854', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (855, 803, '羊骨头', '羊骨头', 3, 'yanggutou', 'ygt', '620,803,855', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (856, 803, '羊拐骨', '羊拐骨', 3, 'yangguaigu', 'ygg', '620,803,856', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (857, 803, '羊脊骨', '羊脊骨', 3, 'yangjigu', 'yjg', '620,803,857', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (858, 803, '羊净肚', '羊净肚', 3, 'yangjingdu', 'yjd', '620,803,858', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (859, 803, '羊肋条', '羊肋条', 3, 'yangleitiao', 'ylt', '620,803,859', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (860, 803, '羊下水', '羊下水', 3, 'yangxiashui', 'yxs', '620,803,860', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (861, 803, '羊小肠', '羊小肠', 3, 'yangxiaochang', 'yxc', '620,803,861', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (862, 803, '羊小腿', '羊小腿', 3, 'yangxiaotui', 'yxt', '620,803,862', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (863, 803, '羊心', '羊心', 3, 'yangxin', 'yx', '620,803,863', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (864, 803, '羊心肺连体', '羊心肺连体', 3, 'yangxinfeilianti', 'yxflt', '620,803,864', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (865, 803, '羊心管', '羊心管', 3, 'yangxinguan', 'yxg', '620,803,865', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (866, 803, '羊眼肉', '羊眼肉', 3, 'yangyanrou', 'yyr', '620,803,866', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (867, 803, '羊腰子', '羊腰子', 3, 'yangyaozi', 'yyz', '620,803,867', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (868, 803, '羊腿肉', '羊腿肉', 3, 'yangtuirou', 'ytr', '620,803,868', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (869, 803, '羊后腿', '羊后腿', 3, 'yanghoutui', 'yht', '620,803,869', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (870, 803, '羊里脊', '羊里脊', 3, 'yangliji', 'ylj', '620,803,870', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (871, 803, '羊杂', '羊杂', 3, 'yangza', 'yz', '620,803,871', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (872, 620, '兔肉类', '兔肉类', 2, 'turoulei', 'trl', '620,872', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (873, 872, '活兔', '活兔', 3, 'huotu', 'ht', '620,872,873', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (874, 872, '兔肉', '兔肉', 3, 'turou', 'tr', '620,872,874', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (875, 872, '兔毛', '兔毛', 3, 'tumao', 'tm', '620,872,875', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (876, 872, '兔皮', '兔皮', 3, 'tupi', 'tp', '620,872,876', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (877, 872, '兔副产品', '兔副产品', 3, 'tufuchanpin', 'tfcp', '620,872,877', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (878, 620, '马肉类', '马肉类', 2, 'maroulei', 'mrl', '620,878', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (879, 878, '活马', '活马', 3, 'huoma', 'hm', '620,878,879', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (880, 878, '马肉', '马肉', 3, 'marou', 'mr', '620,878,880', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (881, 878, '马乳', '马乳', 3, 'maru', 'mr', '620,878,881', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (882, 878, '马皮', '马皮', 3, 'mapi', 'mp', '620,878,882', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (883, 878, '马副产品', '马副产品', 3, 'mafuchanpin', 'mfcp', '620,878,883', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (884, 620, '驴肉类', '驴肉类', 2, 'lvroulei', 'lrl', '620,884', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (885, 884, '活驴', '活驴', 3, 'huolv', 'hl', '620,884,885', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (886, 884, '驴肉', '驴肉', 3, 'lvrou', 'lr', '620,884,886', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (887, 884, '驴皮', '驴皮', 3, 'lvpi', 'lp', '620,884,887', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (888, 884, '驴副产品', '驴副产品', 3, 'lvfuchanpin', 'lfcp', '620,884,888', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (889, 620, '鸡肉类', '鸡肉类', 2, 'jiroulei', 'jrl', '620,889', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (890, 889, '活鸡', '活鸡', 3, 'huoji', 'hj', '620,889,890', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (891, 889, '鲜白条鸡', '鲜白条鸡', 3, 'xianbaitiaoji', 'xbtj', '620,889,891', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (892, 889, '鸡肉', '鸡肉', 3, 'jirou', 'jr', '620,889,892', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (893, 889, '鸡内脏', '鸡内脏', 3, 'jineizang', 'jnz', '620,889,893', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (894, 889, '鸡副产品', '鸡副产品', 3, 'jifuchanpin', 'jfcp', '620,889,894', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (895, 889, '其他鸡产品', '其他鸡产品', 3, 'qitajichanpin', 'qtjcp', '620,889,895', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (896, 889, '分割鸡肉', '分割鸡肉', 3, 'fengejirou', 'fgjr', '620,889,896', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (897, 896, '鸡翅', '鸡翅', 4, 'jichi', 'jc', '620,889,896,897', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (898, 896, '鸡胸肉', '鸡胸肉', 4, 'jixiongrou', 'jxr', '620,889,896,898', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (899, 896, '鸡腿', '鸡腿', 4, 'jitui', 'jt', '620,889,896,899', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (900, 896, '鸡爪', '鸡爪', 4, 'jizhua', 'jz', '620,889,896,900', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (901, 896, '鸡心', '鸡心', 4, 'jixin', 'jx', '620,889,896,901', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (902, 896, '鸡脖', '鸡脖', 4, 'jibo', 'jb', '620,889,896,902', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (903, 896, '鸡胗', '鸡胗', 4, 'jizhen', 'jz', '620,889,896,903', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (904, 896, '鸡肝', '鸡肝', 4, 'jigan', 'jg', '620,889,896,904', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (905, 896, '鸡架', '鸡架', 4, 'jijia', 'jj', '620,889,896,905', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (906, 896, '鸡头', '鸡头', 4, 'jitou', 'jt', '620,889,896,906', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (907, 896, '鸡关节', '鸡关节', 4, 'jiguanjie', 'jgj', '620,889,896,907', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (908, 896, '鸡翅中', '鸡翅中', 4, 'jichizhong', 'jcz', '620,889,896,908', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (909, 896, '鸡翅根', '鸡翅根', 4, 'jichigen', 'jcg', '620,889,896,909', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (910, 896, '鸡翅尖', '鸡翅尖', 4, 'jichijian', 'jcj', '620,889,896,910', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (911, 896, '鸡掌中宝', '鸡掌中宝', 4, 'jizhangzhongbao', 'jzzb', '620,889,896,911', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (912, 896, '鸡去骨腿肉', '鸡去骨腿肉', 4, 'jiqugutuirou', 'jqgtr', '620,889,896,912', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (913, 896, '鸡琵琶腿', '鸡琵琶腿', 4, 'jipipatui', 'jppt', '620,889,896,913', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (914, 620, '鸭肉类', '鸭肉类', 2, 'yaroulei', 'yrl', '620,914', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (915, 914, '鸭肉', '鸭肉', 3, 'yarou', 'yr', '620,914,915', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (916, 914, '活鸭', '活鸭', 3, 'huoya', 'hy', '620,914,916', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (917, 914, '鲜白条鸭', '鲜白条鸭', 3, 'xianbaitiaoya', 'xbty', '620,914,917', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (918, 914, '鸭毛和鸭绒', '鸭毛和鸭绒', 3, 'yamaoheyarong', 'ymhyr', '620,914,918', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (919, 914, '鸭内脏', '鸭内脏', 3, 'yaneizang', 'ynz', '620,914,919', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (920, 914, '鸭副产品', '鸭副产品', 3, 'yafuchanpin', 'yfcp', '620,914,920', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (921, 914, '其他鸭产品', '其他鸭产品', 3, 'qitayachanpin', 'qtycp', '620,914,921', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (922, 914, '分割鸭肉', '分割鸭肉', 3, 'fengeyarou', 'fgyr', '620,914,922', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (923, 922, '鸭头', '鸭头', 4, 'yatou', 'yt', '620,914,922,923', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (924, 922, '鸭爪', '鸭爪', 4, 'yazhua', 'yz', '620,914,922,924', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (925, 922, '鸭脖', '鸭脖', 4, 'yabo', 'yb', '620,914,922,925', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (926, 922, '鸭翅', '鸭翅', 4, 'yachi', 'yc', '620,914,922,926', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (927, 922, '鸭腿', '鸭腿', 4, 'yatui', 'yt', '620,914,922,927', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (928, 922, '鸭心', '鸭心', 4, 'yaxin', 'yx', '620,914,922,928', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (929, 922, '鸭肝', '鸭肝', 4, 'yagan', 'yg', '620,914,922,929', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (930, 922, '鸭食管', '鸭食管', 4, 'yashiguan', 'ysg', '620,914,922,930', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (931, 922, '鸭舌', '鸭舌', 4, 'yashe', 'ys', '620,914,922,931', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (932, 922, '鸭锁骨', '鸭锁骨', 4, 'yasuogu', 'ysg', '620,914,922,932', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (933, 922, '鸭肠', '鸭肠', 4, 'yachang', 'yc', '620,914,922,933', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (934, 922, '鸭胗', '鸭胗', 4, 'yazhen', 'yz', '620,914,922,934', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (935, 922, '鸭二节翅', '鸭二节翅', 4, 'yaerjiechi', 'yejc', '620,914,922,935', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (936, 922, '鸭三节翅', '鸭三节翅', 4, 'yasanjiechi', 'ysjc', '620,914,922,936', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (937, 922, '鸭边腿', '鸭边腿', 4, 'yabiantui', 'ybt', '620,914,922,937', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (938, 922, '鸭净腿', '鸭净腿', 4, 'yajingtui', 'yjt', '620,914,922,938', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (939, 922, '去皮鸭胸', '去皮鸭胸', 4, 'qupiyaxiong', 'qpyx', '620,914,922,939', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (940, 922, '带皮鸭胸', '带皮鸭胸', 4, 'daipiyaxiong', 'dpyx', '620,914,922,940', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (941, 620, '鹅肉类', '鹅肉类', 2, 'eroulei', 'erl', '620,941', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (942, 941, '活鹅', '活鹅', 3, 'huoe', 'he', '620,941,942', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (943, 941, '鹅肉', '鹅肉', 3, 'erou', 'er', '620,941,943', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (944, 941, '鹅毛和鹅绒', '鹅毛和鹅绒', 3, 'emaoheerong', 'emher', '620,941,944', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (945, 941, '鹅内脏', '鹅内脏', 3, 'eneizang', 'enz', '620,941,945', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (946, 941, '鹅副产品', '鹅副产品', 3, 'efuchanpin', 'efcp', '620,941,946', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (947, 941, '其他鹅产品', '其他鹅产品', 3, 'qitaechanpin', 'qtecp', '620,941,947', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (948, 941, '分割鹅肉', '分割鹅肉', 3, 'fengeerou', 'fger', '620,941,948', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (949, 948, '鹅头', '鹅头', 4, 'etou', 'et', '620,941,948,949', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (950, 948, '鹅肝', '鹅肝', 4, 'egan', 'eg', '620,941,948,950', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (951, 948, '鹅心', '鹅心', 4, 'exin', 'ex', '620,941,948,951', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (952, 948, '鹅肠', '鹅肠', 4, 'echang', 'ec', '620,941,948,952', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (953, 948, '鹅胃', '鹅胃', 4, 'ewei', 'ew', '620,941,948,953', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (954, 948, '鹅肚', '鹅肚', 4, 'edu', 'ed', '620,941,948,954', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (955, 948, '鹅爪', '鹅爪', 4, 'ezhua', 'ez', '620,941,948,955', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (956, 948, '鹅腿', '鹅腿', 4, 'etui', 'et', '620,941,948,956', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (957, 948, '鹅架', '鹅架', 4, 'ejia', 'ej', '620,941,948,957', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (958, 948, '鹅翅', '鹅翅', 4, 'echi', 'ec', '620,941,948,958', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (959, 948, '鹅掌', '鹅掌', 4, 'ezhang', 'ez', '620,941,948,959', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (960, 948, '鹅胗', '鹅胗', 4, 'ezhen', 'ez', '620,941,948,960', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (961, 620, '鸽子肉类', '鸽子肉类', 2, 'geziroulei', 'gzrl', '620,961', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (962, 961, '活鸽', '活鸽', 3, 'huoge', 'hg', '620,961,962', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (963, 961, '鸽肉', '鸽肉', 3, 'gerou', 'gr', '620,961,963', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (964, 961, '其他鸽产品及副产品', '其他鸽产品及副产品', 3, 'qitagechanpinjifuchanpin', 'qtgcpjfcp', '620,961,964', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (965, 620, '鹌鹑肉类', '鹌鹑肉类', 2, 'anchunroulei', 'acrl', '620,965', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (966, 965, '活鹌鹑', '活鹌鹑', 3, 'huoanchun', 'hac', '620,965,966', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (967, 965, '鹌鹑肉', '鹌鹑肉', 3, 'anchunrou', 'acr', '620,965,967', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (968, 965, '其他鹌鹑产品及副产品', '其他鹌鹑产品及副产品', 3, 'qitaanchunchanpinjifuchanpin', 'qtaccpjfcp', '620,965,968', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (969, 620, '冻品', '冻品', 2, 'dongpin', 'dp', '620,969', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (970, 969, '冻肉', '冻肉', 3, 'dongrou', 'dr', '620,969,970', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (971, 969, '速冻水饺', '速冻水饺', 3, 'sudongshuijiao', 'sdsj', '620,969,971', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (972, 969, '速冻丸子', '速冻丸子', 3, 'sudongwanzi', 'sdwz', '620,969,972', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (973, 620, '其他肉类', '其他肉类', 2, 'qitaroulei', 'qtrl', '620,973', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (974, 973, '骆驼', '骆驼', 3, 'luotuo', 'lt', '620,973,974', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (975, 973, '蜜蜂', '蜜蜂', 3, 'mifeng', 'mf', '620,973,975', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (976, 0, '农资', '农资', 1, 'nongzi', 'nz', '976', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (977, 976, '种子', '种子', 2, 'zhongzi', 'zz', '976,977', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (978, 977, '粮食种子', '粮食种子', 3, 'liangshizhongzi', 'lszz', '976,977,978', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (979, 977, '蔬菜种子', '蔬菜种子', 3, 'shucaizhongzi', 'sczz', '976,977,979', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (980, 977, '水果种子', '水果种子', 3, 'shuiguozhongzi', 'sgzz', '976,977,980', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (981, 977, '林木种苗', '林木种苗', 3, 'linmuzhongmiao', 'lmzm', '976,977,981', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (982, 977, '花卉种子', '花卉种子', 3, 'huahuizhongzi', 'hhzz', '976,977,982', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (983, 977, '其他作物种子', '其他作物种子', 3, 'qitazuowuzhongzi', 'qtzwzz', '976,977,983', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (984, 976, '农药', '农药', 2, 'nongyao', 'ny', '976,984', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (985, 984, '除草剂', '除草剂', 3, 'chucaoji', 'ccj', '976,984,985', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (986, 984, '杀虫剂', '杀虫剂', 3, 'shachongji', 'scj', '976,984,986', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (987, 984, '生长调节剂', '生长调节剂', 3, 'shengzhangdiaojieji', 'szdjj', '976,984,987', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (988, 984, '其他农药', '其他农药', 3, 'qitanongyao', 'qtny', '976,984,988', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (989, 976, '农机农具', '农机农具', 2, 'nongjinongju', 'njnj', '976,989', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (990, 989, '农膜', '农膜', 3, 'nongmo', 'nm', '976,989,990', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (991, 990, 'PVC', 'PVC', 4, 'PVC', 'PVC', '976,989,990,991', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (992, 990, 'PE', 'PE', 4, 'PE', 'PE', '976,989,990,992', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (993, 990, 'EVA', 'EVA', 4, 'EVA', 'EVA', '976,989,990,993', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (994, 990, 'PO', 'PO', 4, 'PO', 'PO', '976,989,990,994', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (995, 989, '农具', '农具', 3, 'nongju', 'nj', '976,989,995', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (996, 995, '耕犁工具', '耕犁工具', 4, 'gengligongju', 'glgj', '976,989,995,996', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (997, 995, '播种工具', '播种工具', 4, 'bozhonggongju', 'bzgj', '976,989,995,997', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (998, 995, '除草工具', '除草工具', 4, 'chucaogongju', 'ccgj', '976,989,995,998', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (999, 995, '施肥工具', '施肥工具', 4, 'shifeigongju', 'sfgj', '976,989,995,999', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1000, 995, '灌溉工具', '灌溉工具', 4, 'guangaigongju', 'gggj', '976,989,995,1000', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1001, 995, '收货工具', '收货工具', 4, 'shouhuogongju', 'shgj', '976,989,995,1001', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1002, 995, '加工工具', '加工工具', 4, 'jiagonggongju', 'jggj', '976,989,995,1002', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1003, 995, '运输工具', '运输工具', 4, 'yunshugongju', 'ysgj', '976,989,995,1003', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1004, 989, '农机', '农机', 3, 'nongji', 'nj', '976,989,1004', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1005, 1004, '播种机', '播种机', 4, 'bozhongji', 'bzj', '976,989,1004,1005', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1006, 1004, '插秧机', '插秧机', 4, 'chayangji', 'cyj', '976,989,1004,1006', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1007, 1004, '收割机', '收割机', 4, 'shougeji', 'sgj', '976,989,1004,1007', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1008, 1004, '农机配件', '农机配件', 4, 'nongjipeijian', 'njpj', '976,989,1004,1008', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1009, 976, '肥料', '肥料', 2, 'feiliao', 'fl', '976,1009', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1010, 1009, '氮肥', '氮肥', 3, 'danfei', 'df', '976,1009,1010', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1011, 1009, '磷肥', '磷肥', 3, 'linfei', 'lf', '976,1009,1011', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1012, 1009, '钾肥', '钾肥', 3, 'jiafei', 'jf', '976,1009,1012', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1013, 1009, '复合肥', '复合肥', 3, 'fuhefei', 'fhf', '976,1009,1013', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1014, 1009, '微量元素肥', '微量元素肥', 3, 'weiliangyuansufei', 'wlysf', '976,1009,1014', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1015, 1009, '其他肥料', '其他肥料', 3, 'qitafeiliao', 'qtfl', '976,1009,1015', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1016, 976, '饲料', '饲料', 2, 'siliao', 'sl', '976,1016', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1017, 1016, '粗饲料', '粗饲料', 3, 'cusiliao', 'csl', '976,1016,1017', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1018, 1016, '青绿饲料', '青绿饲料', 3, 'qinglvsiliao', 'qlsl', '976,1016,1018', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1019, 1016, '青贮饲料', '青贮饲料', 3, 'qingzhusiliao', 'qzsl', '976,1016,1019', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1020, 1016, '能量饲料', '能量饲料', 3, 'nengliangsiliao', 'nlsl', '976,1016,1020', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1021, 1016, '其他饲料', '其他饲料', 3, 'qitasiliao', 'qtsl', '976,1016,1021', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1022, 976, '其他农资', '其他农资', 2, 'qitanongzi', 'qtnz', '976,1022', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1023, 0, '水果', '水果', 1, 'shuiguo', 'sg', '1023', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1024, 1023, '浆果类', '浆果类', 2, 'jiangguolei', 'jgl', '1023,1024', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1025, 1024, '香蕉类', '香蕉类', 3, 'xiangjiaolei', 'xjl', '1023,1024,1025', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1026, 1025, '普通香蕉', '普通香蕉', 4, 'putongxiangjiao', 'ptxj', '1023,1024,1025,1026', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1027, 1025, '进口香蕉', '进口香蕉', 4, 'jinkouxiangjiao', 'jkxj', '1023,1024,1025,1027', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1028, 1025, '苹果蕉', '苹果蕉', 4, 'pingguojiao', 'pgj', '1023,1024,1025,1028', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1029, 1025, '北蕉', '北蕉', 4, 'beijiao', 'bj', '1023,1024,1025,1029', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1030, 1025, '米蕉', '米蕉', 4, 'mijiao', 'mj', '1023,1024,1025,1030', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1031, 1025, '芝麻蕉', '芝麻蕉', 4, 'zhimajiao', 'zmj', '1023,1024,1025,1031', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1032, 1025, '仙人蕉', '仙人蕉', 4, 'xianrenjiao', 'xrj', '1023,1024,1025,1032', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1033, 1025, '李林蕉', '李林蕉', 4, 'lilinjiao', 'llj', '1023,1024,1025,1033', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1034, 1025, '西贡蕉', '西贡蕉', 4, 'xigongjiao', 'xgj', '1023,1024,1025,1034', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1035, 1025, '帝王蕉', '帝王蕉', 4, 'diwangjiao', 'dwj', '1023,1024,1025,1035', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1036, 1025, '都乐香蕉', '都乐香蕉', 4, 'doulexiangjiao', 'dlxj', '1023,1024,1025,1036', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1037, 1024, '葡萄类', '葡萄类', 3, 'putaolei', 'ptl', '1023,1024,1037', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1038, 1037, '乒乓球葡萄', '乒乓球葡萄', 4, 'pingpangqiuputao', 'ppqpt', '1023,1024,1037,1038', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1039, 1037, '白鸡心葡萄', '白鸡心葡萄', 4, 'baijixinputao', 'bjxpt', '1023,1024,1037,1039', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1040, 1037, '水晶葡萄', '水晶葡萄', 4, 'shuijingputao', 'sjpt', '1023,1024,1037,1040', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1041, 1037, '酒葡萄', '酒葡萄', 4, 'jiuputao', 'jpt', '1023,1024,1037,1041', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1042, 1037, '峰后葡萄', '峰后葡萄', 4, 'fenghouputao', 'fhpt', '1023,1024,1037,1042', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1043, 1037, '巨峰葡萄', '巨峰葡萄', 4, 'jufengputao', 'jfpt', '1023,1024,1037,1043', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1044, 1037, '夏黑葡萄', '夏黑葡萄', 4, 'xiaheiputao', 'xhpt', '1023,1024,1037,1044', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1045, 1037, '龙眼葡萄', '龙眼葡萄', 4, 'longyanputao', 'lypt', '1023,1024,1037,1045', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1046, 1037, '辽峰葡萄', '辽峰葡萄', 4, 'liaofengputao', 'lfpt', '1023,1024,1037,1046', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1047, 1037, '克伦生葡萄', '克伦生葡萄', 4, 'kelunshengputao', 'klspt', '1023,1024,1037,1047', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1048, 1037, '藤稔葡萄', '藤稔葡萄', 4, 'tengrenputao', 'trpt', '1023,1024,1037,1048', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1049, 1037, '金手指葡萄', '金手指葡萄', 4, 'jinshouzhiputao', 'jszpt', '1023,1024,1037,1049', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1050, 1037, '美人指葡萄', '美人指葡萄', 4, 'meirenzhiputao', 'mrzpt', '1023,1024,1037,1050', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1051, 1037, '红提', '红提', 4, 'hongti', 'ht', '1023,1024,1037,1051', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1052, 1037, '青提', '青提', 4, 'qingti', 'qt', '1023,1024,1037,1052', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1053, 1037, '黑提', '黑提', 4, 'heiti', 'ht', '1023,1024,1037,1053', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1054, 1037, '无籽葡萄', '无籽葡萄', 4, 'wuziputao', 'wzpt', '1023,1024,1037,1054', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1055, 1037, '玫瑰香葡萄', '玫瑰香葡萄', 4, 'meiguixiangputao', 'mgxpt', '1023,1024,1037,1055', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1056, 1037, '晴王葡萄', '晴王葡萄', 4, 'qingwangputao', 'qwpt', '1023,1024,1037,1056', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1057, 1037, '红宝石葡萄', '红宝石葡萄', 4, 'hongbaoshiputao', 'hbspt', '1023,1024,1037,1057', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1058, 1037, '绿马奶提子', '绿马奶提子', 4, 'lvmanaitizi', 'lmntz', '1023,1024,1037,1058', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1059, 1037, '茉莉香小葡萄', '茉莉香小葡萄', 4, 'molixiangxiaoputao', 'mlxxpt', '1023,1024,1037,1059', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1060, 1037, '手指葡萄', '手指葡萄', 4, 'shouzhiputao', 'szpt', '1023,1024,1037,1060', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1061, 1037, '黑加仑葡萄', '黑加仑葡萄', 4, 'heijialunputao', 'hjlpt', '1023,1024,1037,1061', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1062, 1037, '澳洲黑手指葡萄', '澳洲黑手指葡萄', 4, 'aozhouheishouzhiputao', 'azhszpt', '1023,1024,1037,1062', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1063, 1037, '小蜜蜂葡萄', '小蜜蜂葡萄', 4, 'xiaomifengputao', 'xmfpt', '1023,1024,1037,1063', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1064, 1037, '京亚葡萄', '京亚葡萄', 4, 'jingyaputao', 'jypt', '1023,1024,1037,1064', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1065, 1037, '维多利亚葡萄', '维多利亚葡萄', 4, 'weiduoliyaputao', 'wdlypt', '1023,1024,1037,1065', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1066, 1037, '木纳格葡萄', '木纳格葡萄', 4, 'munageputao', 'mngpt', '1023,1024,1037,1066', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1067, 1037, '极品香葡萄', '极品香葡萄', 4, 'jipinxiangputao', 'jpxpt', '1023,1024,1037,1067', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1068, 1037, '白玫瑰葡萄', '白玫瑰葡萄', 4, 'baimeiguiputao', 'bmgpt', '1023,1024,1037,1068', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1069, 1037, '蜜汁葡萄', '蜜汁葡萄', 4, 'mizhiputao', 'mzpt', '1023,1024,1037,1069', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1070, 1037, '山葡萄', '山葡萄', 4, 'shanputao', 'spt', '1023,1024,1037,1070', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1071, 1037, '蓝莓葡萄', '蓝莓葡萄', 4, 'lanmeiputao', 'lmpt', '1023,1024,1037,1071', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1072, 1024, '柿子类', '柿子类', 3, 'shizilei', 'szl', '1023,1024,1072', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1073, 1072, '鸡心柿', '鸡心柿', 4, 'jixinshi', 'jxs', '1023,1024,1072,1073', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1074, 1072, '镜面柿', '镜面柿', 4, 'jingmianshi', 'jms', '1023,1024,1072,1074', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1075, 1072, '尖柿', '尖柿', 4, 'jianshi', 'js', '1023,1024,1072,1075', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1076, 1072, '甜脆柿', '甜脆柿', 4, 'tiancuishi', 'tcs', '1023,1024,1072,1076', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1077, 1072, '水晶柿', '水晶柿', 4, 'shuijingshi', 'sjs', '1023,1024,1072,1077', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1078, 1072, '柿饼子', '柿饼子', 4, 'shibingzi', 'sbz', '1023,1024,1072,1078', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1079, 1072, '月柿子', '月柿子', 4, 'yueshizi', 'ysz', '1023,1024,1072,1079', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1080, 1072, '火柿子', '火柿子', 4, 'huoshizi', 'hsz', '1023,1024,1072,1080', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1081, 1072, '樱桃柿子', '樱桃柿子', 4, 'yingtaoshizi', 'ytsz', '1023,1024,1072,1081', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1082, 1072, '小柿子', '小柿子', 4, 'xiaoshizi', 'xsz', '1023,1024,1072,1082', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1083, 1072, '盘柿', '盘柿', 4, 'panshi', 'ps', '1023,1024,1072,1083', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1084, 1072, '芒果柿子', '芒果柿子', 4, 'mangguoshizi', 'mgsz', '1023,1024,1072,1084', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1085, 1072, '暖柿子', '暖柿子', 4, 'nuanshizi', 'nsz', '1023,1024,1072,1085', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1086, 1072, '花生柿子', '花生柿子', 4, 'huashengshizi', 'hssz', '1023,1024,1072,1086', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1087, 1072, '大柿子', '大柿子', 4, 'dashizi', 'dsz', '1023,1024,1072,1087', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1088, 1072, '方柿', '方柿', 4, 'fangshi', 'fs', '1023,1024,1072,1088', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1089, 1072, '柿子头', '柿子头', 4, 'shizitou', 'szt', '1023,1024,1072,1089', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1090, 1024, '猕猴桃类', '猕猴桃类', 3, 'mihoutaolei', 'mhtl', '1023,1024,1090', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1091, 1090, '绿果猕猴桃', '绿果猕猴桃', 4, 'lvguomihoutao', 'lgmht', '1023,1024,1090,1091', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1092, 1090, '金果猕猴桃', '金果猕猴桃', 4, 'jinguomihoutao', 'jgmht', '1023,1024,1090,1092', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1093, 1090, '红心猕猴桃', '红心猕猴桃', 4, 'hongxinmihoutao', 'hxmht', '1023,1024,1090,1093', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1094, 1090, '黄心猕猴桃', '黄心猕猴桃', 4, 'huangxinmihoutao', 'hxmht', '1023,1024,1090,1094', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1095, 1090, '长毛猕猴桃', '长毛猕猴桃', 4, 'zhangmaomihoutao', 'zmmht', '1023,1024,1090,1095', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1096, 1090, '修文猕猴桃', '修文猕猴桃', 4, 'xiuwenmihoutao', 'xwmht', '1023,1024,1090,1096', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1097, 1090, '奇异果', '奇异果', 4, 'qiyiguo', 'qyg', '1023,1024,1090,1097', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1098, 1090, '佳沛奇异果', '佳沛奇异果', 4, 'jiapeiqiyiguo', 'jpqyg', '1023,1024,1090,1098', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1099, 1024, '百香果', '百香果', 3, 'baixiangguo', 'bxg', '1023,1024,1099', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1100, 1099, '普通百香果', '普通百香果', 4, 'putongbaixiangguo', 'ptbxg', '1023,1024,1099,1100', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1101, 1099, '黄心百香果', '黄心百香果', 4, 'huangxinbaixiangguo', 'hxbxg', '1023,1024,1099,1101', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1102, 1024, '火龙果类', '火龙果类', 3, 'huolongguolei', 'hlgl', '1023,1024,1102', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1103, 1102, '红心火龙果', '红心火龙果', 4, 'hongxinhuolongguo', 'hxhlg', '1023,1024,1102,1103', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1104, 1102, '白心火龙果', '白心火龙果', 4, 'baixinhuolongguo', 'bxhlg', '1023,1024,1102,1104', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1105, 1102, '蜜宝', '蜜宝', 4, 'mibao', 'mb', '1023,1024,1102,1105', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1106, 1102, '麒麟果', '麒麟果', 4, 'qilinguo', 'qlg', '1023,1024,1102,1106', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1107, 1024, '菠萝类', '菠萝类', 3, 'boluolei', 'bll', '1023,1024,1107', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1108, 1107, '普通菠萝', '普通菠萝', 4, 'putongboluo', 'ptbl', '1023,1024,1107,1108', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1109, 1107, '进口菠萝', '进口菠萝', 4, 'jinkouboluo', 'jkbl', '1023,1024,1107,1109', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1110, 1107, '香水菠萝', '香水菠萝', 4, 'xiangshuiboluo', 'xsbl', '1023,1024,1107,1110', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1111, 1107, '无眼菠萝', '无眼菠萝', 4, 'wuyanboluo', 'wybl', '1023,1024,1107,1111', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1112, 1107, '都乐菠萝', '都乐菠萝', 4, 'douleboluo', 'dlbl', '1023,1024,1107,1112', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1113, 1107, '菜菠萝', '菜菠萝', 4, 'caiboluo', 'cbl', '1023,1024,1107,1113', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1114, 1107, '甜心小菠萝', '甜心小菠萝', 4, 'tianxinxiaoboluo', 'txxbl', '1023,1024,1107,1114', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1115, 1107, '佳农菠萝', '佳农菠萝', 4, 'jianongboluo', 'jnbl', '1023,1024,1107,1115', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1116, 1107, '凤梨', '凤梨', 4, 'fengli', 'fl', '1023,1024,1107,1116', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1117, 1107, '金钻凤梨', '金钻凤梨', 4, 'jinzuanfengli', 'jzfl', '1023,1024,1107,1117', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1118, 1107, '尖蜜拉', '尖蜜拉', 4, 'jianmila', 'jml', '1023,1024,1107,1118', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1119, 1107, '菠萝蜜', '菠萝蜜', 4, 'boluomi', 'blm', '1023,1024,1107,1119', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1120, 1107, '菠萝蜜肉', '菠萝蜜肉', 4, 'boluomirou', 'blmr', '1023,1024,1107,1120', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1121, 1024, '榴莲类', '榴莲类', 3, 'liulianlei', 'lll', '1023,1024,1121', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1122, 1121, '榴莲', '榴莲', 4, 'liulian', 'll', '1023,1024,1121,1122', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1123, 1121, '榴莲肉', '榴莲肉', 4, 'liulianrou', 'llr', '1023,1024,1121,1123', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1124, 1121, '冷冻榴莲', '冷冻榴莲', 4, 'lengdongliulian', 'ldll', '1023,1024,1121,1124', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1125, 1121, '榴莲饼', '榴莲饼', 4, 'liulianbing', 'llb', '1023,1024,1121,1125', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1126, 1024, '石榴', '石榴', 3, 'shiliu', 'sl', '1023,1024,1126', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1127, 1126, '普通石榴', '普通石榴', 4, 'putongshiliu', 'ptsl', '1023,1024,1126,1127', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1128, 1126, '鲜石榴汁', '鲜石榴汁', 4, 'xianshiliuzhi', 'xslz', '1023,1024,1126,1128', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1129, 1126, '软石榴', '软石榴', 4, 'ruanshiliu', 'rsl', '1023,1024,1126,1129', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1130, 1024, '无花果', '无花果', 3, 'wuhuaguo', 'whg', '1023,1024,1130', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1131, 1024, '人参果', '人参果', 3, 'rencanguo', 'rcg', '1023,1024,1131', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1132, 1024, '人心果', '人心果', 3, 'renxinguo', 'rxg', '1023,1024,1132', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1133, 1024, '蒲桃', '蒲桃', 3, 'putao', 'pt', '1023,1024,1133', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1134, 1024, '桑葚', '桑葚', 3, 'sangshen', 'ss', '1023,1024,1134', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1135, 1024, '草莓类', '草莓类', 3, 'caomeilei', 'cml', '1023,1024,1135', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1136, 1135, '普通草莓', '普通草莓', 4, 'putongcaomei', 'ptcm', '1023,1024,1135,1136', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1137, 1135, '杏香草莓', '杏香草莓', 4, 'xingxiangcaomei', 'xxcm', '1023,1024,1135,1137', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1138, 1135, '牛奶草莓', '牛奶草莓', 4, 'niunaicaomei', 'nncm', '1023,1024,1135,1138', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1139, 1135, '双流草莓', '双流草莓', 4, 'shuangliucaomei', 'slcm', '1023,1024,1135,1139', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1140, 1135, '巧克力草莓', '巧克力草莓', 4, 'qiaokelicaomei', 'qklcm', '1023,1024,1135,1140', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1141, 1135, '丰香草莓', '丰香草莓', 4, 'fengxiangcaomei', 'fxcm', '1023,1024,1135,1141', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1142, 1135, '九九草莓', '九九草莓', 4, 'jiujiucaomei', 'jjcm', '1023,1024,1135,1142', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1143, 1135, '徐州草莓', '徐州草莓', 4, 'xuzhoucaomei', 'xzcm', '1023,1024,1135,1143', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1144, 1135, '红颜草莓', '红颜草莓', 4, 'hongyancaomei', 'hycm', '1023,1024,1135,1144', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1145, 1135, '白雪公主', '白雪公主', 4, 'baixuegongzhu', 'bxgz', '1023,1024,1135,1145', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1146, 1135, '日本白草莓', '日本白草莓', 4, 'ribenbaicaomei', 'rbbcm', '1023,1024,1135,1146', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1147, 1135, '奶油草莓', '奶油草莓', 4, 'naiyoucaomei', 'nycm', '1023,1024,1135,1147', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1148, 1135, '鬼绿甘草莓', '鬼绿甘草莓', 4, 'guilvgancaomei', 'glgcm', '1023,1024,1135,1148', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1149, 1135, '红叶草莓', '红叶草莓', 4, 'hongyecaomei', 'hycm', '1023,1024,1135,1149', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1150, 1135, '皮草莓', '皮草莓', 4, 'picaomei', 'pcm', '1023,1024,1135,1150', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1151, 1135, '章机草莓', '章机草莓', 4, 'zhangjicaomei', 'zjcm', '1023,1024,1135,1151', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1152, 1135, '八月草莓', '八月草莓', 4, 'bayuecaomei', 'bycm', '1023,1024,1135,1152', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1153, 1024, '沙棘果', '沙棘果', 3, 'shajiguo', 'sjg', '1023,1024,1153', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1154, 1024, '仙人掌果', '仙人掌果', 3, 'xianrenzhangguo', 'xrzg', '1023,1024,1154', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1155, 1024, '花楸果', '花楸果', 3, 'huaqiuguo', 'hqg', '1023,1024,1155', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1156, 1024, '酸角', '酸角', 3, 'suanjiao', 'sj', '1023,1024,1156', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1157, 1024, '树莓果', '树莓果', 3, 'shumeiguo', 'smg', '1023,1024,1157', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1158, 1024, '蓝靛果', '蓝靛果', 3, 'landianguo', 'ldg', '1023,1024,1158', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1159, 1024, '白刺果', '白刺果', 3, 'baiciguo', 'bcg', '1023,1024,1159', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1160, 1024, '嘉宝果', '嘉宝果', 3, 'jiabaoguo', 'jbg', '1023,1024,1160', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1161, 1024, '灯笼果', '灯笼果', 3, 'denglongguo', 'dlg', '1023,1024,1161', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1162, 1024, '莓类', '莓类', 3, 'meilei', 'ml', '1023,1024,1162', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1163, 1162, '黑莓', '黑莓', 4, 'heimei', 'hm', '1023,1024,1162,1163', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1164, 1162, '蓝莓', '蓝莓', 4, 'lanmei', 'lm', '1023,1024,1162,1164', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1165, 1162, '蔓越莓', '蔓越莓', 4, 'manyuemei', 'mym', '1023,1024,1162,1165', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1166, 1162, '杜松子', '杜松子', 4, 'dusongzi', 'dsz', '1023,1024,1162,1166', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1167, 1162, '金纽扣', '金纽扣', 4, 'jinniukou', 'jnk', '1023,1024,1162,1167', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1168, 1024, '莲雾', '莲雾', 3, 'lianwu', 'lw', '1023,1024,1168', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1169, 1168, '普通莲雾', '普通莲雾', 4, 'putonglianwu', 'ptlw', '1023,1024,1168,1169', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1170, 1168, '台湾黑珍珠莲雾', '台湾黑珍珠莲雾', 4, 'taiwanheizhenzhulianwu', 'twhzzlw', '1023,1024,1168,1170', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1171, 1168, '红宝石莲雾', '红宝石莲雾', 4, 'hongbaoshilianwu', 'hbslw', '1023,1024,1168,1171', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1172, 1024, '芭乐果', '芭乐果', 3, 'baleguo', 'blg', '1023,1024,1172', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1173, 1024, '番石榴', '番石榴', 3, 'fanshiliu', 'fsl', '1023,1024,1173', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1174, 1024, '地稔', '地稔', 3, 'diren', 'dr', '1023,1024,1174', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1175, 1023, '核果类', '核果类', 2, 'heguolei', 'hgl', '1023,1175', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1176, 1175, '桃类', '桃类', 3, 'taolei', 'tl', '1023,1175,1176', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1177, 1176, '毛桃', '毛桃', 4, 'maotao', 'mt', '1023,1175,1176,1177', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1178, 1176, '油桃', '油桃', 4, 'youtao', 'yt', '1023,1175,1176,1178', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1179, 1176, '枣油桃', '枣油桃', 4, 'zaoyoutao', 'zyt', '1023,1175,1176,1179', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1180, 1176, '中油八号油桃', '中油八号油桃', 4, 'zhongyoubahaoyoutao', 'zybhyt', '1023,1175,1176,1180', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1181, 1176, '蟠桃', '蟠桃', 4, 'pantao', 'pt', '1023,1175,1176,1181', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1182, 1176, '水蜜桃', '水蜜桃', 4, 'shuimitao', 'smt', '1023,1175,1176,1182', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1183, 1176, '黄桃', '黄桃', 4, 'huangtao', 'ht', '1023,1175,1176,1183', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1184, 1176, '平谷大桃', '平谷大桃', 4, 'pinggudatao', 'pgdt', '1023,1175,1176,1184', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1185, 1176, '雨花露桃', '雨花露桃', 4, 'yuhualutao', 'yhlt', '1023,1175,1176,1185', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1186, 1176, '中油八油桃', '中油八油桃', 4, 'zhongyoubayoutao', 'zybyt', '1023,1175,1176,1186', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1187, 1176, '新小油桃', '新小油桃', 4, 'xinxiaoyoutao', 'xxyt', '1023,1175,1176,1187', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1188, 1176, '油蟠桃', '油蟠桃', 4, 'youpantao', 'ypt', '1023,1175,1176,1188', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1189, 1176, '枣蜜桃', '枣蜜桃', 4, 'zaomitao', 'zmt', '1023,1175,1176,1189', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1190, 1176, '龙泉蜜桃', '龙泉蜜桃', 4, 'longquanmitao', 'lqmt', '1023,1175,1176,1190', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1191, 1176, '黄油桃', '黄油桃', 4, 'huangyoutao', 'hyt', '1023,1175,1176,1191', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1192, 1176, '湖北春桃', '湖北春桃', 4, 'hubeichuntao', 'hbct', '1023,1175,1176,1192', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1193, 1176, '五昌桃', '五昌桃', 4, 'wuchangtao', 'wct', '1023,1175,1176,1193', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1194, 1175, '李子类', '李子类', 3, 'lizilei', 'lzl', '1023,1175,1194', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1195, 1194, '普通李子', '普通李子', 4, 'putonglizi', 'ptlz', '1023,1175,1194,1195', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1196, 1194, '进口雪丝李', '进口雪丝李', 4, 'jinkouxuesili', 'jkxsl', '1023,1175,1194,1196', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1197, 1194, '澳洲李子', '澳洲李子', 4, 'aozhoulizi', 'azlz', '1023,1175,1194,1197', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1198, 1194, '红宝石李子', '红宝石李子', 4, 'hongbaoshilizi', 'hbslz', '1023,1175,1194,1198', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1199, 1194, '鸡血李', '鸡血李', 4, 'jixueli', 'jxl', '1023,1175,1194,1199', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1200, 1194, '脆红李', '脆红李', 4, 'cuihongli', 'chl', '1023,1175,1194,1200', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1201, 1194, '青脆李', '青脆李', 4, 'qingcuili', 'qcl', '1023,1175,1194,1201', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1202, 1194, '黑布朗', '黑布朗', 4, 'heibulang', 'hbl', '1023,1175,1194,1202', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1203, 1194, '桃形李', '桃形李', 4, 'taoxingli', 'txl', '1023,1175,1194,1203', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1204, 1194, '蜂糖李', '蜂糖李', 4, 'fengtangli', 'ftl', '1023,1175,1194,1204', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1205, 1194, '秀洲携李', '秀洲携李', 4, 'xiuzhouxieli', 'xzxl', '1023,1175,1194,1205', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1206, 1194, '江黄李', '江黄李', 4, 'jianghuangli', 'jhl', '1023,1175,1194,1206', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1207, 1194, '半边红李', '半边红李', 4, 'banbianhongli', 'bbhl', '1023,1175,1194,1207', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1208, 1194, '珍珠李', '珍珠李', 4, 'zhenzhuli', 'zzl', '1023,1175,1194,1208', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1209, 1194, '酥李', '酥李', 4, 'suli', 'sl', '1023,1175,1194,1209', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1210, 1194, '沙子空心李', '沙子空心李', 4, 'shazikongxinli', 'szkxl', '1023,1175,1194,1210', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1211, 1194, '焦黄李', '焦黄李', 4, 'jiaohuangli', 'jhl', '1023,1175,1194,1211', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1212, 1194, '黑布李', '黑布李', 4, 'heibuli', 'hbl', '1023,1175,1194,1212', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1213, 1194, '四月李', '四月李', 4, 'siyueli', 'syl', '1023,1175,1194,1213', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1214, 1194, '五月脆', '五月脆', 4, 'wuyuecui', 'wyc', '1023,1175,1194,1214', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1215, 1194, '三华李', '三华李', 4, 'sanhuali', 'shl', '1023,1175,1194,1215', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1216, 1175, '枣类', '枣类', 3, 'zaolei', 'zl', '1023,1175,1216', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1217, 1216, '梅枣', '梅枣', 4, 'meizao', 'mz', '1023,1175,1216,1217', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1218, 1216, '大枣', '大枣', 4, 'dazao', 'dz', '1023,1175,1216,1218', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1219, 1216, '脆枣', '脆枣', 4, 'cuizao', 'cz', '1023,1175,1216,1219', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1220, 1216, '青枣', '青枣', 4, 'qingzao', 'qz', '1023,1175,1216,1220', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1221, 1216, '冬枣', '冬枣', 4, 'dongzao', 'dz', '1023,1175,1216,1221', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1222, 1216, '蜜枣', '蜜枣', 4, 'mizao', 'mz', '1023,1175,1216,1222', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1223, 1216, '黑枣', '黑枣', 4, 'heizao', 'hz', '1023,1175,1216,1223', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1224, 1216, '酒枣', '酒枣', 4, 'jiuzao', 'jz', '1023,1175,1216,1224', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1225, 1216, '椰枣', '椰枣', 4, 'yezao', 'yz', '1023,1175,1216,1225', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1226, 1216, '酸枣', '酸枣', 4, 'suanzao', 'sz', '1023,1175,1216,1226', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1227, 1216, '沙枣', '沙枣', 4, 'shazao', 'sz', '1023,1175,1216,1227', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1228, 1216, '圆枣', '圆枣', 4, 'yuanzao', 'yz', '1023,1175,1216,1228', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1229, 1175, '杏类', '杏类', 3, 'xinglei', 'xl', '1023,1175,1229', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1230, 1229, '普通杏', '普通杏', 4, 'putongxing', 'ptx', '1023,1175,1229,1230', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1231, 1229, '凯特杏', '凯特杏', 4, 'kaitexing', 'ktx', '1023,1175,1229,1231', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1232, 1229, '红太阳杏', '红太阳杏', 4, 'hongtaiyangxing', 'htyx', '1023,1175,1229,1232', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1233, 1229, '软枣', '软枣', 4, 'ruanzao', 'rz', '1023,1175,1229,1233', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1234, 1229, '吊干杏', '吊干杏', 4, 'diaoganxing', 'dgx', '1023,1175,1229,1234', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1235, 1229, '小白杏', '小白杏', 4, 'xiaobaixing', 'xbx', '1023,1175,1229,1235', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1236, 1175, '梅子类', '梅子类', 3, 'meizilei', 'mzl', '1023,1175,1236', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1237, 1236, '杨梅', '杨梅', 4, 'yangmei', 'ym', '1023,1175,1236,1237', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1238, 1236, '西梅', '西梅', 4, 'ximei', 'xm', '1023,1175,1236,1238', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1239, 1236, '乌梅', '乌梅', 4, 'wumei', 'wm', '1023,1175,1236,1239', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1240, 1236, '青梅', '青梅', 4, 'qingmei', 'qm', '1023,1175,1236,1240', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1241, 1175, '芒果类', '芒果类', 3, 'mangguolei', 'mgl', '1023,1175,1241', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1242, 1241, '苹果芒', '苹果芒', 4, 'pingguomang', 'pgm', '1023,1175,1241,1242', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1243, 1241, '小台芒', '小台芒', 4, 'xiaotaimang', 'xtm', '1023,1175,1241,1243', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1244, 1241, '大台芒', '大台芒', 4, 'dataimang', 'dtm', '1023,1175,1241,1244', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1245, 1241, '腰芒', '腰芒', 4, 'yaomang', 'ym', '1023,1175,1241,1245', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1246, 1241, '青芒', '青芒', 4, 'qingmang', 'qm', '1023,1175,1241,1246', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1247, 1241, '大青芒', '大青芒', 4, 'daqingmang', 'dqm', '1023,1175,1241,1247', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1248, 1241, '农芒', '农芒', 4, 'nongmang', 'nm', '1023,1175,1241,1248', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1249, 1241, '小农芒', '小农芒', 4, 'xiaonongmang', 'xnm', '1023,1175,1241,1249', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1250, 1241, '黄芒果', '黄芒果', 4, 'huangmangguo', 'hmg', '1023,1175,1241,1250', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1251, 1241, '澳芒', '澳芒', 4, 'aomang', 'am', '1023,1175,1241,1251', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1252, 1241, '攀枝花芒果', '攀枝花芒果', 4, 'panzhihuamangguo', 'pzhmg', '1023,1175,1241,1252', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1253, 1241, '红金龙芒果', '红金龙芒果', 4, 'hongjinlongmangguo', 'hjlmg', '1023,1175,1241,1253', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1254, 1241, '黄金芒', '黄金芒', 4, 'huangjinmang', 'hjm', '1023,1175,1241,1254', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1255, 1241, '香芒', '香芒', 4, 'xiangmang', 'xm', '1023,1175,1241,1255', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1256, 1241, '尖椒芒', '尖椒芒', 4, 'jianjiaomang', 'jjm', '1023,1175,1241,1256', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1257, 1241, '水仙芒', '水仙芒', 4, 'shuixianmang', 'sxm', '1023,1175,1241,1257', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1258, 1241, '桂七芒果', '桂七芒果', 4, 'guiqimangguo', 'gqmg', '1023,1175,1241,1258', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1259, 1241, '吕宋芒', '吕宋芒', 4, 'lvsongmang', 'lsm', '1023,1175,1241,1259', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1260, 1241, '贵妃芒', '贵妃芒', 4, 'guifeimang', 'gfm', '1023,1175,1241,1260', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1261, 1241, '尖嘴芒', '尖嘴芒', 4, 'jianzuimang', 'jzm', '1023,1175,1241,1261', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1262, 1241, '越南芒', '越南芒', 4, 'yuenanmang', 'ynm', '1023,1175,1241,1262', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1263, 1241, '凯台芒', '凯台芒', 4, 'kaitaimang', 'ktm', '1023,1175,1241,1263', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1264, 1241, '鹰嘴芒', '鹰嘴芒', 4, 'yingzuimang', 'yzm', '1023,1175,1241,1264', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1265, 1175, '牛油果', '牛油果', 3, 'niuyouguo', 'nyg', '1023,1175,1265', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1266, 1175, '牛甘果', '牛甘果', 3, 'niuganguo', 'ngg', '1023,1175,1266', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1267, 1175, '荔枝类', '荔枝类', 3, 'lizhilei', 'lzl', '1023,1175,1267', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1268, 1267, '番荔枝', '番荔枝', 4, 'fanlizhi', 'flz', '1023,1175,1267,1268', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1269, 1267, '小核荔枝', '小核荔枝', 4, 'xiaohelizhi', 'xhlz', '1023,1175,1267,1269', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1270, 1267, '红毛丹荔枝', '红毛丹荔枝', 4, 'hongmaodanlizhi', 'hmdlz', '1023,1175,1267,1270', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1271, 1267, '妃子笑荔枝', '妃子笑荔枝', 4, 'feizixiaolizhi', 'fzxlz', '1023,1175,1267,1271', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1272, 1267, '荔枝王', '荔枝王', 4, 'lizhiwang', 'lzw', '1023,1175,1267,1272', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1273, 1267, '桂味荔枝', '桂味荔枝', 4, 'guiweilizhi', 'gwlz', '1023,1175,1267,1273', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1274, 1267, '乌叶荔枝', '乌叶荔枝', 4, 'wuyelizhi', 'wylz', '1023,1175,1267,1274', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1275, 1267, '兰竹荔枝', '兰竹荔枝', 4, 'lanzhulizhi', 'lzlz', '1023,1175,1267,1275', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1276, 1267, '白腊荔枝', '白腊荔枝', 4, 'bailalizhi', 'bllz', '1023,1175,1267,1276', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1277, 1267, '糯米荔枝', '糯米荔枝', 4, 'nuomilizhi', 'nmlz', '1023,1175,1267,1277', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1278, 1267, '桂花香荔枝', '桂花香荔枝', 4, 'guihuaxianglizhi', 'ghxlz', '1023,1175,1267,1278', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1279, 1267, '鸡嘴荔枝', '鸡嘴荔枝', 4, 'jizuilizhi', 'jzlz', '1023,1175,1267,1279', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1280, 1267, '白糖罂荔枝', '白糖罂荔枝', 4, 'baitangyinglizhi', 'btylz', '1023,1175,1267,1280', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1281, 1267, '越南荔枝', '越南荔枝', 4, 'yuenanlizhi', 'ynlz', '1023,1175,1267,1281', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1282, 1267, '玉荷包荔枝', '玉荷包荔枝', 4, 'yuhebaolizhi', 'yhblz', '1023,1175,1267,1282', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1283, 1267, '三月红荔枝', '三月红荔枝', 4, 'sanyuehonglizhi', 'syhlz', '1023,1175,1267,1283', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1284, 1267, '无核荔枝', '无核荔枝', 4, 'wuhelizhi', 'whlz', '1023,1175,1267,1284', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1285, 1175, '龙眼', '龙眼', 3, 'longyan', 'ly', '1023,1175,1285', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1286, 1285, '普通龙眼', '普通龙眼', 4, 'putonglongyan', 'ptly', '1023,1175,1285,1286', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1287, 1285, '小核龙眼', '小核龙眼', 4, 'xiaohelongyan', 'xhly', '1023,1175,1285,1287', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1288, 1175, '樱桃类', '樱桃类', 3, 'yingtaolei', 'ytl', '1023,1175,1288', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1289, 1288, '国产大樱桃', '国产大樱桃', 4, 'guochandayingtao', 'gcdyt', '1023,1175,1288,1289', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1290, 1288, '国产小樱桃', '国产小樱桃', 4, 'guochanxiaoyingtao', 'gcxyt', '1023,1175,1288,1290', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1291, 1288, '进口樱桃', '进口樱桃', 4, 'jinkouyingtao', 'jkyt', '1023,1175,1288,1291', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1292, 1288, '攀枝花务本樱桃', '攀枝花务本樱桃', 4, 'panzhihuawubenyingtao', 'pzhwbyt', '1023,1175,1288,1292', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1293, 1288, '沙蜜托樱桃', '沙蜜托樱桃', 4, 'shamituoyingtao', 'smtyt', '1023,1175,1288,1293', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1294, 1288, '拉宾斯樱桃', '拉宾斯樱桃', 4, 'labinsiyingtao', 'lbsyt', '1023,1175,1288,1294', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1295, 1288, '雷尼樱桃', '雷尼樱桃', 4, 'leiniyingtao', 'lnyt', '1023,1175,1288,1295', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1296, 1288, '先锋樱桃', '先锋樱桃', 4, 'xianfengyingtao', 'xfyt', '1023,1175,1288,1296', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1297, 1288, '美早樱桃', '美早樱桃', 4, 'meizaoyingtao', 'mzyt', '1023,1175,1288,1297', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1298, 1288, '红灯樱桃', '红灯樱桃', 4, 'hongdengyingtao', 'hdyt', '1023,1175,1288,1298', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1299, 1288, '黄蜜樱桃', '黄蜜樱桃', 4, 'huangmiyingtao', 'hmyt', '1023,1175,1288,1299', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1300, 1288, '黄樱桃', '黄樱桃', 4, 'huangyingtao', 'hyt', '1023,1175,1288,1300', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1301, 1175, '车厘子', '车厘子', 3, 'chelizi', 'clz', '1023,1175,1301', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1302, 1175, '橄榄类', '橄榄类', 3, 'ganlanlei', 'gll', '1023,1175,1302', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1303, 1302, '普通橄榄', '普通橄榄', 4, 'putongganlan', 'ptgl', '1023,1175,1302,1303', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1304, 1302, '青橄榄', '青橄榄', 4, 'qingganlan', 'qgl', '1023,1175,1302,1304', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1305, 1302, '茶橄榄', '茶橄榄', 4, 'chaganlan', 'cgl', '1023,1175,1302,1305', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1306, 1302, '油橄榄', '油橄榄', 4, 'youganlan', 'ygl', '1023,1175,1302,1306', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1307, 1175, '椰子类', '椰子类', 3, 'yezilei', 'yzl', '1023,1175,1307', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1308, 1307, '椰子', '椰子', 4, 'yezi', 'yz', '1023,1175,1307,1308', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1309, 1307, '椰青', '椰青', 4, 'yeqing', 'yq', '1023,1175,1307,1309', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1310, 1307, '椰汁', '椰汁', 4, 'yezhi', 'yz', '1023,1175,1307,1310', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1311, 1307, '椰冻', '椰冻', 4, 'yedong', 'yd', '1023,1175,1307,1311', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1312, 1175, '海棠果', '海棠果', 3, 'haitangguo', 'htg', '1023,1175,1312', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1313, 1175, '黄皮果', '黄皮果', 3, 'huangpiguo', 'hpg', '1023,1175,1313', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1314, 1175, '杨桃', '杨桃', 3, 'yangtao', 'yt', '1023,1175,1314', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1315, 1175, '释迦', '释迦', 3, 'shijia', 'sj', '1023,1175,1315', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1316, 1023, '仁果类', '仁果类', 2, 'renguolei', 'rgl', '1023,1316', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1317, 1316, '苹果类', '苹果类', 3, 'pingguolei', 'pgl', '1023,1316,1317', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1318, 1317, '王林苹果', '王林苹果', 4, 'wanglinpingguo', 'wlpg', '1023,1316,1317,1318', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1319, 1317, '富士苹果', '富士苹果', 4, 'fushipingguo', 'fspg', '1023,1316,1317,1319', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1320, 1317, '红富士苹果', '红富士苹果', 4, 'hongfushipingguo', 'hfspg', '1023,1316,1317,1320', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1321, 1317, '冰糖富士苹果', '冰糖富士苹果', 4, 'bingtangfushipingguo', 'btfspg', '1023,1316,1317,1321', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1322, 1317, '红香妃苹果', '红香妃苹果', 4, 'hongxiangfeipingguo', 'hxfpg', '1023,1316,1317,1322', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1323, 1317, '红玫瑰苹果', '红玫瑰苹果', 4, 'hongmeiguipingguo', 'hmgpg', '1023,1316,1317,1323', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1324, 1317, '加力果', '加力果', 4, 'jialiguo', 'jlg', '1023,1316,1317,1324', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1325, 1317, '红星苹果', '红星苹果', 4, 'hongxingpingguo', 'hxpg', '1023,1316,1317,1325', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1326, 1317, '爱妃苹果', '爱妃苹果', 4, 'aifeipingguo', 'afpg', '1023,1316,1317,1326', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1327, 1317, '黄元帅苹果', '黄元帅苹果', 4, 'huangyuanshuaipingguo', 'hyspg', '1023,1316,1317,1327', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1328, 1317, '国光苹果', '国光苹果', 4, 'guoguangpingguo', 'ggpg', '1023,1316,1317,1328', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1329, 1317, '嘎啦果', '嘎啦果', 4, 'galaguo', 'glg', '1023,1316,1317,1329', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1330, 1317, '蛇果', '蛇果', 4, 'sheguo', 'sg', '1023,1316,1317,1330', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1331, 1317, '花牛苹果', '花牛苹果', 4, 'huaniupingguo', 'hnpg', '1023,1316,1317,1331', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1332, 1317, '青苹果', '青苹果', 4, 'qingpingguo', 'qpg', '1023,1316,1317,1332', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1333, 1317, '阿克苏苹果', '阿克苏苹果', 4, 'akesupingguo', 'akspg', '1023,1316,1317,1333', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1334, 1317, '丑苹果', '丑苹果', 4, 'choupingguo', 'cpg', '1023,1316,1317,1334', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1335, 1317, '红加力苹果', '红加力苹果', 4, 'hongjialipingguo', 'hjlpg', '1023,1316,1317,1335', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1336, 1317, '乔纳金苹果', '乔纳金苹果', 4, 'qiaonajinpingguo', 'qnjpg', '1023,1316,1317,1336', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1337, 1317, '红王将苹果', '红王将苹果', 4, 'hongwangjiangpingguo', 'hwjpg', '1023,1316,1317,1337', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1338, 1317, '寒富苹果', '寒富苹果', 4, 'hanfupingguo', 'hfpg', '1023,1316,1317,1338', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1339, 1317, '斗南苹果', '斗南苹果', 4, 'dounanpingguo', 'dnpg', '1023,1316,1317,1339', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1340, 1317, '昭通苹果', '昭通苹果', 4, 'zhaotongpingguo', 'ztpg', '1023,1316,1317,1340', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1341, 1317, '花红苹果', '花红苹果', 4, 'huahongpingguo', 'hhpg', '1023,1316,1317,1341', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1342, 1316, '梨类', '梨类', 3, 'lilei', 'll', '1023,1316,1342', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1343, 1342, '青梨', '青梨', 4, 'qingli', 'ql', '1023,1316,1342,1343', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1344, 1342, '青花梨', '青花梨', 4, 'qinghuali', 'qhl', '1023,1316,1342,1344', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1345, 1342, '早酥梨', '早酥梨', 4, 'zaosuli', 'zsl', '1023,1316,1342,1345', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1346, 1342, '红香酥', '红香酥', 4, 'hongxiangsu', 'hxs', '1023,1316,1342,1346', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1347, 1342, '贡梨', '贡梨', 4, 'gongli', 'gl', '1023,1316,1342,1347', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1348, 1342, '天山梨', '天山梨', 4, 'tianshanli', 'tsl', '1023,1316,1342,1348', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1349, 1342, '普通梨', '普通梨', 4, 'putongli', 'ptl', '1023,1316,1342,1349', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1350, 1342, '四季梨', '四季梨', 4, 'sijili', 'sjl', '1023,1316,1342,1350', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1351, 1342, '香水梨', '香水梨', 4, 'xiangshuili', 'xsl', '1023,1316,1342,1351', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1352, 1342, '京白梨', '京白梨', 4, 'jingbaili', 'jbl', '1023,1316,1342,1352', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1353, 1342, '蜜梨', '蜜梨', 4, 'mili', 'ml', '1023,1316,1342,1353', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1354, 1342, '莱阳梨', '莱阳梨', 4, 'laiyangli', 'lyl', '1023,1316,1342,1354', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1355, 1342, '金啤梨', '金啤梨', 4, 'jinpili', 'jpl', '1023,1316,1342,1355', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1356, 1342, '丑梨', '丑梨', 4, 'chouli', 'cl', '1023,1316,1342,1356', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1357, 1342, '冰糖梨', '冰糖梨', 4, 'bingtangli', 'btl', '1023,1316,1342,1357', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1358, 1342, '鸭梨', '鸭梨', 4, 'yali', 'yl', '1023,1316,1342,1358', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1359, 1342, '白梨', '白梨', 4, 'baili', 'bl', '1023,1316,1342,1359', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1360, 1342, '丰水梨', '丰水梨', 4, 'fengshuili', 'fsl', '1023,1316,1342,1360', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1361, 1342, '皇冠梨', '皇冠梨', 4, 'huangguanli', 'hgl', '1023,1316,1342,1361', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1362, 1342, '砂梨', '砂梨', 4, 'shali', 'sl', '1023,1316,1342,1362', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1363, 1342, '苹果梨', '苹果梨', 4, 'pingguoli', 'pgl', '1023,1316,1342,1363', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1364, 1342, '南果梨', '南果梨', 4, 'nanguoli', 'ngl', '1023,1316,1342,1364', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1365, 1342, '雪梨', '雪梨', 4, 'xueli', 'xl', '1023,1316,1342,1365', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1366, 1342, '刺梨', '刺梨', 4, 'cili', 'cl', '1023,1316,1342,1366', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1367, 1342, '啤梨', '啤梨', 4, 'pili', 'pl', '1023,1316,1342,1367', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1368, 1342, '水晶梨', '水晶梨', 4, 'shuijingli', 'sjl', '1023,1316,1342,1368', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1369, 1342, '秋月梨', '秋月梨', 4, 'qiuyueli', 'qyl', '1023,1316,1342,1369', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1370, 1342, '酥梨', '酥梨', 4, 'suli', 'sl', '1023,1316,1342,1370', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1371, 1342, '香梨', '香梨', 4, 'xiangli', 'xl', '1023,1316,1342,1371', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1372, 1342, '雪花梨', '雪花梨', 4, 'xuehuali', 'xhl', '1023,1316,1342,1372', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1373, 1342, '伏梨', '伏梨', 4, 'fuli', 'fl', '1023,1316,1342,1373', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1374, 1342, '茄梨', '茄梨', 4, 'qieli', 'ql', '1023,1316,1342,1374', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1375, 1342, '安梨', '安梨', 4, 'anli', 'al', '1023,1316,1342,1375', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1376, 1342, '糖梨', '糖梨', 4, 'tangli', 'tl', '1023,1316,1342,1376', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1377, 1342, '大头梨', '大头梨', 4, 'datouli', 'dtl', '1023,1316,1342,1377', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1378, 1342, '乾隆贡梨', '乾隆贡梨', 4, 'qianlonggongli', 'qlgl', '1023,1316,1342,1378', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1379, 1342, '砀山酥梨', '砀山酥梨', 4, 'dangshansuli', 'dssl', '1023,1316,1342,1379', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1380, 1342, '翠玉冰糖梨', '翠玉冰糖梨', 4, 'cuiyubingtangli', 'cybtl', '1023,1316,1342,1380', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1381, 1342, '库尔勒香梨', '库尔勒香梨', 4, 'kuerlexiangli', 'kelxl', '1023,1316,1342,1381', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1382, 1342, '锦丰梨', '锦丰梨', 4, 'jinfengli', 'jfl', '1023,1316,1342,1382', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1383, 1342, '贵妃梨', '贵妃梨', 4, 'guifeili', 'gfl', '1023,1316,1342,1383', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1384, 1342, '香庄梨', '香庄梨', 4, 'xiangzhuangli', 'xzl', '1023,1316,1342,1384', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1385, 1316, '山楂', '山楂', 3, 'shanzha', 'sz', '1023,1316,1385', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1386, 1385, '山里红', '山里红', 4, 'shanlihong', 'slh', '1023,1316,1385,1386', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1387, 1316, '枇杷', '枇杷', 3, 'pipa', 'pp', '1023,1316,1387', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1388, 1316, '沙果', '沙果', 3, 'shaguo', 'sg', '1023,1316,1388', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1389, 1388, '普通沙果', '普通沙果', 4, 'putongshaguo', 'ptsg', '1023,1316,1388,1389', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1390, 1388, 'K9沙果', 'K9沙果', 4, 'K9shaguo', 'K9sg', '1023,1316,1388,1390', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1391, 1388, '123沙果', '123沙果', 4, '123shaguo', '123sg', '1023,1316,1388,1391', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1392, 1388, '龙冠沙果', '龙冠沙果', 4, 'longguanshaguo', 'lgsg', '1023,1316,1388,1392', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1393, 1316, '山竹', '山竹', 3, 'shanzhu', 'sz', '1023,1316,1393', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1394, 1316, '钙果', '钙果', 3, 'gaiguo', 'gg', '1023,1316,1394', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1395, 1316, '红参果', '红参果', 3, 'hongcanguo', 'hcg', '1023,1316,1395', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1396, 1316, '仁面果', '仁面果', 3, 'renmianguo', 'rmg', '1023,1316,1396', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1397, 1023, '柑橘类', '柑橘类', 2, 'ganjulei', 'gjl', '1023,1397', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1398, 1397, '柑类', '柑类', 3, 'ganlei', 'gl', '1023,1397,1398', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1399, 1398, '沃柑', '沃柑', 4, 'wogan', 'wg', '1023,1397,1398,1399', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1400, 1398, '芦柑', '芦柑', 4, 'lugan', 'lg', '1023,1397,1398,1400', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1401, 1398, '蜜柑', '蜜柑', 4, 'migan', 'mg', '1023,1397,1398,1401', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1402, 1398, '丑柑', '丑柑', 4, 'chougan', 'cg', '1023,1397,1398,1402', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1403, 1398, '皇帝贡柑', '皇帝贡柑', 4, 'huangdigonggan', 'hdgg', '1023,1397,1398,1403', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1404, 1398, '蘑菇柑', '蘑菇柑', 4, 'mogugan', 'mgg', '1023,1397,1398,1404', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1405, 1398, '耙耙柑', '耙耙柑', 4, 'papagan', 'ppg', '1023,1397,1398,1405', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1406, 1398, '苹果柑', '苹果柑', 4, 'pingguogan', 'pgg', '1023,1397,1398,1406', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1407, 1398, '椪柑', '椪柑', 4, 'penggan', 'pg', '1023,1397,1398,1407', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1408, 1398, '黄帝柑', '黄帝柑', 4, 'huangdigan', 'hdg', '1023,1397,1398,1408', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1409, 1398, '黄果柑', '黄果柑', 4, 'huangguogan', 'hgg', '1023,1397,1398,1409', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1410, 1398, '牛奶柑', '牛奶柑', 4, 'niunaigan', 'nng', '1023,1397,1398,1410', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1411, 1397, '橘类', '橘类', 3, 'julei', 'jl', '1023,1397,1411', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1412, 1411, '普通桔子', '普通桔子', 4, 'putongjiezi', 'ptjz', '1023,1397,1411,1412', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1413, 1411, '南丰桔', '南丰桔', 4, 'nanfengjie', 'nfj', '1023,1397,1411,1413', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1414, 1411, '臭皮桔', '臭皮桔', 4, 'choupijie', 'cpj', '1023,1397,1411,1414', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1415, 1411, '柳月桔', '柳月桔', 4, 'liuyuejie', 'lyj', '1023,1397,1411,1415', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1416, 1411, '灯笼桔', '灯笼桔', 4, 'denglongjie', 'dlj', '1023,1397,1411,1416', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1417, 1411, '八月桔', '八月桔', 4, 'bayuejie', 'byj', '1023,1397,1411,1417', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1418, 1411, '南瓜桔', '南瓜桔', 4, 'nanguajie', 'ngj', '1023,1397,1411,1418', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1419, 1411, '小金桔', '小金桔', 4, 'xiaojinjie', 'xjj', '1023,1397,1411,1419', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1420, 1411, '青桔', '青桔', 4, 'qingjie', 'qj', '1023,1397,1411,1420', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1421, 1411, '金桔', '金桔', 4, 'jinjie', 'jj', '1023,1397,1411,1421', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1422, 1411, '丑桔', '丑桔', 4, 'choujie', 'cj', '1023,1397,1411,1422', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1423, 1411, '沙糖桔', '沙糖桔', 4, 'shatangjie', 'stj', '1023,1397,1411,1423', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1424, 1411, '鲜金钱桔', '鲜金钱桔', 4, 'xianjinqianjie', 'xjqj', '1023,1397,1411,1424', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1425, 1411, '马水桔', '马水桔', 4, 'mashuijie', 'msj', '1023,1397,1411,1425', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1426, 1411, '蜜桔', '蜜桔', 4, 'mijie', 'mj', '1023,1397,1411,1426', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1427, 1411, '澳橘', '澳橘', 4, 'aoju', 'aj', '1023,1397,1411,1427', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1428, 1411, '贡桔', '贡桔', 4, 'gongjie', 'gj', '1023,1397,1411,1428', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1429, 1411, '叶桔', '叶桔', 4, 'yejie', 'yj', '1023,1397,1411,1429', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1430, 1411, '冰糖桔', '冰糖桔', 4, 'bingtangjie', 'btj', '1023,1397,1411,1430', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1431, 1411, '珍珠桔', '珍珠桔', 4, 'zhenzhujie', 'zzj', '1023,1397,1411,1431', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1432, 1411, '阿香蜜桔', '阿香蜜桔', 4, 'axiangmijie', 'axmj', '1023,1397,1411,1432', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1433, 1411, '金钱桔', '金钱桔', 4, 'jinqianjie', 'jqj', '1023,1397,1411,1433', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1434, 1411, '青金桔', '青金桔', 4, 'qingjinjie', 'qjj', '1023,1397,1411,1434', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1435, 1397, '橙类', '橙类', 3, 'chenglei', 'cl', '1023,1397,1435', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1436, 1435, '普通橙子', '普通橙子', 4, 'putongchengzi', 'ptcz', '1023,1397,1435,1436', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1437, 1435, '小橙子', '小橙子', 4, 'xiaochengzi', 'xcz', '1023,1397,1435,1437', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1438, 1435, '爱媛橙子', '爱媛橙子', 4, 'aiyuanchengzi', 'aycz', '1023,1397,1435,1438', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1439, 1435, '脐橙', '脐橙', 4, 'qicheng', 'qc', '1023,1397,1435,1439', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1440, 1435, '血橙', '血橙', 4, 'xuecheng', 'xc', '1023,1397,1435,1440', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1441, 1435, '柳橙', '柳橙', 4, 'liucheng', 'lc', '1023,1397,1435,1441', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1442, 1435, '澳橙', '澳橙', 4, 'aocheng', 'ac', '1023,1397,1435,1442', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1443, 1435, '冰糖橙', '冰糖橙', 4, 'bingtangcheng', 'btc', '1023,1397,1435,1443', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1444, 1435, '大红橙', '大红橙', 4, 'dahongcheng', 'dhc', '1023,1397,1435,1444', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1445, 1435, '甜橙', '甜橙', 4, 'tiancheng', 'tc', '1023,1397,1435,1445', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1446, 1435, '南非橙子', '南非橙子', 4, 'nanfeichengzi', 'nfcz', '1023,1397,1435,1446', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1447, 1435, '丑橙', '丑橙', 4, 'choucheng', 'cc', '1023,1397,1435,1447', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1448, 1435, '果冻橙', '果冻橙', 4, 'guodongcheng', 'gdc', '1023,1397,1435,1448', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1449, 1435, '纽波尔橙', '纽波尔橙', 4, 'niuboercheng', 'nbec', '1023,1397,1435,1449', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1450, 1435, '手掰橙', '手掰橙', 4, 'shoubaicheng', 'sbc', '1023,1397,1435,1450', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1451, 1397, '柚类', '柚类', 3, 'youlei', 'yl', '1023,1397,1451', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1452, 1451, '普通柚子', '普通柚子', 4, 'putongyouzi', 'ptyz', '1023,1397,1451,1452', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1453, 1451, '桔柚', '桔柚', 4, 'jieyou', 'jy', '1023,1397,1451,1453', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1454, 1451, '香妃柚', '香妃柚', 4, 'xiangfeiyou', 'xfy', '1023,1397,1451,1454', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1455, 1451, '青柚', '青柚', 4, 'qingyou', 'qy', '1023,1397,1451,1455', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1456, 1451, '沙田柚', '沙田柚', 4, 'shatianyou', 'sty', '1023,1397,1451,1456', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1457, 1451, '葡萄柚', '葡萄柚', 4, 'putaoyou', 'pty', '1023,1397,1451,1457', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1458, 1451, '西柚', '西柚', 4, 'xiyou', 'xy', '1023,1397,1451,1458', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1459, 1451, '蜜柚', '蜜柚', 4, 'miyou', 'my', '1023,1397,1451,1459', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1460, 1451, '白心柚子', '白心柚子', 4, 'baixinyouzi', 'bxyz', '1023,1397,1451,1460', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1461, 1451, '红心柚子', '红心柚子', 4, 'hongxinyouzi', 'hxyz', '1023,1397,1451,1461', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1462, 1451, '红西柚', '红西柚', 4, 'hongxiyou', 'hxy', '1023,1397,1451,1462', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1463, 1451, '胡柚', '胡柚', 4, 'huyou', 'hy', '1023,1397,1451,1463', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1464, 1451, '雪峰柚', '雪峰柚', 4, 'xuefengyou', 'xfy', '1023,1397,1451,1464', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1465, 1451, '金狮柚', '金狮柚', 4, 'jinshiyou', 'jsy', '1023,1397,1451,1465', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1466, 1451, '常山胡柚', '常山胡柚', 4, 'changshanhuyou', 'cshy', '1023,1397,1451,1466', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1467, 1397, '柠檬类', '柠檬类', 3, 'ningmenglei', 'nml', '1023,1397,1467', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1468, 1467, '黄柠檬', '黄柠檬', 4, 'huangningmeng', 'hnm', '1023,1397,1467,1468', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1469, 1467, '青柠檬', '青柠檬', 4, 'qingningmeng', 'qnm', '1023,1397,1467,1469', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1470, 1467, '小青柠', '小青柠', 4, 'xiaoqingning', 'xqn', '1023,1397,1467,1470', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1471, 1023, '瓜果类', '瓜果类', 2, 'guaguolei', 'ggl', '1023,1471', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1472, 1471, '西瓜类', '西瓜类', 3, 'xigualei', 'xgl', '1023,1471,1472', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1473, 1472, '普通西瓜', '普通西瓜', 4, 'putongxigua', 'ptxg', '1023,1471,1472,1473', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1474, 1472, '甜王瓜', '甜王瓜', 4, 'tianwanggua', 'twg', '1023,1471,1472,1474', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1475, 1472, '脆王瓜', '脆王瓜', 4, 'cuiwanggua', 'cwg', '1023,1471,1472,1475', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1476, 1472, '金城五', '金城五', 4, 'jinchengwu', 'jcw', '1023,1471,1472,1476', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1477, 1472, '缅甸西瓜', '缅甸西瓜', 4, 'miandianxigua', 'mdxg', '1023,1471,1472,1477', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1478, 1472, '魔都西瓜', '魔都西瓜', 4, 'modouxigua', 'mdxg', '1023,1471,1472,1478', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1479, 1472, '一包糖西瓜', '一包糖西瓜', 4, 'yibaotangxigua', 'ybtxg', '1023,1471,1472,1479', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1480, 1472, '硒砂瓜', '硒砂瓜', 4, 'xishagua', 'xsg', '1023,1471,1472,1480', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1481, 1472, '黑美人', '黑美人', 4, 'heimeiren', 'hmr', '1023,1471,1472,1481', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1482, 1472, '麒麟瓜', '麒麟瓜', 4, 'qilingua', 'qlg', '1023,1471,1472,1482', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1483, 1472, '小凤西瓜', '小凤西瓜', 4, 'xiaofengxigua', 'xfxg', '1023,1471,1472,1483', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1484, 1472, '京欣西瓜', '京欣西瓜', 4, 'jingxinxigua', 'jxxg', '1023,1471,1472,1484', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1485, 1472, '红玉西瓜', '红玉西瓜', 4, 'hongyuxigua', 'hyxg', '1023,1471,1472,1485', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1486, 1472, '下野地西瓜', '下野地西瓜', 4, 'xiayedixigua', 'xydxg', '1023,1471,1472,1486', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1487, 1472, '中卫西瓜', '中卫西瓜', 4, 'zhongweixigua', 'zwxg', '1023,1471,1472,1487', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1488, 1472, '西域瓜', '西域瓜', 4, 'xiyugua', 'xyg', '1023,1471,1472,1488', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1489, 1472, '地雷西瓜', '地雷西瓜', 4, 'dileixigua', 'dlxg', '1023,1471,1472,1489', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1490, 1472, '菠萝蜜西瓜', '菠萝蜜西瓜', 4, 'boluomixigua', 'blmxg', '1023,1471,1472,1490', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1491, 1472, '西砂瓜', '西砂瓜', 4, 'xishagua', 'xsg', '1023,1471,1472,1491', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1492, 1471, '甜瓜类', '甜瓜类', 3, 'tiangualei', 'tgl', '1023,1471,1492', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1493, 1492, '普通甜瓜', '普通甜瓜', 4, 'putongtiangua', 'pttg', '1023,1471,1492,1493', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1494, 1492, '哈密瓜', '哈密瓜', 4, 'hamigua', 'hmg', '1023,1471,1492,1494', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1495, 1492, '金香玉哈密瓜', '金香玉哈密瓜', 4, 'jinxiangyuhamigua', 'jxyhmg', '1023,1471,1492,1495', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1496, 1492, '伊丽莎白瓜', '伊丽莎白瓜', 4, 'yilishabaigua', 'ylsbg', '1023,1471,1492,1496', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1497, 1492, '香瓜', '香瓜', 4, 'xianggua', 'xg', '1023,1471,1492,1497', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1498, 1492, '沙白瓜', '沙白瓜', 4, 'shabaigua', 'sbg', '1023,1471,1492,1498', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1499, 1492, '白兰瓜', '白兰瓜', 4, 'bailangua', 'blg', '1023,1471,1492,1499', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1500, 1492, '羊角蜜瓜', '羊角蜜瓜', 4, 'yangjiaomigua', 'yjmg', '1023,1471,1492,1500', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1501, 1492, '金沙蜜瓜', '金沙蜜瓜', 4, 'jinshamigua', 'jsmg', '1023,1471,1492,1501', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1502, 1492, '黄金蜜瓜', '黄金蜜瓜', 4, 'huangjinmigua', 'hjmg', '1023,1471,1492,1502', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1503, 1492, '缅甸密瓜', '缅甸密瓜', 4, 'miandianmigua', 'mdmg', '1023,1471,1492,1503', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1504, 1492, '西洲密瓜', '西洲密瓜', 4, 'xizhoumigua', 'xzmg', '1023,1471,1492,1504', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1505, 1492, '新疆哈密瓜', '新疆哈密瓜', 4, 'xinjianghamigua', 'xjhmg', '1023,1471,1492,1505', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1506, 1492, '玫龙蜜瓜', '玫龙蜜瓜', 4, 'meilongmigua', 'mlmg', '1023,1471,1492,1506', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1507, 1492, '状元瓜', '状元瓜', 4, 'zhuangyuangua', 'zyg', '1023,1471,1492,1507', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1508, 1492, '蜜罐甜瓜', '蜜罐甜瓜', 4, 'miguantiangua', 'mgtg', '1023,1471,1492,1508', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1509, 1492, '黄河蜜瓜', '黄河蜜瓜', 4, 'huanghemigua', 'hhmg', '1023,1471,1492,1509', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1510, 1492, '东方蜜瓜', '东方蜜瓜', 4, 'dongfangmigua', 'dfmg', '1023,1471,1492,1510', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1511, 1492, '网纹瓜', '网纹瓜', 4, 'wangwengua', 'wwg', '1023,1471,1492,1511', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1512, 1492, '网纹(金蜜)', '网纹(金蜜)', 4, 'wangwenjinmi', 'wwjm', '1023,1471,1492,1512', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1513, 1492, '博洋甜瓜', '博洋甜瓜', 4, 'boyangtiangua', 'bytg', '1023,1471,1492,1513', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1514, 1492, '绿宝甜瓜', '绿宝甜瓜', 4, 'lvbaotiangua', 'lbtg', '1023,1471,1492,1514', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1515, 1492, '银瓜', '银瓜', 4, 'yingua', 'yg', '1023,1471,1492,1515', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1516, 1492, '绿香瓜', '绿香瓜', 4, 'lvxianggua', 'lxg', '1023,1471,1492,1516', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1517, 1492, '木瓜', '木瓜', 4, 'mugua', 'mg', '1023,1471,1492,1517', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1518, 1492, '青木瓜', '青木瓜', 4, 'qingmugua', 'qmg', '1023,1471,1492,1518', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1519, 1492, '泰国木瓜', '泰国木瓜', 4, 'taiguomugua', 'tgmg', '1023,1471,1492,1519', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1520, 1492, '香如蜜', '香如蜜', 4, 'xiangrumi', 'xrm', '1023,1471,1492,1520', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1521, 1492, '刺角瓜', '刺角瓜', 4, 'cijiaogua', 'cjg', '1023,1471,1492,1521', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1522, 1492, '脆瓜', '脆瓜', 4, 'cuigua', 'cg', '1023,1471,1492,1522', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1523, 1492, '久红瓜', '久红瓜', 4, 'jiuhonggua', 'jhg', '1023,1471,1492,1523', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1524, 1492, '小蜜瓜', '小蜜瓜', 4, 'xiaomigua', 'xmg', '1023,1471,1492,1524', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1525, 1492, '奶香蜜', '奶香蜜', 4, 'naixiangmi', 'nxm', '1023,1471,1492,1525', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1526, 1492, '玫珑瓜', '玫珑瓜', 4, 'meilonggua', 'mlg', '1023,1471,1492,1526', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1527, 1492, '山东天马沙白', '山东天马沙白', 4, 'shandongtianmashabai', 'sdtmsb', '1023,1471,1492,1527', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1528, 1492, '王品蜜瓜', '王品蜜瓜', 4, 'wangpinmigua', 'wpmg', '1023,1471,1492,1528', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1529, 1492, '口口蜜', '口口蜜', 4, 'koukoumi', 'kkm', '1023,1471,1492,1529', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1530, 1492, '白雪蜜', '白雪蜜', 4, 'baixuemi', 'bxm', '1023,1471,1492,1530', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1531, 1492, '玉菇', '玉菇', 4, 'yugu', 'yg', '1023,1471,1492,1531', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1532, 1492, '杂瓜', '杂瓜', 4, 'zagua', 'zg', '1023,1471,1492,1532', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1533, 1492, '魔雷密瓜', '魔雷密瓜', 4, 'moleimigua', 'mlmg', '1023,1471,1492,1533', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1534, 1492, '八月瓜', '八月瓜', 4, 'bayuegua', 'byg', '1023,1471,1492,1534', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1535, 1023, '其他果类', '其他果类', 2, 'qitaguolei', 'qtgl', '1023,1535', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1536, 1535, '冻水果', '冻水果', 3, 'dongshuiguo', 'dsg', '1023,1535,1536', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1537, 1536, '冻桃', '冻桃', 4, 'dongtao', 'dt', '1023,1535,1536,1537', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1538, 1536, '冻草莓', '冻草莓', 4, 'dongcaomei', 'dcm', '1023,1535,1536,1538', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1539, 1536, '冻柿子', '冻柿子', 4, 'dongshizi', 'dsz', '1023,1535,1536,1539', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1540, 1536, '冻梨', '冻梨', 4, 'dongli', 'dl', '1023,1535,1536,1540', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1541, 1536, '冻黄桃', '冻黄桃', 4, 'donghuangtao', 'dht', '1023,1535,1536,1541', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1542, 1536, '冻芒果', '冻芒果', 4, 'dongmangguo', 'dmg', '1023,1535,1536,1542', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1543, 1536, '冻沙果', '冻沙果', 4, 'dongshaguo', 'dsg', '1023,1535,1536,1543', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1544, 1536, '冻杨梅', '冻杨梅', 4, 'dongyangmei', 'dym', '1023,1535,1536,1544', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1545, 1536, '冻蓝莓', '冻蓝莓', 4, 'donglanmei', 'dlm', '1023,1535,1536,1545', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1546, 1535, '西番莲', '西番莲', 3, 'xifanlian', 'xfl', '1023,1535,1546', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1547, 1535, '甘蔗', '甘蔗', 3, 'ganzhe', 'gz', '1023,1535,1547', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1548, 1535, '枸橘果', '枸橘果', 3, 'goujuguo', 'gjg', '1023,1535,1548', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1549, 1535, '大果藤黄', '大果藤黄', 3, 'daguotenghuang', 'dgth', '1023,1535,1549', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1550, 1535, '木奶果', '木奶果', 3, 'munaiguo', 'mng', '1023,1535,1550', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1551, 1535, '猫屎瓜', '猫屎瓜', 3, 'maoshigua', 'msg', '1023,1535,1551', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1552, 1535, '吊瓜', '吊瓜', 3, 'diaogua', 'dg', '1023,1535,1552', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1553, 1535, '雪莲果', '雪莲果', 3, 'xuelianguo', 'xlg', '1023,1535,1553', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1554, 1535, '蛇皮果', '蛇皮果', 3, 'shepiguo', 'spg', '1023,1535,1554', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1555, 1535, '精品玉米', '精品玉米', 3, 'jingpinyumi', 'jpym', '1023,1535,1555', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1556, 1535, '精品萝卜', '精品萝卜', 3, 'jingpinluobu', 'jplb', '1023,1535,1556', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1557, 1535, '精品地瓜', '精品地瓜', 3, 'jingpindigua', 'jpdg', '1023,1535,1557', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1558, 1535, '菇娘果', '菇娘果', 3, 'guniangguo', 'gng', '1023,1535,1558', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1559, 1535, '红菇娘果', '红菇娘果', 3, 'hongguniangguo', 'hgng', '1023,1535,1559', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1560, 1535, '干果蜜饯', '干果蜜饯', 3, 'ganguomijian', 'ggmj', '1023,1535,1560', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1561, 1023, '坚果类', '坚果类', 2, 'jianguolei', 'jgl', '1023,1561', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1562, 1561, '坚果', '坚果', 3, 'jianguo', 'jg', '1023,1561,1562', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1563, 1561, '毛榛子', '毛榛子', 3, 'maozhenzi', 'mzz', '1023,1561,1563', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1564, 1561, '青皮核桃', '青皮核桃', 3, 'qingpihetao', 'qpht', '1023,1561,1564', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1565, 0, '加工食品', '加工食品', 1, 'jiagongshipin', 'jgsp', '1565', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1566, 1565, '网红食品', '网红食品', 2, 'wanghongshipin', 'whsp', '1565,1566', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1567, 1565, '蜂蜜', '蜂蜜', 2, 'fengmi', 'fm', '1565,1567', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1568, 1565, '糖果', '糖果', 2, 'tangguo', 'tg', '1565,1568', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1569, 1565, '淀粉', '淀粉', 2, 'dianfen', 'df', '1565,1569', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1570, 1565, '奶制品', '奶制品', 2, 'naizhipin', 'nzp', '1565,1570', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1571, 1565, '罐头', '罐头', 2, 'guantou', 'gt', '1565,1571', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1572, 1565, '山药片', '山药片', 2, 'shanyaopian', 'syp', '1565,1572', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1573, 1565, '辣椒面', '辣椒面', 2, 'lajiaomian', 'ljm', '1565,1573', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1574, 1565, '阿胶糕', '阿胶糕', 2, 'ajiaogao', 'ajg', '1565,1574', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1575, 1565, '花粉', '花粉', 2, 'huafen', 'hf', '1565,1575', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1576, 1565, '红薯片', '红薯片', 2, 'hongshupian', 'hsp', '1565,1576', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1577, 1565, '螺蛳粉', '螺蛳粉', 2, 'luosifen', 'lsf', '1565,1577', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1578, 1565, '梅干菜', '梅干菜', 2, 'meigancai', 'mgc', '1565,1578', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1579, 1565, '咸菜', '咸菜', 2, 'xiancai', 'xc', '1565,1579', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1580, 1565, '腌菜', '腌菜', 2, 'acai', 'ac', '1565,1580', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1581, 1565, '板栗仁', '板栗仁', 2, 'banliren', 'blr', '1565,1581', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1582, 1565, '锅巴', '锅巴', 2, 'guoba', 'gb', '1565,1582', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1583, 1565, '蜂皇浆', '蜂皇浆', 2, 'fenghuangjiang', 'fhj', '1565,1583', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1584, 1565, '果酱', '果酱', 2, 'guojiang', 'gj', '1565,1584', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1585, 1565, '酸笋', '酸笋', 2, 'suansun', 'ss', '1565,1585', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1586, 1565, '剁椒', '剁椒', 2, 'duojiao', 'dj', '1565,1586', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1587, 1565, '萝卜条', '萝卜条', 2, 'luobutiao', 'lbt', '1565,1587', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1588, 1565, '泡菜', '泡菜', 2, 'paocai', 'pc', '1565,1588', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1589, 1588, '泡豇豆', '泡豇豆', 3, 'paojiangdou', 'pjd', '1565,1588,1589', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1590, 1588, '泡酸菜', '泡酸菜', 3, 'paosuancai', 'psc', '1565,1588,1590', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1591, 1588, '泡萝卜', '泡萝卜', 3, 'paoluobu', 'plb', '1565,1588,1591', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1592, 1588, '泡辣椒', '泡辣椒', 3, 'paolajiao', 'plj', '1565,1588,1592', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1593, 1565, '酸菜', '酸菜', 2, 'suancai', 'sc', '1565,1593', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1594, 1565, '酸豆角', '酸豆角', 2, 'suandoujiao', 'sdj', '1565,1594', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1595, 1565, '年糕', '年糕', 2, 'niangao', 'ng', '1565,1595', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1596, 1565, '豆瓣', '豆瓣', 2, 'douban', 'db', '1565,1596', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1597, 1565, '枣粉', '枣粉', 2, 'zaofen', 'zf', '1565,1597', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1598, 1565, '山楂条', '山楂条', 2, 'shanzhatiao', 'szt', '1565,1598', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1599, 1565, '麻花', '麻花', 2, 'mahua', 'mh', '1565,1599', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1600, 1565, '奶渣', '奶渣', 2, 'naizha', 'nz', '1565,1600', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1601, 1565, '山药粉', '山药粉', 2, 'shanyaofen', 'syf', '1565,1601', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1602, 1565, '梅菜', '梅菜', 2, 'meicai', 'mc', '1565,1602', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1603, 1565, '蛋白肉', '蛋白肉', 2, 'danbairou', 'dbr', '1565,1603', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1604, 1565, '酒曲', '酒曲', 2, 'jiuqu', 'jq', '1565,1604', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1605, 1565, '百合粉', '百合粉', 2, 'baihefen', 'bhf', '1565,1605', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1606, 1565, '水煮笋', '水煮笋', 2, 'shuizhusun', 'szs', '1565,1606', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1607, 1565, '粉干', '粉干', 2, 'fengan', 'fg', '1565,1607', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1608, 1565, '百香果冻', '百香果冻', 2, 'baixiangguodong', 'bxgd', '1565,1608', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1609, 1565, '清水笋', '清水笋', 2, 'qingshuisun', 'qss', '1565,1609', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1610, 1565, '魔芋粉', '魔芋粉', 2, 'moyufen', 'myf', '1565,1610', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1611, 1565, '麻辣条', '麻辣条', 2, 'malatiao', 'mlt', '1565,1611', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1612, 1565, '米花糖', '米花糖', 2, 'mihuatang', 'mht', '1565,1612', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1613, 1565, '糖蒜', '糖蒜', 2, 'tangsuan', 'ts', '1565,1613', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1614, 1565, '粘豆包', '粘豆包', 2, 'zhandoubao', 'zdb', '1565,1614', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1615, 1565, '姜汁糖', '姜汁糖', 2, 'jiangzhitang', 'jzt', '1565,1615', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1616, 1565, '椰子粉', '椰子粉', 2, 'yezifen', 'yzf', '1565,1616', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1617, 1565, '黄瓜籽粉', '黄瓜籽粉', 2, 'huangguazifen', 'hgzf', '1565,1617', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1618, 1565, '豆腐', '豆腐', 2, 'doufu', 'df', '1565,1618', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1619, 1618, '米豆腐', '米豆腐', 3, 'midoufu', 'mdf', '1565,1618,1619', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1620, 1618, '干豆腐', '干豆腐', 3, 'gandoufu', 'gdf', '1565,1618,1620', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1621, 1618, '白豆腐', '白豆腐', 3, 'baidoufu', 'bdf', '1565,1618,1621', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1622, 1565, '豆腐串', '豆腐串', 2, 'doufuchuan', 'dfc', '1565,1622', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1623, 1565, '酒酿', '酒酿', 2, 'jiuniang', 'jn', '1565,1623', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1624, 1565, '甜葫芦条', '甜葫芦条', 2, 'tianhulutiao', 'thlt', '1565,1624', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1625, 1565, '速冻毛豆', '速冻毛豆', 2, 'sudongmaodou', 'sdmd', '1565,1625', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1626, 1565, '酸枣糕', '酸枣糕', 2, 'suanzaogao', 'szg', '1565,1626', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1627, 1565, '黄瓜皮', '黄瓜皮', 2, 'huangguapi', 'hgp', '1565,1627', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1628, 1565, '玉兰片', '玉兰片', 2, 'yulanpian', 'ylp', '1565,1628', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1629, 1565, '酸梅干', '酸梅干', 2, 'suanmeigan', 'smg', '1565,1629', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1630, 1565, '卤味花生', '卤味花生', 2, 'luweihuasheng', 'lwhs', '1565,1630', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1631, 1565, '蒙古炒米', '蒙古炒米', 2, 'mengguchaomi', 'mgcm', '1565,1631', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1632, 1565, '冬瓜蓉馅料', '冬瓜蓉馅料', 2, 'dongguarongxianliao', 'dgrxl', '1565,1632', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1633, 1565, '芥菜干', '芥菜干', 2, 'jiecaigan', 'jcg', '1565,1633', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1634, 1565, '馓子', '馓子', 2, 'sanzi', 'sz', '1565,1634', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1635, 1565, '打糕', '打糕', 2, 'dagao', 'dg', '1565,1635', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1636, 1565, '红糖姜枣膏', '红糖姜枣膏', 2, 'hongtangjiangzaogao', 'htjzg', '1565,1636', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1637, 1565, '冰糖葫芦', '冰糖葫芦', 2, 'bingtanghulu', 'bthl', '1565,1637', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1638, 1565, '水晶粉', '水晶粉', 2, 'shuijingfen', 'sjf', '1565,1638', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1639, 1565, '紫晶枣', '紫晶枣', 2, 'zijingzao', 'zjz', '1565,1639', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1640, 1565, '花生碎', '花生碎', 2, 'huashengsui', 'hss', '1565,1640', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1641, 1565, '米豆皮子', '米豆皮子', 2, 'midoupizi', 'mdpz', '1565,1641', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1642, 1565, '黄年米果', '黄年米果', 2, 'huangnianmiguo', 'hnmg', '1565,1642', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1643, 1565, '西米', '西米', 2, 'ximi', 'xm', '1565,1643', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1644, 1565, '炒米块', '炒米块', 2, 'chaomikuai', 'cmk', '1565,1644', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1645, 1565, '芝麻片', '芝麻片', 2, 'zhimapian', 'zmp', '1565,1645', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1646, 1565, '橡子凉粉', '橡子凉粉', 2, 'xiangziliangfen', 'xzlf', '1565,1646', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1647, 1565, '酸芋苗', '酸芋苗', 2, 'suanyumiao', 'sym', '1565,1647', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1648, 1565, '素鸡', '素鸡', 2, 'suji', 'sj', '1565,1648', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1649, 1565, '腊菜', '腊菜', 2, 'lacai', 'lc', '1565,1649', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1650, 1565, '蜜三刀', '蜜三刀', 2, 'misandao', 'msd', '1565,1650', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1651, 1565, '南瓜条', '南瓜条', 2, 'nanguatiao', 'ngt', '1565,1651', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1652, 1565, '蜂腊', '蜂腊', 2, 'fengla', 'fl', '1565,1652', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1653, 1565, '糟菜', '糟菜', 2, 'zaocai', 'zc', '1565,1653', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1654, 1565, '粉条', '粉条', 2, 'fentiao', 'ft', '1565,1654', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1655, 1565, '粉丝', '粉丝', 2, 'fensi', 'fs', '1565,1655', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1656, 1655, '苕粉', '苕粉', 3, 'tiaofen', 'tf', '1565,1655,1656', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1657, 1565, '菜油', '菜油', 2, 'caiyou', 'cy', '1565,1657', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1658, 1565, '面条', '面条', 2, 'miantiao', 'mt', '1565,1658', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1659, 1565, '山茶油', '山茶油', 2, 'shanchayou', 'scy', '1565,1659', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1660, 1565, '豆腐皮', '豆腐皮', 2, 'doufupi', 'dfp', '1565,1660', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1661, 1565, '米粉', '米粉', 2, 'mifen', 'mf', '1565,1661', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1662, 1565, '粉皮', '粉皮', 2, 'fenpi', 'fp', '1565,1662', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1663, 1565, '挂面', '挂面', 2, 'guamian', 'gm', '1565,1663', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1664, 1565, '酥饼', '酥饼', 2, 'subing', 'sb', '1565,1664', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1665, 1565, '豆腐干', '豆腐干', 2, 'doufugan', 'dfg', '1565,1665', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1666, 1565, '面筋', '面筋', 2, 'mianjin', 'mj', '1565,1666', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1667, 1565, '茶油', '茶油', 2, 'chayou', 'cy', '1565,1667', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1668, 1565, '豆油', '豆油', 2, 'douyou', 'dy', '1565,1668', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1669, 1565, '水饺', '水饺', 2, 'shuijiao', 'sj', '1565,1669', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1670, 1565, '香油', '香油', 2, 'xiangyou', 'xy', '1565,1670', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1671, 1565, '米线', '米线', 2, 'mixian', 'mx', '1565,1671', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1672, 1565, '煎饼', '煎饼', 2, 'jianbing', 'jb', '1565,1672', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1673, 1565, '宽粉', '宽粉', 2, 'kuanfen', 'kf', '1565,1673', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1674, 1565, '面包', '面包', 2, 'mianbao', 'mb', '1565,1674', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1675, 1565, '燕麦片', '燕麦片', 2, 'yanmaipian', 'ymp', '1565,1675', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1676, 1565, '土豆粉', '土豆粉', 2, 'tudoufen', 'tdf', '1565,1676', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1677, 1565, '胡麻油', '胡麻油', 2, 'humayou', 'hmy', '1565,1677', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1678, 1565, '凉皮', '凉皮', 2, 'liangpi', 'lp', '1565,1678', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1679, 1565, '玉米糁', '玉米糁', 2, 'yumisan', 'yms', '1565,1679', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1680, 1565, '亚麻籽油', '亚麻籽油', 2, 'yamaziyou', 'ymzy', '1565,1680', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1681, 1565, '调和油', '调和油', 2, 'diaoheyou', 'dhy', '1565,1681', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1682, 1565, '荞面', '荞面', 2, 'qiaomian', 'qm', '1565,1682', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1683, 1565, '豌豆粉', '豌豆粉', 2, 'wandoufen', 'wdf', '1565,1683', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1684, 1565, '麦片', '麦片', 2, 'maipian', 'mp', '1565,1684', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1685, 1565, '地瓜干粉', '地瓜干粉', 2, 'diguaganfen', 'dggf', '1565,1685', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1686, 1565, '八宝米', '八宝米', 2, 'babaomi', 'bbm', '1565,1686', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1687, 1565, '糯米粉', '糯米粉', 2, 'nuomifen', 'nmf', '1565,1687', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1688, 1565, '红花籽油', '红花籽油', 2, 'honghuaziyou', 'hhzy', '1565,1688', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1689, 1565, '糯米粑粑', '糯米粑粑', 2, 'nuomibaba', 'nmbb', '1565,1689', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1690, 1689, '黄粑', '黄粑', 3, 'huangba', 'hb', '1565,1689,1690', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1691, 1689, '二块粑', '二块粑', 3, 'erkuaiba', 'ekb', '1565,1689,1691', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1692, 1689, '糍粑', '糍粑', 3, 'ciba', 'cb', '1565,1689,1692', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1693, 1565, '豆筋', '豆筋', 2, 'doujin', 'dj', '1565,1693', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1694, 1565, '莜面', '莜面', 2, 'youmian', 'ym', '1565,1694', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1695, 1565, '小米面', '小米面', 2, 'xiaomimian', 'xmm', '1565,1695', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1696, 1565, '扎粉', '扎粉', 2, 'zhafen', 'zf', '1565,1696', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1697, 1565, '葡萄籽油', '葡萄籽油', 2, 'putaoziyou', 'ptzy', '1565,1697', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1698, 1565, '绿豆面', '绿豆面', 2, 'lvdoumian', 'ldm', '1565,1698', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1699, 1565, '大杂米', '大杂米', 2, 'dazami', 'dzm', '1565,1699', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1700, 1565, '南瓜籽油', '南瓜籽油', 2, 'nanguaziyou', 'ngzy', '1565,1700', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1701, 1565, '大豆蛋白', '大豆蛋白', 2, 'dadoudanbai', 'dddb', '1565,1701', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1702, 1565, '沙棘油', '沙棘油', 2, 'shajiyou', 'sjy', '1565,1702', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1703, 1565, '紫薯全粉', '紫薯全粉', 2, 'zishuquanfen', 'zsqf', '1565,1703', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1704, 1565, '黑米饭', '黑米饭', 2, 'heimifan', 'hmf', '1565,1704', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1705, 1565, '椰子油', '椰子油', 2, 'yeziyou', 'yzy', '1565,1705', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1706, 0, '花卉', '花卉', 1, 'huahui', 'hh', '1706', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1707, 1706, '草本花卉', '草本花卉', 2, 'caobenhuahui', 'cbhh', '1706,1707', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1708, 1707, '仙人掌', '仙人掌', 3, 'xianrenzhang', 'xrz', '1706,1707,1708', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1709, 1707, '仙人球', '仙人球', 3, 'xianrenqiu', 'xrq', '1706,1707,1709', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1710, 1707, '睡莲', '睡莲', 3, 'shuilian', 'sl', '1706,1707,1710', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1711, 1707, '荷花', '荷花', 3, 'hehua', 'hh', '1706,1707,1711', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1712, 1707, '春兰', '春兰', 3, 'chunlan', 'cl', '1706,1707,1712', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1713, 1707, '香堇', '香堇', 3, 'xiangjin', 'xj', '1706,1707,1713', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1714, 1707, '慈菇花', '慈菇花', 3, 'ciguhua', 'cgh', '1706,1707,1714', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1715, 1707, '风信子', '风信子', 3, 'fengxinzi', 'fxz', '1706,1707,1715', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1716, 1707, '郁金香', '郁金香', 3, 'yujinxiang', 'yjx', '1706,1707,1716', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1717, 1707, '紫罗兰', '紫罗兰', 3, 'ziluolan', 'zll', '1706,1707,1717', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1718, 1707, '金鱼草', '金鱼草', 3, 'jinyucao', 'jyc', '1706,1707,1718', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1719, 1707, '长春菊', '长春菊', 3, 'zhangchunju', 'zcj', '1706,1707,1719', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1720, 1707, '瓜叶菊', '瓜叶菊', 3, 'guayeju', 'gyj', '1706,1707,1720', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1721, 1707, '香豌豆', '香豌豆', 3, 'xiangwandou', 'xwd', '1706,1707,1721', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1722, 1707, '夏兰', '夏兰', 3, 'xialan', 'xl', '1706,1707,1722', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1723, 1707, '石竹', '石竹', 3, 'shizhu', 'sz', '1706,1707,1723', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1724, 1707, '石蒜', '石蒜', 3, 'shisuan', 'ss', '1706,1707,1724', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1725, 1707, '翠菊', '翠菊', 3, 'cuiju', 'cj', '1706,1707,1725', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1726, 1707, '芍药', '芍药', 3, 'shaoyao', 'sy', '1706,1707,1726', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1727, 1707, '晚香玉', '晚香玉', 3, 'wanxiangyu', 'wxy', '1706,1707,1727', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1728, 1707, '千日红', '千日红', 3, 'qianrihong', 'qrh', '1706,1707,1728', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1729, 1707, '建兰', '建兰', 3, 'jianlan', 'jl', '1706,1707,1729', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1730, 1707, '报岁兰', '报岁兰', 3, 'baosuilan', 'bsl', '1706,1707,1730', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1731, 1707, '铃兰', '铃兰', 3, 'linglan', 'll', '1706,1707,1731', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1732, 1707, '大岩桐', '大岩桐', 3, 'dayantong', 'dyt', '1706,1707,1732', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1733, 1707, '水仙', '水仙', 3, 'shuixian', 'sx', '1706,1707,1733', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1734, 1707, '小草兰', '小草兰', 3, 'xiaocaolan', 'xcl', '1706,1707,1734', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1735, 1707, '蒲包花', '蒲包花', 3, 'pubaohua', 'pbh', '1706,1707,1735', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1736, 1707, '免子花', '免子花', 3, 'mianzihua', 'mzh', '1706,1707,1736', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1737, 1707, '入腊红', '入腊红', 3, 'rulahong', 'rlh', '1706,1707,1737', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1738, 1707, '三色堇', '三色堇', 3, 'sansejin', 'ssj', '1706,1707,1738', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1739, 1707, '百日草', '百日草', 3, 'bairicao', 'brc', '1706,1707,1739', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1740, 1707, '鸡冠花', '鸡冠花', 3, 'jiguanhua', 'jgh', '1706,1707,1740', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1741, 1707, '一串红', '一串红', 3, 'yichuanhong', 'ych', '1706,1707,1741', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1742, 1707, '孔雀草', '孔雀草', 3, 'kongquecao', 'kqc', '1706,1707,1742', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1743, 1707, '大波斯菊', '大波斯菊', 3, 'dabosiju', 'dbsj', '1706,1707,1743', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1744, 1707, '金盏菊', '金盏菊', 3, 'jinzhanju', 'jzj', '1706,1707,1744', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1745, 1707, '康乃馨', '康乃馨', 3, 'kangnaixin', 'knx', '1706,1707,1745', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1746, 1707, '红掌', '红掌', 3, 'hongzhang', 'hz', '1706,1707,1746', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1747, 1707, '满天星', '满天星', 3, 'mantianxing', 'mtx', '1706,1707,1747', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1748, 1706, '木本花卉', '木本花卉', 2, 'mubenhuahui', 'mbhh', '1706,1748', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1749, 1748, '月季花', '月季花', 3, 'yuejihua', 'yjh', '1706,1748,1749', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1750, 1748, '梅花', '梅花', 3, 'meihua', 'mh', '1706,1748,1750', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1751, 1748, '桃花', '桃花', 3, 'taohua', 'th', '1706,1748,1751', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1752, 1748, '牡丹', '牡丹', 3, 'mudan', 'md', '1706,1748,1752', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1753, 1748, '海棠', '海棠', 3, 'haitang', 'ht', '1706,1748,1753', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1754, 1748, '玉兰', '玉兰', 3, 'yulan', 'yl', '1706,1748,1754', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1755, 1748, '木笔', '木笔', 3, 'mubi', 'mb', '1706,1748,1755', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1756, 1748, '紫荆', '紫荆', 3, 'zijing', 'zj', '1706,1748,1756', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1757, 1748, '连翘', '连翘', 3, 'lianqiao', 'lq', '1706,1748,1757', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1758, 1748, '金钟', '金钟', 3, 'jinzhong', 'jz', '1706,1748,1758', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1759, 1748, '丁香', '丁香', 3, 'dingxiang', 'dx', '1706,1748,1759', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1760, 1748, '紫藤', '紫藤', 3, 'ziteng', 'zt', '1706,1748,1760', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1761, 1748, '春鹃', '春鹃', 3, 'chunjuan', 'cj', '1706,1748,1761', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1762, 1748, '杜鹃花', '杜鹃花', 3, 'dujuanhua', 'djh', '1706,1748,1762', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1763, 1748, '石榴花', '石榴花', 3, 'shiliuhua', 'slh', '1706,1748,1763', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1764, 1748, '含笑花', '含笑花', 3, 'hanxiaohua', 'hxh', '1706,1748,1764', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1765, 1748, '茉莉花', '茉莉花', 3, 'molihua', 'mlh', '1706,1748,1765', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1766, 1748, '白兰花', '白兰花', 3, 'bailanhua', 'blh', '1706,1748,1766', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1767, 1748, '栀子花', '栀子花', 3, 'zhizihua', 'zzh', '1706,1748,1767', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1768, 1748, '木芙蓉', '木芙蓉', 3, 'mufurong', 'mfr', '1706,1748,1768', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1769, 1748, '山茶花', '山茶花', 3, 'shanchahua', 'sch', '1706,1748,1769', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1770, 1748, '迎春花', '迎春花', 3, 'yingchunhua', 'ych', '1706,1748,1770', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1771, 1706, '花卉用具', '花卉用具', 2, 'huahuiyongju', 'hhyj', '1706,1771', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1772, 1771, '种子', '种子', 3, 'zhongzi', 'zz', '1706,1771,1772', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1773, 1771, '肥料', '肥料', 3, 'feiliao', 'fl', '1706,1771,1773', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1774, 1771, '花盆', '花盆', 3, 'huapen', 'hp', '1706,1771,1774', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1775, 1771, '工具', '工具', 3, 'gongju', 'gj', '1706,1771,1775', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1776, 1706, '鲜切花卉', '鲜切花卉', 2, 'xianqiehuahui', 'xqhh', '1706,1776', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1777, 1706, '大型盆景', '大型盆景', 2, 'daxingpenjing', 'dxpj', '1706,1777', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1778, 1706, '其他花卉', '其他花卉', 2, 'qitahuahui', 'qthh', '1706,1778', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1779, 0, '调味品', '调味品', 1, 'diaoweipin', 'dwp', '1779', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1780, 1779, '盐', '盐', 2, 'yan', 'y', '1779,1780', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1781, 1779, '糖', '糖', 2, 'tang', 't', '1779,1781', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1782, 1781, '白砂糖', '白砂糖', 3, 'baishatang', 'bst', '1779,1781,1782', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1783, 1781, '绵白糖', '绵白糖', 3, 'mianbaitang', 'mbt', '1779,1781,1783', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1784, 1781, '冰糖', '冰糖', 3, 'bingtang', 'bt', '1779,1781,1784', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1785, 1781, '红糖', '红糖', 3, 'hongtang', 'ht', '1779,1781,1785', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1786, 1781, '白糖', '白糖', 3, 'baitang', 'bt', '1779,1781,1786', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1787, 1779, '酱油', '酱油', 2, 'jiangyou', 'jy', '1779,1787', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1788, 1779, '醋', '醋', 2, 'cu', 'c', '1779,1788', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1789, 1788, '食用醋', '食用醋', 3, 'shiyongcu', 'syc', '1779,1788,1789', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1790, 1779, '料酒', '料酒', 2, 'liaojiu', 'lj', '1779,1790', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1791, 1779, '味精', '味精', 2, 'weijing', 'wj', '1779,1791', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1792, 1779, '耗油', '耗油', 2, 'haoyou', 'hy', '1779,1792', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1793, 1779, '酱类', '酱类', 2, 'jianglei', 'jl', '1779,1793', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1794, 1793, '黄豆酱', '黄豆酱', 3, 'huangdoujiang', 'hdj', '1779,1793,1794', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1795, 1793, '甜面酱', '甜面酱', 3, 'tianmianjiang', 'tmj', '1779,1793,1795', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1796, 1793, '番茄酱', '番茄酱', 3, 'fanqiejiang', 'fqj', '1779,1793,1796', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1797, 1793, '辣椒酱', '辣椒酱', 3, 'lajiaojiang', 'ljj', '1779,1793,1797', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1798, 1793, '芝麻酱', '芝麻酱', 3, 'zhimajiang', 'zmj', '1779,1793,1798', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1799, 1793, '花生酱', '花生酱', 3, 'huashengjiang', 'hsj', '1779,1793,1799', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1800, 1793, '虾酱', '虾酱', 3, 'xiajiang', 'xj', '1779,1793,1800', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1801, 1793, '芥末酱', '芥末酱', 3, 'jiemojiang', 'jmj', '1779,1793,1801', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1802, 1793, '沙拉酱', '沙拉酱', 3, 'shalajiang', 'slj', '1779,1793,1802', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1803, 1793, '香辣酱', '香辣酱', 3, 'xianglajiang', 'xlj', '1779,1793,1803', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1804, 1793, '韭菜花酱', '韭菜花酱', 3, 'jiucaihuajiang', 'jchj', '1779,1793,1804', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1805, 1793, '糟辣椒', '糟辣椒', 3, 'zaolajiao', 'zlj', '1779,1793,1805', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1806, 1793, '海鲜酱', '海鲜酱', 3, 'haixianjiang', 'hxj', '1779,1793,1806', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1807, 1793, '柱候酱', '柱候酱', 3, 'zhuhoujiang', 'zhj', '1779,1793,1807', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1808, 1793, '排骨酱', '排骨酱', 3, 'paigujiang', 'pgj', '1779,1793,1808', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1809, 1793, '叉烧酱', '叉烧酱', 3, 'chashaojiang', 'csj', '1779,1793,1809', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1810, 1793, '蒜蓉酱', '蒜蓉酱', 3, 'suanrongjiang', 'srj', '1779,1793,1810', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1811, 1779, '豆豉', '豆豉', 2, 'douchi', 'dc', '1779,1811', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1812, 1779, '豆腐乳', '豆腐乳', 2, 'doufuru', 'dfr', '1779,1812', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1813, 1779, '香辛料', '香辛料', 2, 'xiangxinliao', 'xxl', '1779,1813', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1814, 1813, '花椒', '花椒', 3, 'huajiao', 'hj', '1779,1813,1814', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1815, 1813, '花椒皮', '花椒皮', 3, 'huajiaopi', 'hjp', '1779,1813,1815', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1816, 1813, '八角', '八角', 3, 'bajiao', 'bj', '1779,1813,1816', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1817, 1813, '白扣', '白扣', 3, 'baikou', 'bk', '1779,1813,1817', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1818, 1813, '回香', '回香', 3, 'huixiang', 'hx', '1779,1813,1818', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1819, 1813, '山奈', '山奈', 3, 'shannai', 'sn', '1779,1813,1819', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1820, 1813, '胡椒', '胡椒', 3, 'hujiao', 'hj', '1779,1813,1820', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1821, 1813, '桂皮', '桂皮', 3, 'guipi', 'gp', '1779,1813,1821', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1822, 1813, '砂仁', '砂仁', 3, 'sharen', 'sr', '1779,1813,1822', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1823, 1813, '干辣椒', '干辣椒', 3, 'ganlajiao', 'glj', '1779,1813,1823', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1824, 1813, '白辣椒', '白辣椒', 3, 'bailajiao', 'blj', '1779,1813,1824', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1825, 1813, '辣椒段', '辣椒段', 3, 'lajiaoduan', 'ljd', '1779,1813,1825', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1826, 1813, '干姜', '干姜', 3, 'ganjiang', 'gj', '1779,1813,1826', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1827, 1813, '孜然', '孜然', 3, 'ziran', 'zr', '1779,1813,1827', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1828, 1813, '香叶', '香叶', 3, 'xiangye', 'xy', '1779,1813,1828', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1829, 1813, '香料', '香料', 3, 'xiangliao', 'xl', '1779,1813,1829', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1830, 1813, '花椒籽', '花椒籽', 3, 'huajiaozi', 'hjz', '1779,1813,1830', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1831, 1813, '白豆蔻', '白豆蔻', 3, 'baidoukou', 'bdk', '1779,1813,1831', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1832, 1813, '干草果', '干草果', 3, 'gancaoguo', 'gcg', '1779,1813,1832', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1833, 1813, '泽蒙花', '泽蒙花', 3, 'zemenghua', 'zmh', '1779,1813,1833', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1834, 1813, '鱼香菜', '鱼香菜', 3, 'yuxiangcai', 'yxc', '1779,1813,1834', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1835, 1779, '调味粉', '调味粉', 2, 'diaoweifen', 'dwf', '1779,1835', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1836, 1835, '麻辣鲜', '麻辣鲜', 3, 'malaxian', 'mlx', '1779,1835,1836', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1837, 1835, '蒸肉粉', '蒸肉粉', 3, 'zhengroufen', 'zrf', '1779,1835,1837', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1838, 1835, '十三香', '十三香', 3, 'shisanxiang', 'ssx', '1779,1835,1838', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1839, 1835, '炖鸡鲜', '炖鸡鲜', 3, 'dunjixian', 'djx', '1779,1835,1839', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1840, 1835, '炖鱼鲜', '炖鱼鲜', 3, 'dunyuxian', 'dyx', '1779,1835,1840', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1841, 1835, '嫩肉粉', '嫩肉粉', 3, 'nenroufen', 'nrf', '1779,1835,1841', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1842, 1835, '其他调味粉', '其他调味粉', 3, 'qitadiaoweifen', 'qtdwf', '1779,1835,1842', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1843, 1835, '花椒面', '花椒面', 3, 'huajiaomian', 'hjm', '1779,1835,1843', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1844, 1779, '调味油', '调味油', 2, 'diaoweiyou', 'dwy', '1779,1844', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1845, 1844, '麻油', '麻油', 3, 'mayou', 'my', '1779,1844,1845', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1846, 1844, '鸡枞油', '鸡枞油', 3, 'jizongyou', 'jzy', '1779,1844,1846', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1847, 1844, '辣椒油', '辣椒油', 3, 'lajiaoyou', 'ljy', '1779,1844,1847', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1848, 1844, '芝麻油', '芝麻油', 3, 'zhimayou', 'zmy', '1779,1844,1848', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1849, 1844, '葱油', '葱油', 3, 'congyou', 'cy', '1779,1844,1849', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1850, 1844, '花椒油', '花椒油', 3, 'huajiaoyou', 'hjy', '1779,1844,1850', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1851, 0, '水产品', '水产品', 1, 'shuichanpin', 'scp', '1851', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1852, 1851, '鱼类', '鱼类', 2, 'yulei', 'yl', '1851,1852', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1853, 1852, '淡水鱼类', '淡水鱼类', 3, 'danshuiyulei', 'dsyl', '1851,1852,1853', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1854, 1853, '草鱼', '草鱼', 4, 'caoyu', 'cy', '1851,1852,1853,1854', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1855, 1853, '鲤鱼', '鲤鱼', 4, 'liyu', 'ly', '1851,1852,1853,1855', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1856, 1853, '鲫鱼', '鲫鱼', 4, 'jiyu', 'jy', '1851,1852,1853,1856', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1857, 1853, '鲶鱼', '鲶鱼', 4, 'nianyu', 'ny', '1851,1852,1853,1857', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1858, 1853, '泥鳅', '泥鳅', 4, 'niqiu', 'nq', '1851,1852,1853,1858', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1859, 1853, '黄颡', '黄颡', 4, 'huangsang', 'hs', '1851,1852,1853,1859', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1860, 1853, '黑鱼', '黑鱼', 4, 'heiyu', 'hy', '1851,1852,1853,1860', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1861, 1853, '罗非鱼', '罗非鱼', 4, 'luofeiyu', 'lfy', '1851,1852,1853,1861', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1862, 1853, '石斑鱼', '石斑鱼', 4, 'shibanyu', 'sby', '1851,1852,1853,1862', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1863, 1853, '黄鳝', '黄鳝', 4, 'huangshan', 'hs', '1851,1852,1853,1863', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1864, 1853, '鲢鱼', '鲢鱼', 4, 'lianyu', 'ly', '1851,1852,1853,1864', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1865, 1853, '巴沙鱼', '巴沙鱼', 4, 'bashayu', 'bsy', '1851,1852,1853,1865', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1866, 1853, '青鱼', '青鱼', 4, 'qingyu', 'qy', '1851,1852,1853,1866', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1867, 1853, '鳙鱼', '鳙鱼', 4, 'yongyu', 'yy', '1851,1852,1853,1867', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1868, 1853, '白鱼', '白鱼', 4, 'baiyu', 'by', '1851,1852,1853,1868', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1869, 1853, '鳜鱼', '鳜鱼', 4, 'guiyu', 'gy', '1851,1852,1853,1869', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1870, 1853, '鳗鱼', '鳗鱼', 4, 'manyu', 'my', '1851,1852,1853,1870', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1871, 1853, '鳊鱼', '鳊鱼', 4, 'bianyu', 'by', '1851,1852,1853,1871', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1872, 1853, '鮰鱼', '鮰鱼', 4, 'huiyu', 'hy', '1851,1852,1853,1872', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1873, 1853, '叉尾鱼', '叉尾鱼', 4, 'chaweiyu', 'cwy', '1851,1852,1853,1873', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1874, 1853, '白条鱼', '白条鱼', 4, 'baitiaoyu', 'bty', '1851,1852,1853,1874', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1875, 1853, '鲑鱼', '鲑鱼', 4, 'guiyu', 'gy', '1851,1852,1853,1875', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1876, 1853, '凤尾鱼', '凤尾鱼', 4, 'fengweiyu', 'fwy', '1851,1852,1853,1876', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1877, 1853, '青波鱼', '青波鱼', 4, 'qingboyu', 'qby', '1851,1852,1853,1877', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1878, 1853, '太阳鱼', '太阳鱼', 4, 'taiyangyu', 'tyy', '1851,1852,1853,1878', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1879, 1853, '麦穗鱼', '麦穗鱼', 4, 'maisuiyu', 'msy', '1851,1852,1853,1879', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1880, 1853, '鲟鱼', '鲟鱼', 4, 'xunyu', 'xy', '1851,1852,1853,1880', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1881, 1853, '马口鱼', '马口鱼', 4, 'makouyu', 'mky', '1851,1852,1853,1881', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1882, 1853, '刁子鱼', '刁子鱼', 4, 'diaoziyu', 'dzy', '1851,1852,1853,1882', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1883, 1853, '公鱼', '公鱼', 4, 'gongyu', 'gy', '1851,1852,1853,1883', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1884, 1853, '白乌鱼', '白乌鱼', 4, 'baiwuyu', 'bwy', '1851,1852,1853,1884', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1885, 1853, '笋壳鱼', '笋壳鱼', 4, 'sunqiaoyu', 'sqy', '1851,1852,1853,1885', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1886, 1853, '花骨鱼', '花骨鱼', 4, 'huaguyu', 'hgy', '1851,1852,1853,1886', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1887, 1853, '棍子鱼', '棍子鱼', 4, 'gunziyu', 'gzy', '1851,1852,1853,1887', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1888, 1853, '石扁头', '石扁头', 4, 'shibiantou', 'sbt', '1851,1852,1853,1888', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1889, 1853, '山根鱼', '山根鱼', 4, 'shangenyu', 'sgy', '1851,1852,1853,1889', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1890, 1853, '红尾鱼', '红尾鱼', 4, 'hongweiyu', 'hwy', '1851,1852,1853,1890', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1891, 1853, '香鱼', '香鱼', 4, 'xiangyu', 'xy', '1851,1852,1853,1891', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1892, 1853, '鳡鱼', '鳡鱼', 4, 'ganyu', 'gy', '1851,1852,1853,1892', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1893, 1853, '铜鱼', '铜鱼', 4, 'tongyu', 'ty', '1851,1852,1853,1893', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1894, 1853, '狗鱼', '狗鱼', 4, 'gouyu', 'gy', '1851,1852,1853,1894', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1895, 1853, '乌头鱼', '乌头鱼', 4, 'wutouyu', 'wty', '1851,1852,1853,1895', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1896, 1853, '柳根鱼', '柳根鱼', 4, 'liugenyu', 'lgy', '1851,1852,1853,1896', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1897, 1853, '白鲑', '白鲑', 4, 'baigui', 'bg', '1851,1852,1853,1897', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1898, 1853, '金鳟鱼', '金鳟鱼', 4, 'jinzunyu', 'jzy', '1851,1852,1853,1898', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1899, 1853, '虹鳟鱼', '虹鳟鱼', 4, 'hongzunyu', 'hzy', '1851,1852,1853,1899', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1900, 1853, '边花鱼', '边花鱼', 4, 'bianhuayu', 'bhy', '1851,1852,1853,1900', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1901, 1853, '嘎牙子', '嘎牙子', 4, 'gayazi', 'gyz', '1851,1852,1853,1901', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1902, 1853, '三道鳞', '三道鳞', 4, 'sandaolin', 'sdl', '1851,1852,1853,1902', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1903, 1853, '怀头鱼', '怀头鱼', 4, 'huaitouyu', 'hty', '1851,1852,1853,1903', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1904, 1853, '桂鱼', '桂鱼', 4, 'guiyu', 'gy', '1851,1852,1853,1904', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1905, 1853, '白鲢鱼', '白鲢鱼', 4, 'bailianyu', 'bly', '1851,1852,1853,1905', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1906, 1853, '花鲢鱼', '花鲢鱼', 4, 'hualianyu', 'hly', '1851,1852,1853,1906', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1907, 1853, '胖头', '胖头', 4, 'pangtou', 'pt', '1851,1852,1853,1907', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1908, 1852, '海水鱼类', '海水鱼类', 3, 'haishuiyulei', 'hsyl', '1851,1852,1908', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1909, 1908, '黄花鱼', '黄花鱼', 4, 'huanghuayu', 'hhy', '1851,1852,1908,1909', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1910, 1908, '带鱼', '带鱼', 4, 'daiyu', 'dy', '1851,1852,1908,1910', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1911, 1908, '鲅鱼', '鲅鱼', 4, 'bayu', 'by', '1851,1852,1908,1911', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1912, 1908, '比目鱼', '比目鱼', 4, 'bimuyu', 'bmy', '1851,1852,1908,1912', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1913, 1908, '马鲛鱼', '马鲛鱼', 4, 'majiaoyu', 'mjy', '1851,1852,1908,1913', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1914, 1908, '鳕鱼', '鳕鱼', 4, 'xueyu', 'xy', '1851,1852,1908,1914', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1915, 1908, '银鳕鱼', '银鳕鱼', 4, 'yinxueyu', 'yxy', '1851,1852,1908,1915', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1916, 1908, '龙利鱼', '龙利鱼', 4, 'longliyu', 'lly', '1851,1852,1908,1916', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1917, 1908, '巴浪鱼', '巴浪鱼', 4, 'balangyu', 'bly', '1851,1852,1908,1917', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1918, 1908, '马面鱼', '马面鱼', 4, 'mamianyu', 'mmy', '1851,1852,1908,1918', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1919, 1908, '金枪鱼', '金枪鱼', 4, 'jinqiangyu', 'jqy', '1851,1852,1908,1919', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1920, 1908, '安康鱼', '安康鱼', 4, 'ankangyu', 'aky', '1851,1852,1908,1920', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1921, 1908, '红鳍笛鲷', '红鳍笛鲷', 4, 'hongqididiao', 'hqdd', '1851,1852,1908,1921', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1922, 1908, '多春鱼', '多春鱼', 4, 'duochunyu', 'dcy', '1851,1852,1908,1922', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1923, 1908, '龙头鱼', '龙头鱼', 4, 'longtouyu', 'lty', '1851,1852,1908,1923', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1924, 1908, '沙丁鱼', '沙丁鱼', 4, 'shadingyu', 'sdy', '1851,1852,1908,1924', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1925, 1908, '金线鱼', '金线鱼', 4, 'jinxianyu', 'jxy', '1851,1852,1908,1925', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1926, 1908, '马友鱼', '马友鱼', 4, 'mayouyu', 'myy', '1851,1852,1908,1926', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1927, 1908, '沙尖鱼', '沙尖鱼', 4, 'shajianyu', 'sjy', '1851,1852,1908,1927', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1928, 1908, '红杉鱼', '红杉鱼', 4, 'hongshanyu', 'hsy', '1851,1852,1908,1928', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1929, 1908, '梭鱼', '梭鱼', 4, 'suoyu', 'sy', '1851,1852,1908,1929', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1930, 1908, '灰米鱼', '灰米鱼', 4, 'huimiyu', 'hmy', '1851,1852,1908,1930', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1931, 1908, '泥猛鱼', '泥猛鱼', 4, 'nimengyu', 'nmy', '1851,1852,1908,1931', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1932, 1908, '油甘鱼', '油甘鱼', 4, 'youganyu', 'ygy', '1851,1852,1908,1932', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1933, 1908, '牛尾鱼', '牛尾鱼', 4, 'niuweiyu', 'nwy', '1851,1852,1908,1933', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1934, 1908, '银条鱼', '银条鱼', 4, 'yintiaoyu', 'yty', '1851,1852,1908,1934', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1935, 1908, '黄菇鱼', '黄菇鱼', 4, 'huangguyu', 'hgy', '1851,1852,1908,1935', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1936, 1908, '剑鱼', '剑鱼', 4, 'jianyu', 'jy', '1851,1852,1908,1936', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1937, 1908, '鳀鱼', '鳀鱼', 4, 'tiyu', 'ty', '1851,1852,1908,1937', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1938, 1908, '黄尾鲽鱼', '黄尾鲽鱼', 4, 'huangweidieyu', 'hwdy', '1851,1852,1908,1938', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1939, 1908, '白姑鱼', '白姑鱼', 4, 'baiguyu', 'bgy', '1851,1852,1908,1939', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1940, 1908, '沙逛鱼', '沙逛鱼', 4, 'shaguangyu', 'sgy', '1851,1852,1908,1940', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1941, 1908, '燕尾斑', '燕尾斑', 4, 'yanweiban', 'ywb', '1851,1852,1908,1941', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1942, 1908, '鮸鱼', '鮸鱼', 4, 'mianyu', 'my', '1851,1852,1908,1942', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1943, 1908, '鲳鱼', '鲳鱼', 4, 'changyu', 'cy', '1851,1852,1908,1943', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1944, 1908, '大黄鱼', '大黄鱼', 4, 'dahuangyu', 'dhy', '1851,1852,1908,1944', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1945, 1908, '叽咕', '叽咕', 4, 'jigu', 'jg', '1851,1852,1908,1945', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1946, 1908, '墨鱼', '墨鱼', 4, 'moyu', 'my', '1851,1852,1908,1946', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1947, 1908, '鲈鱼', '鲈鱼', 4, 'luyu', 'ly', '1851,1852,1908,1947', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1948, 1908, '梅鱼', '梅鱼', 4, 'meiyu', 'my', '1851,1852,1908,1948', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1949, 1908, '跳跳鱼', '跳跳鱼', 4, 'tiaotiaoyu', 'tty', '1851,1852,1908,1949', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1950, 1908, '银鱼', '银鱼', 4, 'yinyu', 'yy', '1851,1852,1908,1950', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1951, 1908, '鳓鱼', '鳓鱼', 4, 'leyu', 'ly', '1851,1852,1908,1951', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1952, 1908, '斧头鱼', '斧头鱼', 4, 'futouyu', 'fty', '1851,1852,1908,1952', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1953, 1908, '老虎鱼', '老虎鱼', 4, 'laohuyu', 'lhy', '1851,1852,1908,1953', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1954, 1908, '青占鱼', '青占鱼', 4, 'qingzhanyu', 'qzy', '1851,1852,1908,1954', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1955, 1908, '米鱼', '米鱼', 4, 'miyu', 'my', '1851,1852,1908,1955', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1956, 1908, '刀鱼', '刀鱼', 4, 'daoyu', 'dy', '1851,1852,1908,1956', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1957, 1908, '烟管鱼', '烟管鱼', 4, 'yanguanyu', 'ygy', '1851,1852,1908,1957', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1958, 1908, '多宝鱼', '多宝鱼', 4, 'duobaoyu', 'dby', '1851,1852,1908,1958', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1959, 1908, '龙胆', '龙胆', 4, 'longdan', 'ld', '1851,1852,1908,1959', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1960, 1908, '东星斑', '东星斑', 4, 'dongxingban', 'dxb', '1851,1852,1908,1960', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1961, 1908, '海鳗鱼', '海鳗鱼', 4, 'haimanyu', 'hmy', '1851,1852,1908,1961', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1962, 1908, '海鲶鱼', '海鲶鱼', 4, 'hainianyu', 'hny', '1851,1852,1908,1962', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1963, 1908, '小姐鱼', '小姐鱼', 4, 'xiaojieyu', 'xjy', '1851,1852,1908,1963', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1964, 1908, '先生鱼', '先生鱼', 4, 'xianshengyu', 'xsy', '1851,1852,1908,1964', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1965, 1908, '河豚', '河豚', 4, 'hetun', 'ht', '1851,1852,1908,1965', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1966, 1908, '海鲈鱼', '海鲈鱼', 4, 'hailuyu', 'hly', '1851,1852,1908,1966', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1967, 1908, '白花鱼', '白花鱼', 4, 'baihuayu', 'bhy', '1851,1852,1908,1967', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1968, 1908, '包公鱼', '包公鱼', 4, 'baogongyu', 'bgy', '1851,1852,1908,1968', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1969, 1908, '金雕鱼', '金雕鱼', 4, 'jindiaoyu', 'jdy', '1851,1852,1908,1969', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1970, 1908, '偏口鱼', '偏口鱼', 4, 'piankouyu', 'pky', '1851,1852,1908,1970', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1971, 1851, '虾类', '虾类', 2, 'xialei', 'xl', '1851,1971', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1972, 1971, '对虾', '对虾', 3, 'duixia', 'dx', '1851,1971,1972', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1973, 1972, '中国对虾', '中国对虾', 4, 'zhongguoduixia', 'zgdx', '1851,1971,1972,1973', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1974, 1972, '厄瓜多尔白虾', '厄瓜多尔白虾', 4, 'eguaduoerbaixia', 'egdebx', '1851,1971,1972,1974', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1975, 1972, '斑节对虾', '斑节对虾', 4, 'banjieduixia', 'bjdx', '1851,1971,1972,1975', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1976, 1972, '日本对虾', '日本对虾', 4, 'ribenduixia', 'rbdx', '1851,1971,1972,1976', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1977, 1971, '鹰爪虾', '鹰爪虾', 3, 'yingzhuaxia', 'yzx', '1851,1971,1977', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1978, 1971, '皮皮虾', '皮皮虾', 3, 'pipixia', 'ppx', '1851,1971,1978', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1979, 1971, '基围虾', '基围虾', 3, 'jiweixia', 'jwx', '1851,1971,1979', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1980, 1971, '中华管鞭虾', '中华管鞭虾', 3, 'zhonghuaguanbianxia', 'zhgbx', '1851,1971,1980', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1981, 1971, '仿对虾', '仿对虾', 3, 'fangduixia', 'fdx', '1851,1971,1981', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1982, 1971, '脊尾白虾', '脊尾白虾', 3, 'jiweibaixia', 'jwbx', '1851,1971,1982', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1983, 1971, '毛虾', '毛虾', 3, 'maoxia', 'mx', '1851,1971,1983', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1984, 1971, '龙虾', '龙虾', 3, 'longxia', 'lx', '1851,1971,1984', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1985, 1984, '波龙', '波龙', 4, 'bolong', 'bl', '1851,1971,1984,1985', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1986, 1984, '澳龙', '澳龙', 4, 'aolong', 'al', '1851,1971,1984,1986', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1987, 1984, '赤龙', '赤龙', 4, 'chilong', 'cl', '1851,1971,1984,1987', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1988, 1984, '花龙', '花龙', 4, 'hualong', 'hl', '1851,1971,1984,1988', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1989, 1984, '纽龙', '纽龙', 4, 'niulong', 'nl', '1851,1971,1984,1989', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1990, 1984, '小青龙', '小青龙', 4, 'xiaoqinglong', 'xql', '1851,1971,1984,1990', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1991, 1984, '火龙', '火龙', 4, 'huolong', 'hl', '1851,1971,1984,1991', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1992, 1984, '蓝龙', '蓝龙', 4, 'lanlong', 'll', '1851,1971,1984,1992', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1993, 1971, '小龙虾', '小龙虾', 3, 'xiaolongxia', 'xlx', '1851,1971,1993', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1994, 1971, '青虾', '青虾', 3, 'qingxia', 'qx', '1851,1971,1994', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1995, 1971, '罗氏沼虾', '罗氏沼虾', 3, 'luoshizhaoxia', 'lszx', '1851,1971,1995', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1996, 1971, '秀丽白虾', '秀丽白虾', 3, 'xiulibaixia', 'xlbx', '1851,1971,1996', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1997, 1971, '虾仁', '虾仁', 3, 'xiaren', 'xr', '1851,1971,1997', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1998, 1971, '虾尾', '虾尾', 3, 'xiawei', 'xw', '1851,1971,1998', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (1999, 1971, '南美白对虾', '南美白对虾', 3, 'nanmeibaiduixia', 'nmbdx', '1851,1971,1999', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2000, 1971, '河虾', '河虾', 3, 'hexia', 'hx', '1851,1971,2000', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2001, 1971, '草虾', '草虾', 3, 'caoxia', 'cx', '1851,1971,2001', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2002, 1971, '斑节虾', '斑节虾', 3, 'banjiexia', 'bjx', '1851,1971,2002', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2003, 1971, '北极虾', '北极虾', 3, 'beijixia', 'bjx', '1851,1971,2003', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2004, 1971, '南极磷虾', '南极磷虾', 3, 'nanjilinxia', 'njlx', '1851,1971,2004', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2005, 1971, '阿根廷红虾', '阿根廷红虾', 3, 'agentinghongxia', 'agthx', '1851,1971,2005', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2006, 1971, '立虾', '立虾', 3, 'lixia', 'lx', '1851,1971,2006', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2007, 1971, '白米虾', '白米虾', 3, 'baimixia', 'bmx', '1851,1971,2007', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2008, 1971, '琵琶虾', '琵琶虾', 3, 'pipaxia', 'ppx', '1851,1971,2008', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2009, 1971, '牡丹虾', '牡丹虾', 3, 'mudanxia', 'mdx', '1851,1971,2009', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2010, 1851, '蟹类', '蟹类', 2, 'xielei', 'xl', '1851,2010', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2011, 2010, '梭子蟹', '梭子蟹', 3, 'suozixie', 'szx', '1851,2010,2011', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2012, 2010, '青蟹', '青蟹', 3, 'qingxie', 'qx', '1851,2010,2012', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2013, 2010, '帝王蟹', '帝王蟹', 3, 'diwangxie', 'dwx', '1851,2010,2013', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2014, 2010, '面包蟹', '面包蟹', 3, 'mianbaoxie', 'mbx', '1851,2010,2014', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2015, 2010, '珍宝蟹', '珍宝蟹', 3, 'zhenbaoxie', 'zbx', '1851,2010,2015', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2016, 2010, '锈斑蟳', '锈斑蟳', 3, 'xiubanxun', 'xbx', '1851,2010,2016', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2017, 2010, '河蟹', '河蟹', 3, 'hexie', 'hx', '1851,2010,2017', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2018, 2010, '花蟹', '花蟹', 3, 'huaxie', 'hx', '1851,2010,2018', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2019, 2010, '湖蟹', '湖蟹', 3, 'huxie', 'hx', '1851,2010,2019', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2020, 2010, '石蟹', '石蟹', 3, 'shixie', 'sx', '1851,2010,2020', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2021, 2010, '板蟹', '板蟹', 3, 'banxie', 'bx', '1851,2010,2021', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2022, 2010, '赤甲红', '赤甲红', 3, 'chijiahong', 'cjh', '1851,2010,2022', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2023, 2010, '皇帝蟹', '皇帝蟹', 3, 'huangdixie', 'hdx', '1851,2010,2023', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2024, 2010, '花椒蟹', '花椒蟹', 3, 'huajiaoxie', 'hjx', '1851,2010,2024', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2025, 2010, '太子蟹', '太子蟹', 3, 'taizixie', 'tzx', '1851,2010,2025', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2026, 1851, '贝类', '贝类', 2, 'beilei', 'bl', '1851,2026', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2027, 2026, '蛏子', '蛏子', 3, 'chengzi', 'cz', '1851,2026,2027', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2028, 2026, '蚶子', '蚶子', 3, 'hanzi', 'hz', '1851,2026,2028', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2029, 2026, '扇贝', '扇贝', 3, 'shanbei', 'sb', '1851,2026,2029', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2030, 2026, '贻贝', '贻贝', 3, 'yibei', 'yb', '1851,2026,2030', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2031, 2026, '鲍鱼', '鲍鱼', 3, 'baoyu', 'by', '1851,2026,2031', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2032, 2026, '牡蛎', '牡蛎', 3, 'muli', 'ml', '1851,2026,2032', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2033, 2026, '象牙蚌', '象牙蚌', 3, 'xiangyabang', 'xyb', '1851,2026,2033', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2034, 2026, '田螺', '田螺', 3, 'tianluo', 'tl', '1851,2026,2034', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2035, 2026, '河蚌', '河蚌', 3, 'hebang', 'hb', '1851,2026,2035', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2036, 2026, '河蚬', '河蚬', 3, 'hexian', 'hx', '1851,2026,2036', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2037, 2026, '生蚝', '生蚝', 3, 'shenghao', 'sh', '1851,2026,2037', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2038, 2026, '蛤蜊', '蛤蜊', 3, 'hali', 'hl', '1851,2026,2038', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2039, 2026, '海螺', '海螺', 3, 'hailuo', 'hl', '1851,2026,2039', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2040, 2026, '石螺', '石螺', 3, 'shiluo', 'sl', '1851,2026,2040', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2041, 2026, '海蛏', '海蛏', 3, 'haicheng', 'hc', '1851,2026,2041', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2042, 2026, '鲜贝', '鲜贝', 3, 'xianbei', 'xb', '1851,2026,2042', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2043, 2026, '螺蛳', '螺蛳', 3, 'luosi', 'ls', '1851,2026,2043', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2044, 2026, '香螺', '香螺', 3, 'xiangluo', 'xl', '1851,2026,2044', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2045, 2026, '东风螺', '东风螺', 3, 'dongfengluo', 'dfl', '1851,2026,2045', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2046, 2026, '山坑螺', '山坑螺', 3, 'shankengluo', 'skl', '1851,2026,2046', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2047, 2026, '象拔蚌', '象拔蚌', 3, 'xiangbabang', 'xbb', '1851,2026,2047', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2048, 2026, '北极贝', '北极贝', 3, 'beijibei', 'bjb', '1851,2026,2048', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2049, 2026, '淡菜', '淡菜', 3, 'dancai', 'dc', '1851,2026,2049', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2050, 2026, '丁螺', '丁螺', 3, 'dingluo', 'dl', '1851,2026,2050', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2051, 2026, '黄金贝', '黄金贝', 3, 'huangjinbei', 'hjb', '1851,2026,2051', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2052, 2026, '月亮贝', '月亮贝', 3, 'yueliangbei', 'ylb', '1851,2026,2052', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2053, 2026, '海瓜子', '海瓜子', 3, 'haiguazi', 'hgz', '1851,2026,2053', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2054, 2026, '海蚌', '海蚌', 3, 'haibang', 'hb', '1851,2026,2054', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2055, 2026, '美国贝', '美国贝', 3, 'meiguobei', 'mgb', '1851,2026,2055', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2056, 2026, '黄贝', '黄贝', 3, 'huangbei', 'hb', '1851,2026,2056', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2057, 2026, '白玉贝', '白玉贝', 3, 'baiyubei', 'byb', '1851,2026,2057', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2058, 2026, '珍珠贝', '珍珠贝', 3, 'zhenzhubei', 'zzb', '1851,2026,2058', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2059, 2026, '西施贝', '西施贝', 3, 'xishibei', 'xsb', '1851,2026,2059', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2060, 2026, '石头贝', '石头贝', 3, 'shitoubei', 'stb', '1851,2026,2060', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2061, 2026, '黄金螺', '黄金螺', 3, 'huangjinluo', 'hjl', '1851,2026,2061', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2062, 2026, '大角螺', '大角螺', 3, 'dajiaoluo', 'djl', '1851,2026,2062', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2063, 2026, '刀贝', '刀贝', 3, 'daobei', 'db', '1851,2026,2063', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2064, 2026, '小蚌', '小蚌', 3, 'xiaobang', 'xb', '1851,2026,2064', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2065, 2026, '黄螺', '黄螺', 3, 'huangluo', 'hl', '1851,2026,2065', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2066, 2026, '白蛤', '白蛤', 3, 'baiha', 'bh', '1851,2026,2066', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2067, 2026, '朝鲜蚌', '朝鲜蚌', 3, 'chaoxianbang', 'cxb', '1851,2026,2067', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2068, 2026, '肥贝', '肥贝', 3, 'feibei', 'fb', '1851,2026,2068', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2069, 2026, '油蛤', '油蛤', 3, 'youha', 'yh', '1851,2026,2069', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2070, 2026, '广州蚌仔', '广州蚌仔', 3, 'guangzhoubangzi', 'gzbz', '1851,2026,2070', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2071, 2026, '泥螺', '泥螺', 3, 'niluo', 'nl', '1851,2026,2071', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2072, 2026, '海花', '海花', 3, 'haihua', 'hh', '1851,2026,2072', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2073, 2026, '芝麻螺', '芝麻螺', 3, 'zhimaluo', 'zml', '1851,2026,2073', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2074, 2026, '辣螺', '辣螺', 3, 'laluo', 'll', '1851,2026,2074', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2075, 2026, '文蛤', '文蛤', 3, 'wenha', 'wh', '1851,2026,2075', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2076, 2026, '油王', '油王', 3, 'youwang', 'yw', '1851,2026,2076', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2077, 2026, '蜗牛', '蜗牛', 3, 'woniu', 'wn', '1851,2026,2077', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2078, 2026, 'T贝', 'T贝', 3, 'Tbei', 'Tb', '1851,2026,2078', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2079, 2026, '毛贝', '毛贝', 3, 'maobei', 'mb', '1851,2026,2079', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2080, 2026, '血蛤', '血蛤', 3, 'xueha', 'xh', '1851,2026,2080', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2081, 2026, '小人儿仙', '小人儿仙', 3, 'xiaorenerxian', 'xrex', '1851,2026,2081', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2082, 2026, '海虹', '海虹', 3, 'haihong', 'hh', '1851,2026,2082', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2083, 2026, '青口贝', '青口贝', 3, 'qingkoubei', 'qkb', '1851,2026,2083', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2084, 2026, '毛蚶', '毛蚶', 3, 'maohan', 'mh', '1851,2026,2084', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2085, 2026, '文革贝', '文革贝', 3, 'wengebei', 'wgb', '1851,2026,2085', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2086, 2026, '牛眼贝', '牛眼贝', 3, 'niuyanbei', 'nyb', '1851,2026,2086', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2087, 2026, '天鹅蛋', '天鹅蛋', 3, 'tianedan', 'ted', '1851,2026,2087', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2088, 2026, '七彩贝', '七彩贝', 3, 'qicaibei', 'qcb', '1851,2026,2088', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2089, 2026, '红贝', '红贝', 3, 'hongbei', 'hb', '1851,2026,2089', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2090, 2026, '赤贝', '赤贝', 3, 'chibei', 'cb', '1851,2026,2090', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2091, 2026, '海爪子', '海爪子', 3, 'haizhuazi', 'hzz', '1851,2026,2091', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2092, 2026, '孔雀贝', '孔雀贝', 3, 'kongquebei', 'kqb', '1851,2026,2092', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2093, 1851, '藻类', '藻类', 2, 'zaolei', 'zl', '1851,2093', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2094, 2093, '海带', '海带', 3, 'haidai', 'hd', '1851,2093,2094', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2095, 2093, '裙带菜', '裙带菜', 3, 'qundaicai', 'qdc', '1851,2093,2095', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2096, 2093, '江蓠', '江蓠', 3, 'jiangli', 'jl', '1851,2093,2096', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2097, 2093, '石花菜', '石花菜', 3, 'shihuacai', 'shc', '1851,2093,2097', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2098, 2093, '盐藻', '盐藻', 3, 'yanzao', 'yz', '1851,2093,2098', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2099, 2093, '马尾藻', '马尾藻', 3, 'maweizao', 'mwz', '1851,2093,2099', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2100, 2093, '浒苔', '浒苔', 3, 'hutai', 'ht', '1851,2093,2100', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2101, 2093, '羊栖菜', '羊栖菜', 3, 'yangqicai', 'yqc', '1851,2093,2101', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2102, 2093, '麒麟菜', '麒麟菜', 3, 'qilincai', 'qlc', '1851,2093,2102', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2103, 2093, '螺旋藻', '螺旋藻', 3, 'luoxuanzao', 'lxz', '1851,2093,2103', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2104, 2093, '红球藻', '红球藻', 3, 'hongqiuzao', 'hqz', '1851,2093,2104', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2105, 2093, '小球藻', '小球藻', 3, 'xiaoqiuzao', 'xqz', '1851,2093,2105', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2106, 2093, '葛仙米', '葛仙米', 3, 'gexianmi', 'gxm', '1851,2093,2106', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2107, 1851, '头足类', '头足类', 2, 'touzulei', 'tzl', '1851,2107', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2108, 2107, '鱿鱼', '鱿鱼', 3, 'youyu', 'yy', '1851,2107,2108', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2109, 2107, '乌贼', '乌贼', 3, 'wuzei', 'wz', '1851,2107,2109', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2110, 2107, '章鱼', '章鱼', 3, 'zhangyu', 'zy', '1851,2107,2110', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2111, 2107, '笔管鱼', '笔管鱼', 3, 'biguanyu', 'bgy', '1851,2107,2111', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2112, 2107, '沙虫', '沙虫', 3, 'shachong', 'sc', '1851,2107,2112', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2113, 2107, '鱿鱼圈', '鱿鱼圈', 3, 'youyuquan', 'yyq', '1851,2107,2113', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2114, 2107, '海肠', '海肠', 3, 'haichang', 'hc', '1851,2107,2114', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2115, 2107, '泥丁', '泥丁', 3, 'niding', 'nd', '1851,2107,2115', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2116, 2107, '鳐鱼', '鳐鱼', 3, 'yaoyu', 'yy', '1851,2107,2116', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2117, 2107, '八爪鱼', '八爪鱼', 3, 'bazhuayu', 'bzy', '1851,2107,2117', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2118, 1851, '其他水产', '其他水产', 2, 'qitashuichan', 'qtsc', '1851,2118', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2119, 2118, '海蜇', '海蜇', 3, 'haizhe', 'hz', '1851,2118,2119', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2120, 2118, '海胆', '海胆', 3, 'haidan', 'hd', '1851,2118,2120', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2121, 2118, '海参', '海参', 3, 'haican', 'hc', '1851,2118,2121', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2122, 2118, '海龟', '海龟', 3, 'haigui', 'hg', '1851,2118,2122', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2123, 2118, '星虫', '星虫', 3, 'xingchong', 'xc', '1851,2118,2123', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2124, 2118, '甲鱼', '甲鱼', 3, 'jiayu', 'jy', '1851,2118,2124', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2125, 2118, '蛙', '蛙', 3, 'wa', 'w', '1851,2118,2125', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2126, 2118, '鳖', '鳖', 3, 'bie', 'b', '1851,2118,2126', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2127, 2118, '乌龟', '乌龟', 3, 'wugui', 'wg', '1851,2118,2127', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2128, 2118, '牛蛙', '牛蛙', 3, 'niuwa', 'nw', '1851,2118,2128', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2129, 2118, '青蛙', '青蛙', 3, 'qingwa', 'qw', '1851,2118,2129', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2130, 2118, '蟾蜍', '蟾蜍', 3, 'chanchu', 'cc', '1851,2118,2130', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2131, 2118, '鳄鱼', '鳄鱼', 3, 'eyu', 'ey', '1851,2118,2131', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2132, 2118, '冻海鲜', '冻海鲜', 3, 'donghaixian', 'dhx', '1851,2118,2132', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2133, 2132, '冻刀鱼', '冻刀鱼', 4, 'dongdaoyu', 'ddy', '1851,2118,2132,2133', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2134, 2132, '冻黄花鱼', '冻黄花鱼', 4, 'donghuanghuayu', 'dhhy', '1851,2118,2132,2134', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2135, 2132, '冻大虾', '冻大虾', 4, 'dongdaxia', 'ddx', '1851,2118,2132,2135', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2136, 2132, '冻虾仁', '冻虾仁', 4, 'dongxiaren', 'dxr', '1851,2118,2132,2136', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2137, 2132, '冻鸳鸯贝原汁', '冻鸳鸯贝原汁', 4, 'dongyuanyangbeiyuanzhi', 'dyybyz', '1851,2118,2132,2137', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2138, 2132, '冻虾尾', '冻虾尾', 4, 'dongxiawei', 'dxw', '1851,2118,2132,2138', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2139, 2132, '冻波龙', '冻波龙', 4, 'dongbolong', 'dbl', '1851,2118,2132,2139', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2140, 2132, '冻澳龙', '冻澳龙', 4, 'dongaolong', 'dal', '1851,2118,2132,2140', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2141, 2132, '冻海鲈鱼', '冻海鲈鱼', 4, 'donghailuyu', 'dhly', '1851,2118,2132,2141', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2142, 2132, '冻鲐鲅鱼', '冻鲐鲅鱼', 4, 'dongtaibayu', 'dtby', '1851,2118,2132,2142', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2143, 2132, '冻金昌鱼', '冻金昌鱼', 4, 'dongjinchangyu', 'djcy', '1851,2118,2132,2143', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2144, 2132, '冻籽乌', '冻籽乌', 4, 'dongziwu', 'dzw', '1851,2118,2132,2144', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2145, 2132, '冻生蚝肉', '冻生蚝肉', 4, 'dongshenghaorou', 'dshr', '1851,2118,2132,2145', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2146, 2132, '冻鲍鱼', '冻鲍鱼', 4, 'dongbaoyu', 'dby', '1851,2118,2132,2146', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2147, 2132, '冻扇贝', '冻扇贝', 4, 'dongshanbei', 'dsb', '1851,2118,2132,2147', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2148, 2132, '冻白鲳鱼', '冻白鲳鱼', 4, 'dongbaichangyu', 'dbcy', '1851,2118,2132,2148', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2149, 2132, '冻虾爬肉', '冻虾爬肉', 4, 'dongxiaparou', 'dxpr', '1851,2118,2132,2149', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2150, 2132, '冻鳕鱼', '冻鳕鱼', 4, 'dongxueyu', 'dxy', '1851,2118,2132,2150', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2151, 2132, '冻乌鱼蛋', '冻乌鱼蛋', 4, 'dongwuyudan', 'dwyd', '1851,2118,2132,2151', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2152, 2132, '冻海参', '冻海参', 4, 'donghaican', 'dhc', '1851,2118,2132,2152', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2153, 2132, '冻晶鱼', '冻晶鱼', 4, 'dongjingyu', 'djy', '1851,2118,2132,2153', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2154, 2132, '冻碟鱼头', '冻碟鱼头', 4, 'dongdieyutou', 'ddyt', '1851,2118,2132,2154', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2155, 2132, '冻牛蛙', '冻牛蛙', 4, 'dongniuwa', 'dnw', '1851,2118,2132,2155', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2156, 2132, '冻鱿鱼片', '冻鱿鱼片', 4, 'dongyouyupian', 'dyyp', '1851,2118,2132,2156', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2157, 2132, '冻鱿鱼须', '冻鱿鱼须', 4, 'dongyouyuxu', 'dyyx', '1851,2118,2132,2157', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2158, 1851, '水产加工品', '水产加工品', 2, 'shuichanjiagongpin', 'scjgp', '1851,2158', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2159, 2158, '生蚝肉', '生蚝肉', 3, 'shenghaorou', 'shr', '1851,2158,2159', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2160, 2158, '墨鱼仔', '墨鱼仔', 3, 'moyuzi', 'myz', '1851,2158,2160', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2161, 2158, '田螺肉', '田螺肉', 3, 'tianluorou', 'tlr', '1851,2158,2161', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2162, 2158, '咸鱼', '咸鱼', 3, 'xianyu', 'xy', '1851,2158,2162', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2163, 2158, '虾滑', '虾滑', 3, 'xiahua', 'xh', '1851,2158,2163', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2164, 2158, '蟹钳', '蟹钳', 3, 'xieqian', 'xq', '1851,2158,2164', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2165, 2158, '鱼肚', '鱼肚', 3, 'yudu', 'yd', '1851,2158,2165', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2166, 2158, '速冻八爪鱼', '速冻八爪鱼', 3, 'sudongbazhuayu', 'sdbzy', '1851,2158,2166', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2167, 2158, '鱼头', '鱼头', 3, 'yutou', 'yt', '1851,2158,2167', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2168, 2158, '鱼排', '鱼排', 3, 'yupai', 'yp', '1851,2158,2168', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2169, 2158, '鱿鱼筒', '鱿鱼筒', 3, 'youyutong', 'yyt', '1851,2158,2169', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2170, 2158, '切蟹', '切蟹', 3, 'qiexie', 'qx', '1851,2158,2170', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2171, 2158, '海带卷', '海带卷', 3, 'haidaijuan', 'hdj', '1851,2158,2171', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2172, 2158, '蟹黄', '蟹黄', 3, 'xiehuang', 'xh', '1851,2158,2172', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2173, 2158, '虾球', '虾球', 3, 'xiaqiu', 'xq', '1851,2158,2173', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2174, 2158, '石螺肉', '石螺肉', 3, 'shiluorou', 'slr', '1851,2158,2174', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2175, 2158, '鱼尾', '鱼尾', 3, 'yuwei', 'yw', '1851,2158,2175', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2176, 2158, '虾片', '虾片', 3, 'xiapian', 'xp', '1851,2158,2176', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2177, 2158, '火焙鱼', '火焙鱼', 3, 'huobeiyu', 'hby', '1851,2158,2177', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2178, 2158, '响螺片', '响螺片', 3, 'xiangluopian', 'xlp', '1851,2158,2178', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2179, 1851, '水产干货', '水产干货', 2, 'shuichanganhuo', 'scgh', '1851,2179', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2180, 2179, '鱼干', '鱼干', 3, 'yugan', 'yg', '1851,2179,2180', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2181, 2179, '干虾', '干虾', 3, 'ganxia', 'gx', '1851,2179,2181', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2182, 2179, '虾皮', '虾皮', 3, 'xiapi', 'xp', '1851,2179,2182', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2183, 2179, '花胶', '花胶', 3, 'huajiao', 'hj', '1851,2179,2183', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2184, 2179, '瑶柱', '瑶柱', 3, 'yaozhu', 'yz', '1851,2179,2184', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2185, 2179, '刺龟皮', '刺龟皮', 3, 'ciguipi', 'cgp', '1851,2179,2185', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2186, 0, '酒饮', '酒饮', 1, 'jiuyin', 'jy', '2186', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2187, 2186, '饮品', '饮品', 2, 'yinpin', 'yp', '2186,2187', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2188, 2187, '碳酸饮料', '碳酸饮料', 3, 'tansuanyinliao', 'tsyl', '2186,2187,2188', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2189, 2187, '果汁', '果汁', 3, 'guozhi', 'gz', '2186,2187,2189', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2190, 2187, '茶饮', '茶饮', 3, 'chayin', 'cy', '2186,2187,2190', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2191, 2187, '乳品', '乳品', 3, 'rupin', 'rp', '2186,2187,2191', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2192, 2191, '牛奶', '牛奶', 4, 'niunai', 'nn', '2186,2187,2191,2192', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2193, 2191, '驴奶', '驴奶', 4, 'lvnai', 'ln', '2186,2187,2191,2193', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2194, 2191, '酸奶', '酸奶', 4, 'suannai', 'sn', '2186,2187,2191,2194', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2195, 2187, '功能饮料', '功能饮料', 3, 'gongnengyinliao', 'gnyl', '2186,2187,2195', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2196, 2187, '矿泉水', '矿泉水', 3, 'kuangquanshui', 'kqs', '2186,2187,2196', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2197, 2186, '酒类', '酒类', 2, 'jiulei', 'jl', '2186,2197', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2198, 2197, '白酒', '白酒', 3, 'baijiu', 'bj', '2186,2197,2198', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2199, 2198, '纯粮酒', '纯粮酒', 4, 'chunliangjiu', 'clj', '2186,2197,2198,2199', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2200, 2198, '茅台', '茅台', 4, 'maotai', 'mt', '2186,2197,2198,2200', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2201, 2198, '五粮液', '五粮液', 4, 'wuliangye', 'wly', '2186,2197,2198,2201', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2202, 2198, '汾酒', '汾酒', 4, 'fenjiu', 'fj', '2186,2197,2198,2202', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2203, 2198, '泸州老窖', '泸州老窖', 4, 'luzhoulaojiao', 'lzlj', '2186,2197,2198,2203', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2204, 2198, '西凤', '西凤', 4, 'xifeng', 'xf', '2186,2197,2198,2204', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2205, 2198, '牛栏山', '牛栏山', 4, 'niulanshan', 'nls', '2186,2197,2198,2205', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2206, 2198, '郎酒', '郎酒', 4, 'langjiu', 'lj', '2186,2197,2198,2206', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2207, 2198, '北大仓', '北大仓', 4, 'beidacang', 'bdc', '2186,2197,2198,2207', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2208, 2198, '北大荒', '北大荒', 4, 'beidahuang', 'bdh', '2186,2197,2198,2208', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2209, 2198, '玉泉', '玉泉', 4, 'yuquan', 'yq', '2186,2197,2198,2209', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2210, 2198, '富裕老窖', '富裕老窖', 4, 'fuyulaojiao', 'fylj', '2186,2197,2198,2210', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2211, 2198, '洋河大曲', '洋河大曲', 4, 'yanghedaqu', 'yhdq', '2186,2197,2198,2211', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2212, 2197, '啤酒', '啤酒', 3, 'pijiu', 'pj', '2186,2197,2212', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2213, 2212, '雪熊', '雪熊', 4, 'xuexiong', 'xx', '2186,2197,2212,2213', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2214, 2212, '青岛', '青岛', 4, 'qingdao', 'qd', '2186,2197,2212,2214', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2215, 2212, '哈啤', '哈啤', 4, 'hapi', 'hp', '2186,2197,2212,2215', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2216, 2212, '雪花', '雪花', 4, 'xuehua', 'xh', '2186,2197,2212,2216', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2217, 2212, '燕京', '燕京', 4, 'yanjing', 'yj', '2186,2197,2212,2217', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2218, 2212, '百威', '百威', 4, 'baiwei', 'bw', '2186,2197,2212,2218', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2219, 2197, '红酒', '红酒', 3, 'hongjiu', 'hj', '2186,2197,2219', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2220, 2219, '长城', '长城', 4, 'zhangcheng', 'zc', '2186,2197,2219,2220', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2221, 2219, '张裕', '张裕', 4, 'zhangyu', 'zy', '2186,2197,2219,2221', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2222, 2197, '果酒', '果酒', 3, 'guojiu', 'gj', '2186,2197,2222', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2223, 2197, '黄酒', '黄酒', 3, 'huangjiu', 'hj', '2186,2197,2223', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2224, 2197, '竹筒酒', '竹筒酒', 3, 'zhutongjiu', 'ztj', '2186,2197,2224', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2225, 0, '茶叶', '茶叶', 1, 'chaye', 'cy', '2225', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2226, 2225, '绿茶', '绿茶', 2, 'lvcha', 'lc', '2225,2226', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2227, 2226, '龙井', '龙井', 3, 'longjing', 'lj', '2225,2226,2227', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2228, 2226, '碧螺春', '碧螺春', 3, 'biluochun', 'blc', '2225,2226,2228', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2229, 2226, '黄山毛峰', '黄山毛峰', 3, 'huangshanmaofeng', 'hsmf', '2225,2226,2229', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2230, 2226, '竹叶青', '竹叶青', 3, 'zhuyeqing', 'zyq', '2225,2226,2230', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2231, 2226, '崂山绿', '崂山绿', 3, 'laoshanlv', 'lsl', '2225,2226,2231', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2232, 2225, '红茶', '红茶', 2, 'hongcha', 'hc', '2225,2232', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2233, 2232, '武夷山红茶', '武夷山红茶', 3, 'wuyishanhongcha', 'wyshc', '2225,2232,2233', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2234, 2232, '祁门红茶', '祁门红茶', 3, 'qimenhongcha', 'qmhc', '2225,2232,2234', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2235, 2232, '云南滇红', '云南滇红', 3, 'yunnandianhong', 'yndh', '2225,2232,2235', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2236, 2225, '黄茶', '黄茶', 2, 'huangcha', 'hc', '2225,2236', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2237, 2236, '君山银针', '君山银针', 3, 'junshanyinzhen', 'jsyz', '2225,2236,2237', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2238, 2236, '蒙顶黄芽', '蒙顶黄芽', 3, 'mengdinghuangya', 'mdhy', '2225,2236,2238', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2239, 2236, '北港毛尖', '北港毛尖', 3, 'beigangmaojian', 'bgmj', '2225,2236,2239', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2240, 2236, '远安黄茶', '远安黄茶', 3, 'yuananhuangcha', 'yahc', '2225,2236,2240', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2241, 2225, '白茶', '白茶', 2, 'baicha', 'bc', '2225,2241', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2242, 2241, '白毫', '白毫', 3, 'baihao', 'bh', '2225,2241,2242', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2243, 2241, '贡眉', '贡眉', 3, 'gongmei', 'gm', '2225,2241,2243', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2244, 2241, '白牡丹', '白牡丹', 3, 'baimudan', 'bmd', '2225,2241,2244', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2245, 2241, '寿眉', '寿眉', 3, 'shoumei', 'sm', '2225,2241,2245', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2246, 2225, '乌龙茶', '乌龙茶', 2, 'wulongcha', 'wlc', '2225,2246', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2247, 2246, '铁观音', '铁观音', 3, 'tieguanyin', 'tgy', '2225,2246,2247', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2248, 2246, '大红牌', '大红牌', 3, 'dahongpai', 'dhp', '2225,2246,2248', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2249, 2225, '黑茶', '黑茶', 2, 'heicha', 'hc', '2225,2249', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2250, 2249, '普洱茶', '普洱茶', 3, 'puercha', 'pec', '2225,2249,2250', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2251, 2249, '六堡茶', '六堡茶', 3, 'liubaocha', 'lbc', '2225,2249,2251', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2252, 2249, '藏茶', '藏茶', 3, 'zangcha', 'zc', '2225,2249,2252', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2253, 2225, '花茶', '花茶', 2, 'huacha', 'hc', '2225,2253', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2254, 2253, '茉莉花茶', '茉莉花茶', 3, 'molihuacha', 'mlhc', '2225,2253,2254', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2255, 2253, '红玫瑰茶', '红玫瑰茶', 3, 'hongmeiguicha', 'hmgc', '2225,2253,2255', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2256, 2253, '白兰花茶', '白兰花茶', 3, 'bailanhuacha', 'blhc', '2225,2253,2256', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2257, 2253, '珠兰花茶', '珠兰花茶', 3, 'zhulanhuacha', 'zlhc', '2225,2253,2257', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2258, 2253, '桂花茶', '桂花茶', 3, 'guihuacha', 'ghc', '2225,2253,2258', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2259, 0, '粮油类', '粮油类', 1, 'liangyoulei', 'lyl', '2259', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2260, 2259, '食用油', '食用油', 2, 'shiyongyou', 'syy', '2259,2260', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2261, 2260, '大豆油', '大豆油', 3, 'dadouyou', 'ddy', '2259,2260,2261', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2262, 2260, '菜籽油', '菜籽油', 3, 'caiziyou', 'czy', '2259,2260,2262', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2263, 2260, '葵花籽油', '葵花籽油', 3, 'kuihuaziyou', 'khzy', '2259,2260,2263', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2264, 2260, '玉米油', '玉米油', 3, 'yumiyou', 'ymy', '2259,2260,2264', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2265, 2260, '花生油', '花生油', 3, 'huashengyou', 'hsy', '2259,2260,2265', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2266, 2260, '橄榄油', '橄榄油', 3, 'ganlanyou', 'gly', '2259,2260,2266', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2267, 2260, '猪油', '猪油', 3, 'zhuyou', 'zy', '2259,2260,2267', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2268, 2259, '粮食', '粮食', 2, 'liangshi', 'ls', '2259,2268', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2269, 2268, '大米', '大米', 3, 'dami', 'dm', '2259,2268,2269', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2270, 2268, '面粉', '面粉', 3, 'mianfen', 'mf', '2259,2268,2270', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2271, 2268, '小麦', '小麦', 3, 'xiaomai', 'xm', '2259,2268,2271', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2272, 2268, '稻谷', '稻谷', 3, 'daogu', 'dg', '2259,2268,2272', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2273, 2268, '杂粮', '杂粮', 3, 'zaliang', 'zl', '2259,2268,2273', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2274, 2273, '玉米', '玉米', 4, 'yumi', 'ym', '2259,2268,2273,2274', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2275, 2273, '玉米面', '玉米面', 4, 'yumimian', 'ymm', '2259,2268,2273,2275', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2276, 2273, '谷子', '谷子', 4, 'guzi', 'gz', '2259,2268,2273,2276', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2277, 2273, '藜麦', '藜麦', 4, 'limai', 'lm', '2259,2268,2273,2277', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2278, 2273, '青稞', '青稞', 4, 'qingke', 'qk', '2259,2268,2273,2278', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2279, 2273, '莜麦', '莜麦', 4, 'youmai', 'ym', '2259,2268,2273,2279', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2280, 2273, '奇亚籽', '奇亚籽', 4, 'qiyazi', 'qyz', '2259,2268,2273,2280', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2281, 2273, '冰湖野米', '冰湖野米', 4, 'binghuyemi', 'bhym', '2259,2268,2273,2281', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2282, 2273, '小米', '小米', 4, 'xiaomi', 'xm', '2259,2268,2273,2282', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2283, 2273, '高粱', '高粱', 4, 'gaoliang', 'gl', '2259,2268,2273,2283', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2284, 2273, '薏米', '薏米', 4, 'yimi', 'ym', '2259,2268,2273,2284', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2285, 2273, '黍子', '黍子', 4, 'shuzi', 'sz', '2259,2268,2273,2285', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2286, 2273, '燕麦', '燕麦', 4, 'yanmai', 'ym', '2259,2268,2273,2286', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2287, 2273, '红米', '红米', 4, 'hongmi', 'hm', '2259,2268,2273,2287', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2288, 2273, '荞麦', '荞麦', 4, 'qiaomai', 'qm', '2259,2268,2273,2288', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2289, 2273, '大麦', '大麦', 4, 'damai', 'dm', '2259,2268,2273,2289', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2290, 2273, '花生米', '花生米', 4, 'huashengmi', 'hsm', '2259,2268,2273,2290', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2291, 2273, '糯米', '糯米', 4, 'nuomi', 'nm', '2259,2268,2273,2291', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2292, 2273, '薏仁米', '薏仁米', 4, 'yirenmi', 'yrm', '2259,2268,2273,2292', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2293, 2268, '豆类', '豆类', 3, 'doulei', 'dl', '2259,2268,2293', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2294, 2293, '黄豆', '黄豆', 4, 'huangdou', 'hd', '2259,2268,2293,2294', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2295, 2293, '绿豆', '绿豆', 4, 'lvdou', 'ld', '2259,2268,2293,2295', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2296, 2293, '蚕豆', '蚕豆', 4, 'candou', 'cd', '2259,2268,2293,2296', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2297, 2293, '赤豆', '赤豆', 4, 'chidou', 'cd', '2259,2268,2293,2297', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2298, 2293, '黑豆', '黑豆', 4, 'heidou', 'hd', '2259,2268,2293,2298', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2299, 2293, '红豆', '红豆', 4, 'hongdou', 'hd', '2259,2268,2293,2299', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2300, 2293, '大豆', '大豆', 4, 'dadou', 'dd', '2259,2268,2293,2300', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2301, 2293, '干豌豆', '干豌豆', 4, 'ganwandou', 'gwd', '2259,2268,2293,2301', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2302, 2293, '干芸豆', '干芸豆', 4, 'ganyundou', 'gyd', '2259,2268,2293,2302', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2303, 2293, '鹰嘴豆', '鹰嘴豆', 4, 'yingzuidou', 'yzd', '2259,2268,2293,2303', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2304, 2293, '小扁豆', '小扁豆', 4, 'xiaobiandou', 'xbd', '2259,2268,2293,2304', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2305, 2293, '芽豆', '芽豆', 4, 'yadou', 'yd', '2259,2268,2293,2305', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2306, 2293, '油豆', '油豆', 4, 'youdou', 'yd', '2259,2268,2293,2306', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2307, 2293, '箭舌豌豆', '箭舌豌豆', 4, 'jianshewandou', 'jswd', '2259,2268,2293,2307', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2308, 2293, '红花豆', '红花豆', 4, 'honghuadou', 'hhd', '2259,2268,2293,2308', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2309, 2293, '白豆', '白豆', 4, 'baidou', 'bd', '2259,2268,2293,2309', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2310, 2293, '油莎豆', '油莎豆', 4, 'youshadou', 'ysd', '2259,2268,2293,2310', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2311, 2293, '竹豆', '竹豆', 4, 'zhudou', 'zd', '2259,2268,2293,2311', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2312, 2259, '油料', '油料', 2, 'youliao', 'yl', '2259,2312', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2313, 2312, '菜籽', '菜籽', 3, 'caizi', 'cz', '2259,2312,2313', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2314, 2312, '芝麻', '芝麻', 3, 'zhima', 'zm', '2259,2312,2314', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2315, 2312, '葵花', '葵花', 3, 'kuihua', 'kh', '2259,2312,2315', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2316, 2312, '油茶籽', '油茶籽', 3, 'youchazi', 'ycz', '2259,2312,2316', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2317, 2312, '亚麻籽', '亚麻籽', 3, 'yamazi', 'ymz', '2259,2312,2317', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2318, 2312, '白芝麻', '白芝麻', 3, 'baizhima', 'bzm', '2259,2312,2318', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2319, 2312, '山茶油果', '山茶油果', 3, 'shanchayouguo', 'scyg', '2259,2312,2319', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2320, 2312, '红花籽', '红花籽', 3, 'honghuazi', 'hhz', '2259,2312,2320', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2321, 2312, '南瓜籽', '南瓜籽', 3, 'nanguazi', 'ngz', '2259,2312,2321', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2322, 2312, '油桐籽', '油桐籽', 3, 'youtongzi', 'ytz', '2259,2312,2322', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2323, 2312, '荏籽', '荏籽', 3, 'renzi', 'rz', '2259,2312,2323', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2324, 2312, '油瓜', '油瓜', 3, 'yougua', 'yg', '2259,2312,2324', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2325, 2312, '苏子', '苏子', 3, 'suzi', 'sz', '2259,2312,2325', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2326, 2312, '漆树籽', '漆树籽', 3, 'qishuzi', 'qsz', '2259,2312,2326', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2327, 0, '蛋奶类', '蛋奶类', 1, 'dannailei', 'dnl', '2327', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2328, 2327, '蛋类', '蛋类', 2, 'danlei', 'dl', '2327,2328', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2329, 2328, '鸡蛋', '鸡蛋', 3, 'jidan', 'jd', '2327,2328,2329', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2330, 2329, '鲜鸡蛋', '鲜鸡蛋', 4, 'xianjidan', 'xjd', '2327,2328,2329,2330', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2331, 2329, '柴鸡蛋', '柴鸡蛋', 4, 'chaijidan', 'cjd', '2327,2328,2329,2331', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2332, 2329, '乌鸡蛋', '乌鸡蛋', 4, 'wujidan', 'wjd', '2327,2328,2329,2332', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2333, 2329, '野鸡蛋', '野鸡蛋', 4, 'yejidan', 'yjd', '2327,2328,2329,2333', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2334, 2329, '毛鸡蛋', '毛鸡蛋', 4, 'maojidan', 'mjd', '2327,2328,2329,2334', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2335, 2329, '咸鸡蛋', '咸鸡蛋', 4, 'xianjidan', 'xjd', '2327,2328,2329,2335', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2336, 2328, '鸭蛋', '鸭蛋', 3, 'yadan', 'yd', '2327,2328,2336', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2337, 2336, '鲜鸭蛋', '鲜鸭蛋', 4, 'xianyadan', 'xyd', '2327,2328,2336,2337', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2338, 2336, '野鸭蛋', '野鸭蛋', 4, 'yeyadan', 'yyd', '2327,2328,2336,2338', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2339, 2336, '咸鸭蛋', '咸鸭蛋', 4, 'xianyadan', 'xyd', '2327,2328,2336,2339', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2340, 2336, '烤鸭蛋', '烤鸭蛋', 4, 'kaoyadan', 'kyd', '2327,2328,2336,2340', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2341, 2328, '鹅蛋', '鹅蛋', 3, 'edan', 'ed', '2327,2328,2341', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2342, 2328, '鸽蛋', '鸽蛋', 3, 'gedan', 'gd', '2327,2328,2342', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2343, 2328, '鹌鹑蛋', '鹌鹑蛋', 3, 'anchundan', 'acd', '2327,2328,2343', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2344, 2328, '皮蛋', '皮蛋', 3, 'pidan', 'pd', '2327,2328,2344', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2345, 2328, '其它蛋类', '其它蛋类', 3, 'qitadanlei', 'qtdl', '2327,2328,2345', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2346, 2327, '奶类', '奶类', 2, 'nailei', 'nl', '2327,2346', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2347, 2346, '鲜奶', '鲜奶', 3, 'xiannai', 'xn', '2327,2346,2347', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2348, 2347, '鲜牛奶', '鲜牛奶', 4, 'xianniunai', 'xnn', '2327,2346,2347,2348', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2349, 2346, '奶制品', '奶制品', 3, 'naizhipin', 'nzp', '2327,2346,2349', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2350, 2349, '奶油', '奶油', 4, 'naiyou', 'ny', '2327,2346,2349,2350', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2351, 2349, '奶酪', '奶酪', 4, 'nailao', 'nl', '2327,2346,2349,2351', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2352, 0, '日杂用品', '日杂用品', 1, 'rizayongpin', 'rzyp', '2352', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2353, 2352, '日用品', '日用品', 2, 'riyongpin', 'ryp', '2352,2353', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2354, 2352, '酒店用品', '酒店用品', 2, 'jiudianyongpin', 'jdyp', '2352,2354', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2355, 2354, '一次性用品', '一次性用品', 3, 'yicixingyongpin', 'ycxyp', '2352,2354,2355', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2356, 2355, '纸杯', '纸杯', 4, 'zhibei', 'zb', '2352,2354,2355,2356', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2357, 2355, '牙刷', '牙刷', 4, 'yashua', 'ys', '2352,2354,2355,2357', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2358, 2355, '梳子', '梳子', 4, 'shuzi', 'sz', '2352,2354,2355,2358', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2359, 2355, '香皂', '香皂', 4, 'xiangzao', 'xz', '2352,2354,2355,2359', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2360, 2354, '床上用品', '床上用品', 3, 'chuangshangyongpin', 'csyp', '2352,2354,2360', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2361, 2360, '床单', '床单', 4, 'chuangdan', 'cd', '2352,2354,2360,2361', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2362, 2360, '被罩', '被罩', 4, 'beizhao', 'bz', '2352,2354,2360,2362', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2363, 2360, '枕头', '枕头', 4, 'zhentou', 'zt', '2352,2354,2360,2363', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2364, 2360, '床旗', '床旗', 4, 'chuangqi', 'cq', '2352,2354,2360,2364', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2365, 2354, '客房电器', '客房电器', 3, 'kefangdianqi', 'kfdq', '2352,2354,2365', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2366, 2365, '热水壶', '热水壶', 4, 'reshuihu', 'rsh', '2352,2354,2365,2366', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2367, 2365, '电吹风', '电吹风', 4, 'dianchuifeng', 'dcf', '2352,2354,2365,2367', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2368, 2365, '灯具', '灯具', 4, 'dengju', 'dj', '2352,2354,2365,2368', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2369, 2352, '厨房用品', '厨房用品', 2, 'chufangyongpin', 'cfyp', '2352,2369', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2370, 2369, '灶具', '灶具', 3, 'zaoju', 'zj', '2352,2369,2370', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2371, 2369, '厨具', '厨具', 3, 'chuju', 'cj', '2352,2369,2371', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2372, 2369, '餐具', '餐具', 3, 'canju', 'cj', '2352,2369,2372', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2373, 2369, '厨房电器', '厨房电器', 3, 'chufangdianqi', 'cfdq', '2352,2369,2373', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2374, 0, '干货', '干货', 1, 'ganhuo', 'gh', '2374', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2375, 2374, '干菜类', '干菜类', 2, 'gancailei', 'gcl', '2374,2375', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2376, 2375, '干香菇', '干香菇', 3, 'ganxianggu', 'gxg', '2374,2375,2376', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2377, 2375, '干木耳', '干木耳', 3, 'ganmuer', 'gme', '2374,2375,2377', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2378, 2375, '干土豆片', '干土豆片', 3, 'gantudoupian', 'gtdp', '2374,2375,2378', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2379, 2375, '干海带', '干海带', 3, 'ganhaidai', 'ghd', '2374,2375,2379', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2380, 2375, '干豆腐丝', '干豆腐丝', 3, 'gandoufusi', 'gdfs', '2374,2375,2380', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2381, 2375, '干银耳', '干银耳', 3, 'ganyiner', 'gye', '2374,2375,2381', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2382, 2375, '干茶树菇', '干茶树菇', 3, 'ganchashugu', 'gcsg', '2374,2375,2382', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2383, 2375, '竹笙', '竹笙', 3, 'zhusheng', 'zs', '2374,2375,2383', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2384, 2375, '干豇豆', '干豇豆', 3, 'ganjiangdou', 'gjd', '2374,2375,2384', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2385, 2375, '干笋', '干笋', 3, 'gansun', 'gs', '2374,2375,2385', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2386, 2375, '干黄花', '干黄花', 3, 'ganhuanghua', 'ghh', '2374,2375,2386', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2387, 2375, '腐竹', '腐竹', 3, 'fuzhu', 'fz', '2374,2375,2387', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2388, 2375, '笋干', '笋干', 3, 'sungan', 'sg', '2374,2375,2388', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2389, 2375, '干豆角', '干豆角', 3, 'gandoujiao', 'gdj', '2374,2375,2389', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2390, 2375, '萝卜干', '萝卜干', 3, 'luobugan', 'lbg', '2374,2375,2390', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2391, 2375, '脱水土豆片', '脱水土豆片', 3, 'tuoshuitudoupian', 'tstdp', '2374,2375,2391', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2392, 2375, '干木瓜', '干木瓜', 3, 'ganmugua', 'gmg', '2374,2375,2392', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2393, 2375, '炒花生', '炒花生', 3, 'chaohuasheng', 'chs', '2374,2375,2393', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2394, 2375, '苦瓜干', '苦瓜干', 3, 'kuguagan', 'kgg', '2374,2375,2394', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2395, 2375, '魔芋干', '魔芋干', 3, 'moyugan', 'myg', '2374,2375,2395', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2396, 2375, '脱水白菜', '脱水白菜', 3, 'tuoshuibaicai', 'tsbc', '2374,2375,2396', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2397, 2375, '桂花干', '桂花干', 3, 'guihuagan', 'ghg', '2374,2375,2397', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2398, 2375, '干桂花', '干桂花', 3, 'ganguihua', 'ggh', '2374,2375,2398', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2399, 2375, '莴笋干', '莴笋干', 3, 'wosungan', 'wsg', '2374,2375,2399', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2400, 2375, '蕨菜干', '蕨菜干', 3, 'juecaigan', 'jcg', '2374,2375,2400', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2401, 2375, '黄瓜干', '黄瓜干', 3, 'huangguagan', 'hgg', '2374,2375,2401', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2402, 2375, '脱水槐花', '脱水槐花', 3, 'tuoshuihuaihua', 'tshh', '2374,2375,2402', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2403, 2375, '稔子干', '稔子干', 3, 'renzigan', 'rzg', '2374,2375,2403', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2404, 2375, '花菜干', '花菜干', 3, 'huacaigan', 'hcg', '2374,2375,2404', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2405, 2375, '脱水萝卜', '脱水萝卜', 3, 'tuoshuiluobu', 'tslb', '2374,2375,2405', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2406, 2375, '芋头干', '芋头干', 3, 'yutougan', 'ytg', '2374,2375,2406', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2407, 2375, '苦槠干', '苦槠干', 3, 'kuzhugan', 'kzg', '2374,2375,2407', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2408, 2374, '坚果类', '坚果类', 2, 'jianguolei', 'jgl', '2374,2408', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2409, 2408, '榛子', '榛子', 3, 'zhenzi', 'zz', '2374,2408,2409', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2410, 2408, '腰果', '腰果', 3, 'yaoguo', 'yg', '2374,2408,2410', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2411, 2408, '休闲食品', '休闲食品', 3, 'xiuxianshipin', 'xxsp', '2374,2408,2411', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2412, 2408, '夏威夷果', '夏威夷果', 3, 'xiaweiyiguo', 'xwyg', '2374,2408,2412', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2413, 2408, '松子', '松子', 3, 'songzi', 'sz', '2374,2408,2413', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2414, 2408, '莲子', '莲子', 3, 'lianzi', 'lz', '2374,2408,2414', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2415, 2408, '开心果', '开心果', 3, 'kaixinguo', 'kxg', '2374,2408,2415', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2416, 2408, '花生', '花生', 3, 'huasheng', 'hs', '2374,2408,2416', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2417, 2408, '核桃', '核桃', 3, 'hetao', 'ht', '2374,2408,2417', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2418, 2408, '桂圆干', '桂圆干', 3, 'guiyuangan', 'gyg', '2374,2408,2418', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2419, 2408, '瓜子', '瓜子', 3, 'guazi', 'gz', '2374,2408,2419', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2420, 2408, '枸杞', '枸杞', 3, 'gouqi', 'gq', '2374,2408,2420', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2421, 2408, '蛋糕', '蛋糕', 3, 'dangao', 'dg', '2374,2408,2421', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2422, 2408, '饼干', '饼干', 3, 'binggan', 'bg', '2374,2408,2422', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2423, 2408, '碧根果', '碧根果', 3, 'bigenguo', 'bgg', '2374,2408,2423', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2424, 2408, '爆米花', '爆米花', 3, 'baomihua', 'bmh', '2374,2408,2424', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2425, 2408, '板栗', '板栗', 3, 'banli', 'bl', '2374,2408,2425', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2426, 2408, '巴旦木', '巴旦木', 3, 'badanmu', 'bdm', '2374,2408,2426', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2427, 2408, '栗子', '栗子', 3, 'lizi', 'lz', '2374,2408,2427', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2428, 2408, '杏仁', '杏仁', 3, 'xingren', 'xr', '2374,2408,2428', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2429, 2408, '白果', '白果', 3, 'baiguo', 'bg', '2374,2408,2429', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2430, 2408, '橡子', '橡子', 3, 'xiangzi', 'xz', '2374,2408,2430', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2431, 2408, '榧子', '榧子', 3, 'feizi', 'fz', '2374,2408,2431', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2432, 2408, '麻子', '麻子', 3, 'mazi', 'mz', '2374,2408,2432', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2433, 2408, '沙漠果', '沙漠果', 3, 'shamoguo', 'smg', '2374,2408,2433', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2434, 2408, '百合', '百合', 3, 'baihe', 'bh', '2374,2408,2434', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2435, 2434, '百合干', '百合干', 4, 'baihegan', 'bhg', '2374,2408,2434,2435', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2436, 2408, '茯灵', '茯灵', 3, 'fuling', 'fl', '2374,2408,2436', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2437, 2436, '茯灵干', '茯灵干', 4, 'fulinggan', 'flg', '2374,2408,2436,2437', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2438, 2408, '葛根', '葛根', 3, 'gegen', 'gg', '2374,2408,2438', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2439, 2438, '葛根干', '葛根干', 4, 'gegengan', 'ggg', '2374,2408,2438,2439', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2440, 2408, '茨食', '茨食', 3, 'cishi', 'cs', '2374,2408,2440', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2441, 2440, '茨食干', '茨食干', 4, 'cishigan', 'csg', '2374,2408,2440,2441', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2442, 2374, '干果类', '干果类', 2, 'ganguolei', 'ggl', '2374,2442', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2443, 2442, '柿饼', '柿饼', 3, 'shibing', 'sb', '2374,2442,2443', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2444, 2442, '杏干', '杏干', 3, 'xinggan', 'xg', '2374,2442,2444', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2445, 2442, '黑枣干', '黑枣干', 3, 'heizaogan', 'hzg', '2374,2442,2445', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2446, 2442, '八仙果', '八仙果', 3, 'baxianguo', 'bxg', '2374,2442,2446', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2447, 2442, '金桔丁', '金桔丁', 3, 'jinjieding', 'jjd', '2374,2442,2447', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2448, 2442, '刺梨干', '刺梨干', 3, 'ciligan', 'clg', '2374,2442,2448', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2449, 2442, '荔枝干', '荔枝干', 3, 'lizhigan', 'lzg', '2374,2442,2449', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2450, 2442, '桃金娘果干', '桃金娘果干', 3, 'taojinniangguogan', 'tjngg', '2374,2442,2450', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2451, 2442, '李子干', '李子干', 3, 'lizigan', 'lzg', '2374,2442,2451', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2452, 2442, '菠萝干', '菠萝干', 3, 'boluogan', 'blg', '2374,2442,2452', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2453, 2442, '杨梅干', '杨梅干', 3, 'yangmeigan', 'ymg', '2374,2442,2453', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2454, 2442, '苹果干', '苹果干', 3, 'pingguogan', 'pgg', '2374,2442,2454', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2455, 2442, '梨干', '梨干', 3, 'ligan', 'lg', '2374,2442,2455', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2456, 2442, '密瓜干', '密瓜干', 3, 'miguagan', 'mgg', '2374,2442,2456', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2457, 2442, '诺丽果干', '诺丽果干', 3, 'nuoliguogan', 'nlgg', '2374,2442,2457', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2458, 2442, '香蕉干', '香蕉干', 3, 'xiangjiaogan', 'xjg', '2374,2442,2458', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2459, 2442, '无花果干', '无花果干', 3, 'wuhuaguogan', 'whgg', '2374,2442,2459', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2460, 2442, '山楂干', '山楂干', 3, 'shanzhagan', 'szg', '2374,2442,2460', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2461, 2442, '桑葚干', '桑葚干', 3, 'sangshengan', 'ssg', '2374,2442,2461', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2462, 2442, '葡萄干', '葡萄干', 3, 'putaogan', 'ptg', '2374,2442,2462', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2463, 2442, '柠檬干片', '柠檬干片', 3, 'ningmengganpian', 'nmgp', '2374,2442,2463', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2464, 2442, '猕猴桃干', '猕猴桃干', 3, 'mihoutaogan', 'mhtg', '2374,2442,2464', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2465, 2442, '芒果干', '芒果干', 3, 'mangguogan', 'mgg', '2374,2442,2465', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2466, 2442, '红枣', '红枣', 3, 'hongzao', 'hz', '2374,2442,2466', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2467, 2442, '核桃仁', '核桃仁', 3, 'hetaoren', 'htr', '2374,2442,2467', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2468, 2442, '果脯蜜饯', '果脯蜜饯', 3, 'guofumijian', 'gfmj', '2374,2442,2468', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2469, 2442, '地瓜干', '地瓜干', 3, 'diguagan', 'dgg', '2374,2442,2469', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2470, 2442, '大枣(干枣)', '大枣(干枣)', 3, 'dazaoganzao', 'dzgz', '2374,2442,2470', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2471, 2442, '小食品', '小食品', 3, 'xiaoshipin', 'xsp', '2374,2442,2471', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2472, 2442, '干果', '干果', 3, 'ganguo', 'gg', '2374,2442,2472', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2473, 2374, '干海鲜', '干海鲜', 2, 'ganhaixian', 'ghx', '2374,2473', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2474, 1385, '普通山楂', '普通山楂', 4, 'putongshanzha', 'ptsz', '1023,1316,1385,2474', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2475, 613, '托盘', '托盘', 4, 'tuopan', 'tp', '601,612,613,2475', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2476, 613, '巧固架', '巧固架', 4, 'qiaogujia', 'qgj', '601,612,613,2476', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2477, 2187, '普通饮品', '普通饮品', 3, 'putongyinpin', 'ptyp', '2186,2187,2477', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2478, 602, '单项电表', '单项电表', 3, 'danxiangdianbiao', 'dxdb', '601,602,2478', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2479, 602, '电卡', '电卡', 3, 'dianka', 'dk', '601,602,2479', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2480, 602, '三项电表', '三项电表', 3, 'sanxiangdianbiao', 'sxdb', '601,602,2480', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2481, 603, '市场内客户', '市场内客户', 3, 'shichangneikehu', 'scnkh', '601,603,2481', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2482, 603, '市场外客户', '市场外客户', 3, 'shichangwaikehu', 'scwkh', '601,603,2482', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2483, 603, '滚动字幕', '滚动字幕', 3, 'gundongzimu', 'gdzm', '601,603,2483', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2484, 2132, '海鲜冻品', '海鲜冻品', 4, 'haixiandongpin', 'hxdp', '1851,2118,2132,2484', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2488, 1037, '玛奶葡萄', '玛奶葡萄', 4, 'manaiputao', 'mnpt', '1023,1024,1037,2488', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2489, 1241, '普通芒果', '普通芒果', 4, 'putongmangguo', 'ptmg', '1023,1175,1241,2489', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2490, 1288, '普通樱桃', '普通樱桃', 4, 'putongyingtao', 'ptyt', '1023,1175,1288,2490', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2491, 1267, '普通荔枝', '普通荔枝', 4, 'putonglizhi', 'ptlz', '1023,1175,1267,2491', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2492, 1037, '提子', '提子', 4, 'tizi', 'tz', '1023,1024,1037,2492', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2494, 1317, '普通苹果', '普通苹果', 4, 'putongpingguo', 'ptpg', '1023,1316,1317,2494', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2495, 1565, '膨化食品', '膨化食品', 2, 'penghuashipin', 'phsp', '1565,2495', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2496, 1565, '姜片', '姜片', 2, 'jiangpian', 'jp', '1565,2496', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2497, 1565, '麻糖', '麻糖', 2, 'matang', 'mt', '1565,2497', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2498, 1565, '金丝枣', '金丝枣', 2, 'jinsizao', 'jsz', '1565,2498', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2499, 1565, '冷面', '冷面', 2, 'lengmian', 'lm', '1565,2499', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2500, 357, '速冻豆角', '速冻豆角', 4, 'sudongdoujiao', 'sddj', '1,340,357,2500', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2501, 501, '杂菜', '杂菜', 3, 'zacai', 'zc', '1,501,2501', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2502, 1535, '杂果', '杂果', 3, 'zaguo', 'zg', '1023,1535,2502', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2504, 1037, '普通葡萄', '普通葡萄', 4, 'putongputao', 'ptpt', '1023,1024,1037,2504', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2505, 1102, '火龙果', '火龙果', 4, 'huolongguo', 'hlg', '1023,1024,1102,2505', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2506, 1090, '猕猴桃', '猕猴桃', 4, 'mihoutao', 'mht', '1023,1024,1090,2506', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2508, 502, '普通玉米', '普通玉米', 4, 'putongyumi', 'ptym', '1,501,502,2508', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2509, 98, '大萝卜', '大萝卜', 4, 'daluobu', 'dlb', '1,97,98,2509', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2510, 2374, '综合干货', '综合干货', 2, 'zongheganhuo', 'zhgh', '2374,2510', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2511, 2259, '综合粮油', '综合粮油', 2, 'zongheliangyou', 'zhly', '2259,2511', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2512, 1565, '水发货', '水发货', 2, 'shuifahuo', 'sfh', '1565,2512', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2513, 1535, '花生果', '花生果', 3, 'huashengguo', 'hsg', '1023,1535,2513', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2514, 1535, '水果布丁', '水果布丁', 3, 'shuiguobuding', 'sgbd', '1023,1535,2514', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2515, 1852, '冰鲜鱼', '冰鲜鱼', 3, 'bingxianyu', 'bxy', '1851,1852,2515', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2516, 1565, '副食类', '副食类', 2, 'fushilei', 'fsl', '1565,2516', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2517, 1536, '花红', '花红', 4, 'huahong', 'hh', '1023,1535,1536,2517', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2518, 1467, '普通柠檬', '普通柠檬', 4, 'putongningmeng', 'ptnm', '1023,1397,1467,2518', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2519, 186, '普通茄子', '普通茄子', 4, 'putongqiezi', 'ptqz', '1,185,186,2519', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2520, 357, '普通豆角', '普通豆角', 4, 'putongdoujiao', 'ptdj', '1,340,357,2520', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2521, 98, '普通萝卜', '普通萝卜', 4, 'putongluobu', 'ptlb', '1,97,98,2521', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2522, 1411, '八叶桔', '八叶桔', 4, 'bayejie', 'byj', '1023,1397,1411,2522', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2523, 1492, '伽师瓜', '伽师瓜', 4, 'jiashigua', 'jsg', '1023,1471,1492,2523', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2524, 1317, '青加利苹果', '青加利苹果', 4, 'qingjialipingguo', 'qjlpg', '1023,1316,1317,2524', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2525, 1565, '鸭血', '鸭血', 2, 'yaxue', 'yx', '1565,2525', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2526, 1565, '豆皮', '豆皮', 2, 'doupi', 'dp', '1565,2526', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2527, 1618, '日本豆腐', '日本豆腐', 3, 'ribendoufu', 'rbdf', '1565,1618,2527', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2528, 3, '二白菜', '二白菜', 4, 'erbaicai', 'ebc', '1,2,3,2528', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2529, 1107, '散机菠萝', '散机菠萝', 4, 'sanjiboluo', 'sjbl', '1023,1024,1107,2529', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2530, 1229, '杏梅', '杏梅', 4, 'xingmei', 'xm', '1023,1175,1229,2530', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2531, 46, '普通香菜', '普通香菜', 4, 'putongxiangcai', 'ptxc', '1,27,46,2531', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2532, 599, '蚕茧', '蚕茧', 4, 'canjian', 'cj', '1,501,599,2532', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2533, 599, '普通蚕蛹', '普通蚕蛹', 4, 'putongcanyong', 'ptcy', '1,501,599,2533', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2536, 1451, '米奇柚子', '米奇柚子', 4, 'miqiyouzi', 'mqyz', '1023,1397,1451,2536', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2537, 1451, '傣柚', '傣柚', 4, 'daiyou', 'dy', '1023,1397,1451,2537', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2538, 1072, '一口甜柿子', '一口甜柿子', 4, 'yikoutianshizi', 'yktsz', '1023,1024,1072,2538', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2539, 1395, '火参果', '火参果', 4, 'huocanguo', 'hcg', '1023,1316,1395,2539', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2540, 1472, '吊雷西瓜', '吊雷西瓜', 4, 'diaoleixigua', 'dlxg', '1023,1471,1472,2540', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2541, 1317, '佳农苹果', '佳农苹果', 4, 'jianongpingguo', 'jnpg', '1023,1316,1317,2541', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2542, 1492, '可口蜜', '可口蜜', 4, 'kekoumi', 'kkm', '1023,1471,1492,2542', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2543, 1492, '皇品瓜', '皇品瓜', 4, 'huangpingua', 'hpg', '1023,1471,1492,2543', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2544, 1241, '高乐蜜', '高乐蜜', 4, 'gaolemi', 'glm', '1023,1175,1241,2544', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2545, 1241, '帝皇芒', '帝皇芒', 4, 'dihuangmang', 'dhm', '1023,1175,1241,2545', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2546, 1090, '蜜蜂猕猴桃', '蜜蜂猕猴桃', 4, 'mifengmihoutao', 'mfmht', '1023,1024,1090,2546', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2547, 1472, '李明星西瓜', '李明星西瓜', 4, 'limingxingxigua', 'lmxxg', '1023,1471,1472,2547', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2548, 1241, '金煌芒果', '金煌芒果', 4, 'jinhuangmangguo', 'jhmg', '1023,1175,1241,2548', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2549, 1090, '徐香猕猴桃', '徐香猕猴桃', 4, 'xuxiangmihoutao', 'xxmht', '1023,1024,1090,2549', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2550, 1451, '月阳果', '月阳果', 4, 'yueyangguo', 'yyg', '1023,1397,1451,2550', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2551, 1492, '佳农瓜', '佳农瓜', 4, 'jianonggua', 'jng', '1023,1471,1492,2551', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2552, 148, '文君地瓜', '文君地瓜', 4, 'wenjundigua', 'wjdg', '1,97,148,2552', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2553, 1342, '都乐大头梨', '都乐大头梨', 4, 'douledatouli', 'dldtl', '1023,1316,1342,2553', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2554, 148, '辽西地瓜', '辽西地瓜', 4, 'liaoxidigua', 'lxdg', '1,97,148,2554', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2555, 1492, '西周蜜瓜', '西周蜜瓜', 4, 'xizhoumigua', 'xzmg', '1023,1471,1492,2555', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2556, 322, '西葫芦次品', '西葫芦次品', 4, 'xihulucipin', 'xhlcp', '1,292,322,2556', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2557, 14, '普通甘蓝', '普通甘蓝', 3, 'putongganlan', 'ptgl', '1,14,2557', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2558, 969, '其他冻品', '其他冻品', 3, 'qitadongpin', 'qtdp', '620,969,2558', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2559, 2037, '黄金豆生蚝', '黄金豆生蚝', 4, 'huangjindoushenghao', 'hjdsh', '1851,2026,2037,2559', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2560, 1558, '菇茑', '菇茑', 4, 'guniao', 'gn', '1023,1535,1558,2560', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2561, 28, '普通生菜', '普通生菜', 4, 'putongshengcai', 'ptsc', '1,27,28,2561', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2562, 203, '黄罗曼西红柿', '黄罗曼西红柿', 4, 'huangluomanxihongshi', 'hlmxhs', '1,185,203,2562', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2563, 203, '红萝蔓西红柿', '红萝蔓西红柿', 4, 'hongluomanxihongshi', 'hlmxhs', '1,185,203,2563', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2565, 1398, '粑粑柑', '粑粑柑', 4, 'babagan', 'bbg', '1023,1397,1398,2565', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2566, 1411, '丑橘', '丑橘', 4, 'chouju', 'cj', '1023,1397,1411,2566', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2567, 14, '大包菜', '大包菜', 3, 'dabaocai', 'dbc', '1,14,2567', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2568, 203, '串黄西红柿', '串黄西红柿', 4, 'chuanhuangxihongshi', 'chxhs', '1,185,203,2568', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2569, 203, '迷彩西红柿', '迷彩西红柿', 4, 'micaixihongshi', 'mcxhs', '1,185,203,2569', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2570, 203, '青口蜜西红柿', '青口蜜西红柿', 4, 'qingkoumixihongshi', 'qkmxhs', '1,185,203,2570', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2571, 203, '夏日阳光西红柿', '夏日阳光西红柿', 4, 'xiariyangguangxihongshi', 'xrygxhs', '1,185,203,2571', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2572, 203, '玲珑西红柿', '玲珑西红柿', 4, 'linglongxihongshi', 'llxhs', '1,185,203,2572', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2573, 203, '紫桃西红柿', '紫桃西红柿', 4, 'zitaoxihongshi', 'ztxhs', '1,185,203,2573', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2574, 203, '黄桃西红柿', '黄桃西红柿', 4, 'huangtaoxihongshi', 'htxhs', '1,185,203,2574', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2575, 203, '草莓西红柿', '草莓西红柿', 4, 'caomeixihongshi', 'cmxhs', '1,185,203,2575', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2576, 203, '千禧西红柿', '千禧西红柿', 4, 'qianxixihongshi', 'qxxhs', '1,185,203,2576', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2577, 203, '大圆紫西红柿', '大圆紫西红柿', 4, 'dayuanzixihongshi', 'dyzxhs', '1,185,203,2577', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2578, 1411, '澳桔', '澳桔', 4, 'aojie', 'aj', '1023,1397,1411,2578', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2579, 357, '一点红豆角', '一点红豆角', 4, 'yidianhongdoujiao', 'ydhdj', '1,340,357,2579', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2580, 357, '大马掌豆角', '大马掌豆角', 4, 'damazhangdoujiao', 'dmzdj', '1,340,357,2580', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2581, 98, '沙陀萝卜', '沙陀萝卜', 4, 'shatuoluobu', 'stlb', '1,97,98,2581', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2582, 310, '花生南瓜', '花生南瓜', 4, 'huashengnangua', 'hsng', '1,292,310,2582', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2583, 218, '红泡椒', '红泡椒', 4, 'hongpaojiao', 'hpj', '1,185,218,2583', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2584, 310, '盘龙南瓜', '盘龙南瓜', 4, 'panlongnangua', 'plng', '1,292,310,2584', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2585, 1472, '杨福春西瓜', '杨福春西瓜', 4, 'yangfuchunxigua', 'yfcxg', '1023,1471,1472,2585', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2586, 1037, '阳光玫瑰', '阳光玫瑰', 4, 'yangguangmeigui', 'ygmg', '1023,1024,1037,2586', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2587, 1435, '青见', '青见', 4, 'qingjian', 'qj', '1023,1397,1435,2587', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2588, 1398, '不知火', '不知火', 4, 'buzhihuo', 'bzh', '1023,1397,1398,2588', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2589, 1194, '红布李', '红布李', 4, 'hongbuli', 'hbl', '1023,1175,1194,2589', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2590, 1194, '红李', '红李', 4, 'hongli', 'hl', '1023,1175,1194,2590', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2591, 1194, '花李', '花李', 4, 'huali', 'hl', '1023,1175,1194,2591', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2592, 1194, '鸡心李', '鸡心李', 4, 'jixinli', 'jxl', '1023,1175,1194,2592', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2593, 1194, '珠宝李', '珠宝李', 4, 'zhubaoli', 'zbl', '1023,1175,1194,2593', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2594, 1194, '青布林', '青布林', 4, 'qingbulin', 'qbl', '1023,1175,1194,2594', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2595, 1342, '翠冠梨', '翠冠梨', 4, 'cuiguanli', 'cgl', '1023,1316,1342,2595', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2596, 1472, '无籽西瓜', '无籽西瓜', 4, 'wuzixigua', 'wzxg', '1023,1471,1472,2596', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2597, 1535, '水果老菱', '水果老菱', 3, 'shuiguolaoling', 'sgll', '1023,1535,2597', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2598, 1535, '水果西红柿', '水果西红柿', 3, 'shuiguoxihongshi', 'sgxhs', '1023,1535,2598', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2599, 1535, '水果小黄瓜', '水果小黄瓜', 3, 'shuiguoxiaohuanggua', 'sgxhg', '1023,1535,2599', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2600, 1194, '恐龙蛋李子', '恐龙蛋李子', 4, 'konglongdanlizi', 'kldlz', '1023,1175,1194,2600', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2601, 1194, '鸵鸟蛋李子', '鸵鸟蛋李子', 4, 'tuoniaodanlizi', 'tndlz', '1023,1175,1194,2601', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2602, 98, '冰淇淋萝卜', '冰淇淋萝卜', 4, 'bingqilinluobu', 'bqllb', '1,97,98,2602', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2603, 218, '皱皮椒', '皱皮椒', 4, 'zhoupijiao', 'zpj', '1,185,218,2603', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2604, 1267, '泰国荔枝', '泰国荔枝', 4, 'taiguolizhi', 'tglz', '1023,1175,1267,2604', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2605, 1984, '红龙', '红龙', 4, 'honglong', 'hl', '1851,1971,1984,2605', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2606, 1908, '三文鱼', '三文鱼', 4, 'sanwenyu', 'swy', '1851,1852,1908,2606', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2607, 1971, '白虾', '白虾', 3, 'baixia', 'bx', '1851,1971,2607', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2608, 1971, '黑虎虾', '黑虎虾', 3, 'heihuxia', 'hhx', '1851,1971,2608', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2609, 1853, '汪刺', '汪刺', 4, 'wangci', 'wc', '1851,1852,1853,2609', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2610, 2026, '花螺', '花螺', 3, 'hualuo', 'hl', '1851,2026,2610', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2611, 2026, '带子', '带子', 3, 'daizi', 'dz', '1851,2026,2611', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2612, 1908, '目鱼', '目鱼', 4, 'muyu', 'my', '1851,1852,1908,2612', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2613, 1908, '小黄鱼', '小黄鱼', 4, 'xiaohuangyu', 'xhy', '1851,1852,1908,2613', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2614, 2038, '花蛤', '花蛤', 4, 'huaha', 'hh', '1851,2026,2038,2614', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2615, 2515, '秋刀鱼', '秋刀鱼', 4, 'qiudaoyu', 'qdy', '1851,1852,2515,2615', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2616, 2021, '雪蟹', '雪蟹', 4, 'xuexie', 'xx', '1851,2010,2021,2616', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2617, 2037, '乳山生蚝', '乳山生蚝', 4, 'rushanshenghao', 'rssh', '1851,2026,2037,2617', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2618, 2037, '福建生蚝', '福建生蚝', 4, 'fujianshenghao', 'fjsh', '1851,2026,2037,2618', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2619, 1656, '粉耗子', '粉耗子', 4, 'fenhaozi', 'fhz', '1565,1655,1656,2619', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2620, 1565, '袋装火锅粉', '袋装火锅粉', 2, 'daizhuanghuoguofen', 'dzhgf', '1565,2620', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2621, 1565, '火锅料', '火锅料', 2, 'huoguoliao', 'hgl', '1565,2621', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2622, 1492, '甜面瓜', '甜面瓜', 4, 'tianmiangua', 'tmg', '1023,1471,1492,2622', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2623, 310, '如意南瓜', '如意南瓜', 4, 'ruyinangua', 'ryng', '1,292,310,2623', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2626, 1547, '青皮甘蔗', '青皮甘蔗', 4, 'qingpiganzhe', 'qpgz', '1023,1535,1547,2626', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2627, 1547, '紫皮甘蔗', '紫皮甘蔗', 4, 'zipiganzhe', 'zpgz', '1023,1535,1547,2627', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2628, 1387, '大红袍枇杷', '大红袍枇杷', 4, 'dahongpaopipa', 'dhppp', '1023,1316,1387,2628', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2629, 1387, '白沙枇杷', '白沙枇杷', 4, 'baishapipa', 'bspp', '1023,1316,1387,2629', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2630, 1535, '水果玉米', '水果玉米', 3, 'shuiguoyumi', 'sgym', '1023,1535,2630', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2631, 1535, '水果番薯', '水果番薯', 3, 'shuiguofanshu', 'sgfs', '1023,1535,2631', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2632, 1535, '水果南瓜', '水果南瓜', 3, 'shuiguonangua', 'sgng', '1023,1535,2632', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2633, 1535, '水果莲蓬', '水果莲蓬', 3, 'shuiguolianpeng', 'sglp', '1023,1535,2633', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2635, 1547, '普通甘蔗', '普通甘蔗', 4, 'putongganzhe', 'ptgz', '1023,1535,1547,2635', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2636, 1387, '普通枇杷', '普通枇杷', 4, 'putongpipa', 'ptpp', '1023,1316,1387,2636', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2637, 1236, '荸荠杨梅', '荸荠杨梅', 4, 'bijiyangmei', 'bjym', '1023,1175,1236,2637', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2638, 1236, '东魁杨梅', '东魁杨梅', 4, 'dongkuiyangmei', 'dkym', '1023,1175,1236,2638', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2639, 1451, '文旦', '文旦', 4, 'wendan', 'wd', '1023,1397,1451,2639', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2640, 292, '普通吊瓜', '普通吊瓜', 3, 'putongdiaogua', 'ptdg', '1,292,2640', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2641, 203, '西红柿次品', '西红柿次品', 4, 'xihongshicipin', 'xhscp', '1,185,203,2641', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2642, 357, '白豆角', '白豆角', 4, 'baidoujiao', 'bdj', '1,340,357,2642', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2643, 1037, '阳光玫瑰葡萄', '阳光玫瑰葡萄', 4, 'yangguangmeiguiputao', 'ygmgpt', '1023,1024,1037,2643', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2644, 1176, '蜜枣桃', '蜜枣桃', 4, 'mizaotao', 'mzt', '1023,1175,1176,2644', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2645, 1090, '软枣猕猴桃', '软枣猕猴桃', 4, 'ruanzaomihoutao', 'rzmht', '1023,1024,1090,2645', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2646, 896, '鸡叉', '鸡叉', 4, 'jicha', 'jc', '620,889,896,2646', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2647, 2425, '罗甸板栗', '罗甸板栗', 4, 'luodianbanli', 'ldbl', '2374,2408,2425,2647', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2648, 2425, '望谟板栗', '望谟板栗', 4, 'wangmobanli', 'wmbl', '2374,2408,2425,2648', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2649, 2425, '云南板栗', '云南板栗', 4, 'yunnanbanli', 'ynbl', '2374,2408,2425,2649', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2650, 2425, '陕西板栗', '陕西板栗', 4, 'shanxibanli', 'sxbl', '2374,2408,2425,2650', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2651, 2425, '河北迁西板栗', '河北迁西板栗', 4, 'hebeiqianxibanli', 'hbqxbl', '2374,2408,2425,2651', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2652, 2329, '土鸡蛋', '土鸡蛋', 4, 'tujidan', 'tjd', '2327,2328,2329,2652', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2653, 2329, '绿壳鸡蛋', '绿壳鸡蛋', 4, 'luqiaojidan', 'lqjd', '2327,2328,2329,2653', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2655, 218, '尖椒次品', '尖椒次品', 4, 'jianjiaocipin', 'jjcp', '1,185,218,2655', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2657, 292, '苦瓜次品', '苦瓜次品', 3, 'kuguacipin', 'kgcp', '1,292,2657', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2658, 292, '丝瓜次品', '丝瓜次品', 3, 'siguacipin', 'sgcp', '1,292,2658', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2659, 27, '红凤菜', '红凤菜', 3, 'hongfengcai', 'hfc', '1,27,2659', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2660, 501, '折耳叶', '折耳叶', 3, 'zheerye', 'zey', '1,501,2660', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2661, 342, '胡豆', '胡豆', 4, 'hudou', 'hd', '1,340,342,2661', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2662, 97, '带叶棒菜', '带叶棒菜', 3, 'daiyebangcai', 'dybc', '1,97,2662', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2663, 218, '辣妹子次品', '辣妹子次品', 4, 'lameizicipin', 'lmzcp', '1,185,218,2663', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2664, 1398, '天草柑', '天草柑', 4, 'tiancaogan', 'tcg', '1023,1397,1398,2664', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2665, 1411, '红美人', '红美人', 4, 'hongmeiren', 'hmr', '1023,1397,1411,2665', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2666, 2019, '湖蟹公', '湖蟹公', 4, 'huxiegong', 'hxg', '1851,2010,2019,2666', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2667, 2019, '湖蟹母', '湖蟹母', 4, 'huxiemu', 'hxm', '1851,2010,2019,2667', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2668, 2021, '长脚蟹', '长脚蟹', 4, 'changjiaoxie', 'cjx', '1851,2010,2021,2668', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2669, 1451, '甜桔柚', '甜桔柚', 4, 'tianjuyou', 'tjy', '1023,1397,1451,2669', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2670, 1435, '伦晚橙', '伦晚橙', 4, 'lunwancheng', 'lwc', '1023,1397,1435,2670', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2671, 622, '烟熏制品', '烟熏制品', 4, 'yanxunzhipin', 'yxzp', '620,621,622,2671', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2672, 310, '香芋南瓜', '香芋南瓜', 4, 'xiangyunangua', 'xyng', '1,292,310,2672', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2673, 27, '红波菜', '红波菜', 3, 'hongbocai', 'hbc', '1,27,2673', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');
INSERT INTO product_category(id, parent_id, name, alias, level, py_code, short_code, path, icon, state, created_time, modified_time) VALUES (2674, 1565, '扒谷', '扒谷', 2, 'bagu', 'bg', '1565,2674', NULL, 1, '2024-05-20 12:05:20', '2024-05-20 12:05:20');