website.sql
420 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
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
/*
Navicat MariaDB Data Transfer
Source Server : 10.28.10.188
Source Server Version : 100024
Source Host : 10.28.10.188:3306
Source Database : website
Target Server Type : MariaDB
Target Server Version : 100024
File Encoding : 65001
Date: 2016-09-26 10:55:48
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for t_auth_level
-- ----------------------------
DROP TABLE IF EXISTS `t_auth_level`;
CREATE TABLE `t_auth_level` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`level_name` varchar(50) NOT NULL COMMENT '等级名称',
`level_logo` varchar(512) DEFAULT NULL COMMENT '等级图标',
`state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:启用,2:停用',
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`yn` tinyint(4) DEFAULT NULL COMMENT '1:有效, 2:无效',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_auth_level
-- ----------------------------
-- ----------------------------
-- Table structure for t_city
-- ----------------------------
DROP TABLE IF EXISTS `t_city`;
CREATE TABLE `t_city` (
`region_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`region_name` varchar(255) NOT NULL DEFAULT '',
`level` tinyint(4) unsigned NOT NULL DEFAULT '0',
`parent_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`sort` smallint(6) NOT NULL DEFAULT '0',
`country_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`region_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1651506 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_city
-- ----------------------------
INSERT INTO `t_city` VALUES ('111', '北京', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('112', '天津', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('113', '河北', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('114', '山西', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('115', '内蒙古', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('121', '辽宁', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('122', '吉林', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('123', '黑龙江', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('131', '上海', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('132', '江苏', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('133', '浙江', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('134', '安徽', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('135', '福建', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('136', '江西', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('137', '山东', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('141', '河南', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('142', '湖北', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('143', '湖南', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('144', '广东', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('145', '广西', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('146', '海南', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('150', '重庆', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('151', '四川', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('152', '贵州', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('153', '云南', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('154', '西藏', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('161', '陕西', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('162', '甘肃', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('163', '青海', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('164', '宁夏', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('165', '新疆', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('171', '台湾', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('172', '香港', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('173', '澳门', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('601', '石家庄市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('605', '唐山市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('604', '秦皇岛市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('607', '邯郸市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('606', '邢台市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('608', '保定市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('602', '张家口市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('603', '承德市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('609', '沧州市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('610', '廊坊市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('11311', '衡水市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('9906', '其他城市', '2', '113', '0', '70');
INSERT INTO `t_city` VALUES ('1201', '太原市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1202', '大同市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1204', '阳泉市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1206', '长治市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1205', '晋城市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1207', '晋中市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1210', '运城市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1224', '忻州市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1211', '临汾市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('11410', '吕梁市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1203', '朔州市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('9912', '其他城市', '2', '114', '0', '70');
INSERT INTO `t_city` VALUES ('1001', '呼和浩特市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('1003', '包头市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('1004', '赤峰市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('1005', '通辽市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11505', '鄂尔多斯市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11506', '呼伦贝尔市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11507', '巴彦淖尔市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11508', '乌兰察布市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11509', '兴安盟', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11510', '锡林郭勒盟', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('11511', '阿拉善盟', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('1002', '乌海市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('9910', '其他城市', '2', '115', '0', '70');
INSERT INTO `t_city` VALUES ('12', '沈阳市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('906', '大连市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('907', '鞍山市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('905', '抚顺市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('915', '本溪市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('908', '丹东市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('910', '锦州市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('909', '营口市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('911', '辽阳市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('914', '盘锦市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('904', '铁岭市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('902', '朝阳市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('912', '葫芦岛市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('903', '阜新市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('9909', '其他城市', '2', '121', '0', '70');
INSERT INTO `t_city` VALUES ('801', '长春市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('804', '吉林市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('805', '四平市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('12204', '辽源市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('807', '通化市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('12206', '白山市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('803', '松原市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('802', '白城市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('12209', '延边州', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('9908', '其他城市', '2', '122', '0', '70');
INSERT INTO `t_city` VALUES ('701', '哈尔滨市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('702', '齐齐哈尔市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('708', '鸡西市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('709', '鹤岗市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('12305', '双鸭山市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('704', '大庆市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('705', '伊春市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('706', '佳木斯市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('12309', '七台河市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('707', '牡丹江市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('703', '黑河市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('12312', '绥化市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('12313', '大兴安岭地区', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('9907', '其他城市', '2', '123', '0', '70');
INSERT INTO `t_city` VALUES ('1601', '南京市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1607', '无锡市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1603', '徐州市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1608', '常州市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1602', '苏州市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1620', '南通市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1604', '连云港市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1606', '淮安市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('13209', '盐城市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1610', '扬州市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1609', '镇江市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1612', '泰州市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1605', '宿迁市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('9916', '其他城市', '2', '132', '0', '70');
INSERT INTO `t_city` VALUES ('1901', '杭州市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1905', '宁波市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1906', '温州市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1903', '嘉兴市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1902', '湖州市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1914', '绍兴市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1910', '金华市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1908', '衢州市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1904', '舟山市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1939', '台州市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1943', '丽水市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('9919', '其他城市', '2', '133', '0', '70');
INSERT INTO `t_city` VALUES ('1501', '合肥市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1508', '芜湖市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1506', '蚌埠市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1503', '淮南市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1510', '马鞍山市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1502', '淮北市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1514', '铜陵市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1516', '安庆市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1507', '黄山市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1505', '滁州市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1513', '阜阳市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1509', '宿州市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1511', '巢湖市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1521', '六安市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1504', '亳州市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1519', '池州市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('1515', '宣城市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('9915', '其他城市', '2', '134', '0', '70');
INSERT INTO `t_city` VALUES ('2101', '福州市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2105', '厦门市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2103', '莆田市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2102', '三明市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2104', '泉州市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2106', '漳州市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2107', '南平市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2113', '龙岩市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2109', '宁德市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('9921', '其他城市', '2', '135', '0', '70');
INSERT INTO `t_city` VALUES ('2001', '南昌市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2003', '景德镇市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2006', '萍乡市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2002', '九江市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2005', '新余市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2004', '鹰潭市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2008', '赣州市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2007', '吉安市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2012', '宜春市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2009', '抚州市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('2011', '上饶市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('9920', '其他城市', '2', '136', '0', '70');
INSERT INTO `t_city` VALUES ('1101', '济南市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1106', '青岛市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1104', '淄博市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('13704', '枣庄市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1105', '东营市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1110', '烟台市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1103', '潍坊市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1113', '威海市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('13710', '济宁市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('13711', '泰安市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1108', '日照市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1112', '莱芜市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1107', '临沂市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1102', '德州市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1115', '聊城市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('1109', '滨州市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('13718', '菏泽市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('9911', '其他城市', '2', '137', '0', '70');
INSERT INTO `t_city` VALUES ('14118', '济源市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1401', '郑州市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1408', '开封市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1403', '洛阳市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1413', '平顶山市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1404', '焦作市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1411', '鹤壁市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1405', '新乡市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1406', '安阳市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1414', '濮阳市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1409', '许昌市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1407', '漯河市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1402', '三门峡市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1415', '南阳市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1412', '商丘市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1410', '信阳市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('14116', '周口市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('1416', '驻马店市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('9914', '其他城市', '2', '141', '0', '70');
INSERT INTO `t_city` VALUES ('16', '武汉市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1708', '黄石市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1706', '襄樊市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1702', '十堰市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1714', '荆州市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1709', '宜昌市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1704', '荆门市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1710', '鄂州市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1705', '孝感市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1712', '黄冈市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1713', '咸宁市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('14212', '随州市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('14213', '恩施州', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1707', '仙桃市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('14215', '潜江市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('14216', '天门市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('14217', '神农架林区', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('9917', '其他城市', '2', '142', '0', '70');
INSERT INTO `t_city` VALUES ('1801', '长沙市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1811', '株洲市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1803', '湘潭市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1808', '衡阳市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1810', '邵阳市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1807', '岳阳市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1805', '常德市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1802', '张家界市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1806', '益阳市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1809', '郴州市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('14311', '永州市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1804', '怀化市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('1812', '娄底市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('14314', '湘西州', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('9918', '其他城市', '2', '143', '0', '70');
INSERT INTO `t_city` VALUES ('5', '广州市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('7', '深圳市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('504', '珠海市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('507', '汕头市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('533', '韶关市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('521', '佛山市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('509', '江门市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('516', '湛江市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('511', '茂名市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('534', '肇庆市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('508', '惠州市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('545', '梅州市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('529', '汕尾市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('544', '河源市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('531', '阳江市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('512', '清远市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('510', '东莞市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('515', '中山市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('506', '潮州市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('540', '揭阳市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('546', '云浮市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('9905', '其他城市', '2', '144', '0', '70');
INSERT INTO `t_city` VALUES ('2201', '南宁市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2203', '柳州市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2202', '桂林市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2204', '梧州市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2206', '北海市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14506', '防城港市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2205', '钦州市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14508', '贵港市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2207', '玉林市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14510', '百色市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14511', '贺州市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14512', '河池市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14513', '来宾市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('14514', '崇左市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('9922', '其他城市', '2', '145', '0', '70');
INSERT INTO `t_city` VALUES ('2301', '海口市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('2302', '三亚市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('2303', '文昌市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('2304', '琼海市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('2305', '万宁市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14606', '五指山市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14607', '东方市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14608', '儋州市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14609', '临高县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14610', '澄迈县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14611', '定安县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14612', '屯昌县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14613', '昌江县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14614', '白沙县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14615', '琼中县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14616', '陵水县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14617', '保亭县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14618', '乐东县', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('14619', '西南中沙群岛办事处(县级)', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('9923', '其他城市', '2', '146', '0', '70');
INSERT INTO `t_city` VALUES ('3001', '成都市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3010', '自贡市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15103', '攀枝花市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3009', '泸州市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3005', '德阳市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3007', '绵阳市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3013', '广元市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15108', '遂宁市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15109', '内江市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3012', '乐山市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('3008', '南充市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15112', '宜宾市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15113', '广安市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15114', '达州市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15115', '眉山市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15116', '雅安市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15117', '巴中市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15118', '资阳市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15119', '阿坝州', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15120', '甘孜州', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('15121', '凉山州', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('9930', '其他城市', '2', '151', '0', '70');
INSERT INTO `t_city` VALUES ('2501', '贵阳市', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('2502', '六盘水市', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('2503', '遵义市', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('2504', '安顺市', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('15205', '铜仁地区', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('2505', '毕节地区', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('15207', '黔西南州', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('15208', '黔东南州', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('15209', '黔南州', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('9925', '其他城市', '2', '152', '0', '70');
INSERT INTO `t_city` VALUES ('2401', '昆明市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('2402', '曲靖市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('2403', '玉溪市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('2404', '保山市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15306', '昭通市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('2405', '丽江市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15308', '普洱市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15309', '临沧市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15310', '文山州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15311', '红河州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15312', '西双版纳州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15313', '楚雄州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15314', '大理州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15315', '德宏州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15316', '怒江州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('15317', '迪庆州', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('9924', '其他城市', '2', '153', '0', '70');
INSERT INTO `t_city` VALUES ('2901', '拉萨市', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('2903', '昌都地区', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('2905', '山南地区', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('15404', '日喀则地区', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('2902', '那曲地区', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('15406', '阿里地区', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('2904', '林芝地区', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('9929', '其他城市', '2', '154', '0', '70');
INSERT INTO `t_city` VALUES ('20', '西安市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1309', '铜川市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1307', '宝鸡市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1302', '咸阳市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1305', '渭南市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1306', '延安市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1308', '汉中市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1303', '榆林市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('1304', '安康市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('16110', '商洛市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('9913', '其他城市', '2', '161', '0', '70');
INSERT INTO `t_city` VALUES ('2701', '兰州市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('2702', '嘉峪关市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('2703', '金昌市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16204', '白银市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('2704', '天水市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16206', '武威市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16207', '张掖市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16208', '平凉市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('2706', '酒泉市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16210', '庆阳市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16211', '定西市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16212', '陇南市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16213', '临夏州', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('16214', '甘南州', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('9927', '其他城市', '2', '162', '0', '70');
INSERT INTO `t_city` VALUES ('3101', '西宁市', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('3102', '海东地区', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('3103', '海北州', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('3105', '黄南州', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('3104', '海南州', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('16306', '果洛州', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('16307', '玉树州', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('16308', '海西州', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('9931', '其他城市', '2', '163', '0', '70');
INSERT INTO `t_city` VALUES ('2801', '银川市', '2', '164', '0', '70');
INSERT INTO `t_city` VALUES ('2802', '石嘴山市', '2', '164', '0', '70');
INSERT INTO `t_city` VALUES ('2803', '吴忠市', '2', '164', '0', '70');
INSERT INTO `t_city` VALUES ('2804', '固原市', '2', '164', '0', '70');
INSERT INTO `t_city` VALUES ('16405', '中卫市', '2', '164', '0', '70');
INSERT INTO `t_city` VALUES ('9928', '其他城市', '2', '164', '0', '70');
INSERT INTO `t_city` VALUES ('2601', '乌鲁木齐市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('2613', '克拉玛依市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16503', '吐鲁番地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16504', '哈密地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('2604', '和田地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('2603', '阿克苏地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('2602', '喀什地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16508', '克孜勒苏柯尔克孜自治州', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16509', '巴音郭楞蒙古自治州', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('2605', '昌吉回族自治州', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16511', '博尔塔拉蒙古自治州', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16512', '伊犁哈萨克自治州', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16513', '塔城地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16514', '阿勒泰地区', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('2612', '石河子市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16516', '阿拉尔市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16517', '图木舒克市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('16518', '五家渠市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('9926', '其他城市', '2', '165', '0', '70');
INSERT INTO `t_city` VALUES ('3501', '台北市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3502', '高雄市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3503', '台中市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17105', '台南市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3506', '新竹市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3509', '嘉义市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17108', '台北县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3507', '桃园县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17111', '新竹县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17112', '苗栗县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17113', '台中县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3508', '彰化县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('3510', '南投县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17116', '云林县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17117', '嘉义县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17118', '台南县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17119', '高雄县', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17124', '南投市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('17125', '彰化市', '2', '171', '0', '70');
INSERT INTO `t_city` VALUES ('10', '香港特别行政区', '2', '172', '0', '70');
INSERT INTO `t_city` VALUES ('3401', '澳门特别行政区', '2', '173', '0', '70');
INSERT INTO `t_city` VALUES ('1110101', '东城区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110102', '西城区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110103', '崇文区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110104', '宣武区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110105', '朝阳区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110106', '丰台区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110107', '石景山区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110108', '海淀区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('11109', '门头沟区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('11110', '房山区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('104', '通州区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('101', '顺义区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('103', '昌平区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('102', '大兴区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110115', '怀柔区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110116', '平谷区', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110117', '延庆县', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1110118', '密云县', '3', '111', '0', '70');
INSERT INTO `t_city` VALUES ('1120101', '和平区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120102', '河东区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120103', '河西区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120104', '南开区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120105', '河北区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120106', '红桥区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120107', '塘沽区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120108', '汉沽区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120109', '大港区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120110', '东丽区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120111', '西青区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120112', '津南区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120113', '北辰区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120114', '武清区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120115', '宝坻区', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120116', '蓟县', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120117', '宁河县', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120118', '静海县', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1120199', '其他区县', '3', '112', '0', '70');
INSERT INTO `t_city` VALUES ('1130118', '高新技术产业开发区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130101', '长安区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130102', '桥东区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130103', '桥西区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130104', '新华区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130105', '裕华区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130106', '井陉矿区', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130107', '辛集市', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130108', '藁城市', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130109', '晋州市', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130110', '新乐市', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130111', '鹿泉市', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130112', '井陉县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130113', '正定县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130114', '栾城县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130115', '行唐县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130116', '灵寿县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130117', '高邑县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130199', '其他区县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130122', '深泽县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130120', '赞皇县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130123', '无极县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130119', '元氏县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130121', '赵县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130124', '平山县', '3', '601', '0', '70');
INSERT INTO `t_city` VALUES ('1130201', '路北区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130202', '路南区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130203', '古冶区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130204', '开平区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130205', '丰润区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130206', '丰南区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130207', '遵化市', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130208', '迁安市', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130209', '滦县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130210', '滦南县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130211', '乐亭县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130212', '迁西县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130213', '玉田县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130214', '唐海县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130299', '其他区县', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130215', '高新区', '3', '605', '0', '70');
INSERT INTO `t_city` VALUES ('1130301', '海港区', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130302', '山海关区', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130303', '北戴河区', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130304', '昌黎县', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130305', '抚宁县', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130306', '卢龙县', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130307', '青龙满族自治县', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130399', '其他区县', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130308', '经济技术开发区', '3', '604', '0', '70');
INSERT INTO `t_city` VALUES ('1130420', '高开区', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130401', '丛台区', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130402', '邯山区', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130403', '复兴区', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130404', '峰峰矿区', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130405', '武安市', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130406', '邯郸县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130407', '临漳县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130408', '成安县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130409', '大名县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130410', '涉县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130411', '磁县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130412', '肥乡县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130413', '永年县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130414', '邱县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130415', '鸡泽县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130416', '广平县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130417', '馆陶县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130418', '魏县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130419', '曲周县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130499', '其他区县', '3', '607', '0', '70');
INSERT INTO `t_city` VALUES ('1130501', '桥东区', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130502', '桥西区', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130503', '南宫市', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130504', '沙河市', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130505', '邢台县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130506', '临城县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130507', '内丘县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130508', '柏乡县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130509', '隆尧县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130510', '任县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130511', '南和县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130512', '宁晋县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130513', '巨鹿县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130514', '新河县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130515', '广宗县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130516', '平乡县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130517', '威县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130518', '清河县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130519', '临西县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130599', '其他区县', '3', '606', '0', '70');
INSERT INTO `t_city` VALUES ('1130601', '新市区', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130602', '北市区', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130603', '南市区', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130604', '定州市', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('611', '涿州市', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130606', '安国市', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130607', '高碑店市', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130608', '满城县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130609', '清苑县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130610', '易县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130611', '徐水县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130612', '涞源县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130613', '定兴县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130614', '顺平县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130615', '唐县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130616', '望都县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130617', '涞水县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130618', '高阳县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130619', '安新县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130620', '雄县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130621', '容城县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130622', '曲阳县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130623', '阜平县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130624', '博野县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130625', '蠡县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130699', '其他区县', '3', '608', '0', '70');
INSERT INTO `t_city` VALUES ('1130718', '高新区', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130701', '桥西区', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130702', '桥东区', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130703', '宣化区', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130704', '下花园区', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130705', '宣化县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130706', '张北县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130707', '康保县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130708', '沽源县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130709', '尚义县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130710', '蔚县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130711', '阳原县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130712', '怀安县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130713', '万全县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130714', '怀来县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130715', '涿鹿县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130716', '赤城县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130717', '崇礼县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130799', '其他区县', '3', '602', '0', '70');
INSERT INTO `t_city` VALUES ('1130801', '双桥区', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130802', '双滦区', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130803', '鹰手营子矿区', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130804', '承德县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130805', '兴隆县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130806', '平泉县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130807', '滦平县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130808', '隆化县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130809', '丰宁满族自治县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130810', '宽城满族自治县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130811', '围场满族蒙古族自治县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130899', '其他区县', '3', '603', '0', '70');
INSERT INTO `t_city` VALUES ('1130901', '运河区', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130902', '新华区', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130903', '泊头市', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130904', '任丘市', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130905', '黄骅市', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130906', '河间市', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130907', '沧县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130908', '青县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130909', '东光县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130910', '海兴县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130911', '盐山县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130912', '肃宁县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130913', '南皮县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130914', '吴桥县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130915', '献县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130916', '孟村回族自治县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1130999', '其他区县', '3', '609', '0', '70');
INSERT INTO `t_city` VALUES ('1131001', '安次区', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131002', '广阳区', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131003', '霸州市', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131004', '三河市', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131005', '固安县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131006', '永清县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131007', '香河县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131008', '大城县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131009', '文安县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131010', '大厂回族自治县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131099', '其他区县', '3', '610', '0', '70');
INSERT INTO `t_city` VALUES ('1131101', '桃城区', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131102', '冀州市', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131103', '深州市', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131104', '枣强县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131105', '武邑县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131106', '武强县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131107', '饶阳县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131108', '安平县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131109', '故城县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131110', '景县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131111', '阜城县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1131199', '其他区县', '3', '11311', '0', '70');
INSERT INTO `t_city` VALUES ('1140101', '杏花岭区', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140102', '小店区', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140103', '迎泽区', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140104', '尖草坪区', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140105', '万柏林区', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140106', '晋源区', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1213', '古交市', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1212', '清徐县', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1214', '阳曲县', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140110', '娄烦县', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140199', '其他区县', '3', '1201', '0', '70');
INSERT INTO `t_city` VALUES ('1140201', '城区', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140202', '矿区', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140203', '南郊区', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140204', '新荣区', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140205', '阳高县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140206', '天镇县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140207', '广灵县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140208', '灵丘县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140209', '浑源县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140210', '左云县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140211', '大同县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140299', '其他区县', '3', '1202', '0', '70');
INSERT INTO `t_city` VALUES ('1140301', '城区', '3', '1204', '0', '70');
INSERT INTO `t_city` VALUES ('1140302', '矿区', '3', '1204', '0', '70');
INSERT INTO `t_city` VALUES ('1140303', '郊区', '3', '1204', '0', '70');
INSERT INTO `t_city` VALUES ('1140304', '平定县', '3', '1204', '0', '70');
INSERT INTO `t_city` VALUES ('1140305', '盂县', '3', '1204', '0', '70');
INSERT INTO `t_city` VALUES ('1140399', '其他区县', '3', '1204', '0', '70');
INSERT INTO `t_city` VALUES ('1140401', '城区', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140402', '郊区', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140403', '潞城市', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140404', '长治县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140405', '襄垣县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140406', '屯留县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140407', '平顺县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140408', '黎城县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140409', '壶关县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140410', '长子县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140411', '武乡县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140412', '沁县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140413', '沁源县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140499', '其他区县', '3', '1206', '0', '70');
INSERT INTO `t_city` VALUES ('1140501', '城区', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1140502', '高平市', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1140503', '泽州县', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1140504', '沁水县', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1140505', '阳城县', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1140506', '陵川县', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1140599', '其他区县', '3', '1205', '0', '70');
INSERT INTO `t_city` VALUES ('1208', '榆次区', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1220', '介休市', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140603', '榆社县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140604', '左权县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140605', '和顺县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140606', '昔阳县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140607', '寿阳县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1218', '太谷县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1217', '祁县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1219', '平遥县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140611', '灵石县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140699', '其他区县', '3', '1207', '0', '70');
INSERT INTO `t_city` VALUES ('1140701', '盐湖区', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140702', '永济市', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140703', '河津市', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140704', '芮城县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140705', '临猗县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140706', '万荣县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140707', '新绛县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140708', '稷山县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140709', '闻喜县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140710', '夏县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140711', '绛县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140712', '平陆县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140713', '垣曲县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140799', '其他区县', '3', '1210', '0', '70');
INSERT INTO `t_city` VALUES ('1140801', '忻府区', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1225', '原平市', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140803', '定襄县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140804', '五台县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140805', '代县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140806', '繁峙县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140807', '宁武县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140808', '静乐县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140809', '神池县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140810', '五寨县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140811', '岢岚县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140812', '河曲县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140813', '保德县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140814', '偏关县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140899', '其他区县', '3', '1224', '0', '70');
INSERT INTO `t_city` VALUES ('1140901', '尧都区', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1209', '侯马市', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140903', '霍州市', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140904', '曲沃县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140905', '翼城县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140906', '襄汾县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140907', '洪洞县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140908', '古县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140909', '安泽县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140910', '浮山县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140911', '吉县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140912', '乡宁县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140913', '蒲县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140914', '大宁县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140915', '永和县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140916', '隰县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140917', '汾西县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1140999', '其他区县', '3', '1211', '0', '70');
INSERT INTO `t_city` VALUES ('1223', '离石区', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1215', '孝义市', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1216', '汾阳市', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1222', '文水县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141005', '中阳县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141006', '兴县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141007', '临县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141008', '方山县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141009', '柳林县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141010', '岚县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141011', '交口县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1221', '交城县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141013', '石楼县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141099', '其他区县', '3', '11410', '0', '70');
INSERT INTO `t_city` VALUES ('1141101', '朔城区', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1141102', '平鲁区', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1141103', '山阴县', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1141104', '应县', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1141105', '右玉县', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1141106', '怀仁县', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1141199', '其他区县', '3', '1203', '0', '70');
INSERT INTO `t_city` VALUES ('1150110', '经济开发区', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150101', '回民区', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150102', '新城区', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150103', '玉泉区', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150104', '赛罕区', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150105', '托克托县', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150106', '武川县', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150107', '和林格尔县', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150108', '清水河县', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150109', '土默特左旗', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150199', '其他区县', '3', '1001', '0', '70');
INSERT INTO `t_city` VALUES ('1150201', '昆都仑区', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150202', '东河区', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150203', '青山区', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150204', '石拐区', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150205', '白云矿区', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150206', '九原区', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150207', '固阳县', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150208', '土默特右旗', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150209', '达尔罕茂明安联合旗', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150299', '其他区县', '3', '1003', '0', '70');
INSERT INTO `t_city` VALUES ('1150313', '新城区', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150301', '红山区', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150302', '元宝山区', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150303', '松山区', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150304', '宁城县', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150305', '林西县', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150306', '阿鲁科尔沁旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150307', '巴林左旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150308', '巴林右旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150309', '克什克腾旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150310', '翁牛特旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150311', '喀喇沁旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150312', '敖汉旗', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150399', '其他区县', '3', '1004', '0', '70');
INSERT INTO `t_city` VALUES ('1150401', '科尔沁区', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150402', '霍林郭勒市', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150403', '开鲁县', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150404', '库伦旗', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150405', '奈曼旗', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150406', '扎鲁特旗', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150407', '科尔沁左翼中旗', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150408', '科尔沁左翼后旗', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150499', '其他区县', '3', '1005', '0', '70');
INSERT INTO `t_city` VALUES ('1150501', '东胜区', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150502', '达拉特旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150503', '准格尔旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150504', '鄂托克前旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150505', '鄂托克旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150506', '杭锦旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150507', '乌审旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150508', '伊金霍洛旗', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150599', '其他区县', '3', '11505', '0', '70');
INSERT INTO `t_city` VALUES ('1150601', '海拉尔区', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('710', '满洲里市', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150603', '扎兰屯市', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150604', '牙克石市', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150605', '根河市', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150606', '额尔古纳市', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150607', '阿荣旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150608', '新巴尔虎右旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150609', '新巴尔虎左旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150610', '陈巴尔虎旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150611', '鄂伦春自治旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150612', '鄂温克族自治旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150613', '莫力达瓦达斡尔族自治旗', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150699', '其他区县', '3', '11506', '0', '70');
INSERT INTO `t_city` VALUES ('1150701', '临河区', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150702', '五原县', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150703', '磴口县', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150704', '乌拉特前旗', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150705', '乌拉特中旗', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150706', '乌拉特后旗', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150707', '杭锦后旗', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150799', '其他区县', '3', '11507', '0', '70');
INSERT INTO `t_city` VALUES ('1150801', '集宁区', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150802', '丰镇市', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150803', '卓资县', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150804', '化德县', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150805', '商都县', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150806', '兴和县', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150807', '凉城县', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150808', '察哈尔右翼前旗', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150809', '察哈尔右翼中旗', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150810', '察哈尔右翼后旗', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150811', '四子王旗', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150899', '其他区县', '3', '11508', '0', '70');
INSERT INTO `t_city` VALUES ('1150901', '乌兰浩特市', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1150902', '阿尔山市', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1150903', '突泉县', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1150904', '科尔沁右翼前旗', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1150905', '科尔沁右翼中旗', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1150906', '扎赉特旗', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1150999', '其他区县', '3', '11509', '0', '70');
INSERT INTO `t_city` VALUES ('1151001', '锡林浩特市', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151002', '二连浩特市', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151003', '多伦县', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151004', '阿巴嘎旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151005', '苏尼特左旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151006', '苏尼特右旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151007', '东乌珠穆沁旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151008', '西乌珠穆沁旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151009', '太仆寺旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151010', '镶黄旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151011', '正镶白旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151012', '正蓝旗', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151099', '其他区县', '3', '11510', '0', '70');
INSERT INTO `t_city` VALUES ('1151101', '阿拉善左旗', '3', '11511', '0', '70');
INSERT INTO `t_city` VALUES ('1151102', '阿拉善右旗', '3', '11511', '0', '70');
INSERT INTO `t_city` VALUES ('1151103', '额济纳旗', '3', '11511', '0', '70');
INSERT INTO `t_city` VALUES ('1151199', '其他区县', '3', '11511', '0', '70');
INSERT INTO `t_city` VALUES ('1151201', '海勃湾区', '3', '1002', '0', '70');
INSERT INTO `t_city` VALUES ('1151202', '海南区', '3', '1002', '0', '70');
INSERT INTO `t_city` VALUES ('1151203', '乌达区', '3', '1002', '0', '70');
INSERT INTO `t_city` VALUES ('1151299', '其他区县', '3', '1002', '0', '70');
INSERT INTO `t_city` VALUES ('1210114', '浑南经济开发区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210101', '沈河区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210102', '和平区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210103', '大东区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210104', '皇姑区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210105', '铁西区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210106', '苏家屯区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210107', '东陵区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210108', '沈北新区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210109', '于洪区', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210110', '新民市', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210111', '辽中县', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210112', '康平县', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210113', '法库县', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210199', '其他区县', '3', '12', '0', '70');
INSERT INTO `t_city` VALUES ('1210201', '西岗区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210202', '中山区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210203', '沙河口区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210204', '甘井子区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210205', '旅顺口区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('918', '金州区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210207', '瓦房店市', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210208', '普兰店市', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('919', '庄河市', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210210', '长海县', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210299', '其他区县', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210211', '开发区', '3', '906', '0', '70');
INSERT INTO `t_city` VALUES ('1210301', '铁东区', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210302', '铁西区', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210303', '立山区', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210304', '千山区', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210305', '海城市', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210306', '台安县', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210307', '岫岩满族自治县', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210399', '其他区县', '3', '907', '0', '70');
INSERT INTO `t_city` VALUES ('1210401', '顺城区', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210402', '新抚区', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210403', '东洲区', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210404', '望花区', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210405', '抚顺县', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210406', '新宾满族自治县', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210407', '清原满族自治县', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210499', '其他区县', '3', '905', '0', '70');
INSERT INTO `t_city` VALUES ('1210501', '平山区', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210502', '溪湖区', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210503', '明山区', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210504', '南芬区', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210505', '本溪满族自治县', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210506', '桓仁满族自治县', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210599', '其他区县', '3', '915', '0', '70');
INSERT INTO `t_city` VALUES ('1210601', '振兴区', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210602', '元宝区', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210603', '振安区', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210604', '凤城市', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210605', '东港市', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210606', '宽甸满族自治县', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210699', '其他区县', '3', '908', '0', '70');
INSERT INTO `t_city` VALUES ('1210701', '太和区', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210702', '古塔区', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210703', '凌河区', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210704', '凌海市', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210705', '北镇市', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210706', '黑山县', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210707', '义县', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210799', '其他区县', '3', '910', '0', '70');
INSERT INTO `t_city` VALUES ('1210801', '站前区', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('1210802', '西市区', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('1210803', '鲅鱼圈区', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('1210804', '老边区', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('913', '大石桥市', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('1210806', '盖州市', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('917', '熊岳市', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('1210899', '其他区县', '3', '909', '0', '70');
INSERT INTO `t_city` VALUES ('1210901', '白塔区', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210902', '文圣区', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210903', '宏伟区', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210904', '弓长岭区', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210905', '太子河区', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210906', '灯塔市', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210907', '辽阳县', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1210999', '其他区县', '3', '911', '0', '70');
INSERT INTO `t_city` VALUES ('1211001', '兴隆台区', '3', '914', '0', '70');
INSERT INTO `t_city` VALUES ('1211002', '双台子区', '3', '914', '0', '70');
INSERT INTO `t_city` VALUES ('1211003', '大洼县', '3', '914', '0', '70');
INSERT INTO `t_city` VALUES ('1211004', '盘山县', '3', '914', '0', '70');
INSERT INTO `t_city` VALUES ('1211099', '其他区县', '3', '914', '0', '70');
INSERT INTO `t_city` VALUES ('1211101', '银州区', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211102', '清河区', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211103', '调兵山市', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211104', '开原市', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211105', '铁岭县', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211106', '西丰县', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211107', '昌图县', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211199', '其他区县', '3', '904', '0', '70');
INSERT INTO `t_city` VALUES ('1211201', '双塔区', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211202', '龙城区', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211203', '北票市', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211204', '凌源市', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211205', '朝阳县', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211206', '建平县', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211207', '喀喇沁左翼蒙古族自治县', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211299', '其他区县', '3', '902', '0', '70');
INSERT INTO `t_city` VALUES ('1211301', '龙港区', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211302', '连山区', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211303', '南票区', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211304', '兴城市', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211305', '绥中县', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211306', '建昌县', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211399', '其他区县', '3', '912', '0', '70');
INSERT INTO `t_city` VALUES ('1211401', '海州区', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211402', '新邱区', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211403', '太平区', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211404', '清河门区', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211405', '细河区', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211406', '彰武县', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211407', '阜新蒙古族自治县', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1211499', '其他区县', '3', '903', '0', '70');
INSERT INTO `t_city` VALUES ('1220111', '高新区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220113', '经开区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220112', '净月区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220114', '一汽厂区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220101', '朝阳区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220102', '南关区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220103', '宽城区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220104', '二道区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220105', '绿园区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220106', '双阳区', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220107', '德惠市', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220108', '九台市', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220109', '榆树市', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220110', '农安县', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220199', '其他区县', '3', '801', '0', '70');
INSERT INTO `t_city` VALUES ('1220201', '船营区', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220202', '龙潭区', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220203', '昌邑区', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220204', '丰满区', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220205', '磐石市', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220206', '蛟河市', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220207', '桦甸市', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220208', '舒兰市', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220209', '永吉县', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220299', '其他区县', '3', '804', '0', '70');
INSERT INTO `t_city` VALUES ('1220301', '铁西区', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220302', '铁东区', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220303', '双辽市', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220304', '公主岭市', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220305', '梨树县', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220306', '伊通满族自治县', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220399', '其他区县', '3', '805', '0', '70');
INSERT INTO `t_city` VALUES ('1220401', '龙山区', '3', '12204', '0', '70');
INSERT INTO `t_city` VALUES ('1220402', '西安区', '3', '12204', '0', '70');
INSERT INTO `t_city` VALUES ('1220403', '东丰县', '3', '12204', '0', '70');
INSERT INTO `t_city` VALUES ('1220404', '东辽县', '3', '12204', '0', '70');
INSERT INTO `t_city` VALUES ('1220499', '其他区县', '3', '12204', '0', '70');
INSERT INTO `t_city` VALUES ('1220501', '东昌区', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220502', '二道江区', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220503', '梅河口市', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220504', '集安市', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220505', '通化县', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220506', '辉南县', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220507', '柳河县', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220599', '其他区县', '3', '807', '0', '70');
INSERT INTO `t_city` VALUES ('1220601', '八道江区', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220602', '江源区', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220603', '临江市', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220604', '抚松县', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220605', '靖宇县', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220606', '长白朝鲜族自治县', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220699', '其他区县', '3', '12206', '0', '70');
INSERT INTO `t_city` VALUES ('1220701', '宁江区', '3', '803', '0', '70');
INSERT INTO `t_city` VALUES ('1220702', '扶余县', '3', '803', '0', '70');
INSERT INTO `t_city` VALUES ('1220703', '长岭县', '3', '803', '0', '70');
INSERT INTO `t_city` VALUES ('1220704', '乾安县', '3', '803', '0', '70');
INSERT INTO `t_city` VALUES ('1220705', '前郭尔罗斯蒙古族自治县', '3', '803', '0', '70');
INSERT INTO `t_city` VALUES ('1220799', '其他区县', '3', '803', '0', '70');
INSERT INTO `t_city` VALUES ('1220801', '洮北区', '3', '802', '0', '70');
INSERT INTO `t_city` VALUES ('1220802', '洮南市', '3', '802', '0', '70');
INSERT INTO `t_city` VALUES ('1220803', '大安市', '3', '802', '0', '70');
INSERT INTO `t_city` VALUES ('1220804', '镇赉县', '3', '802', '0', '70');
INSERT INTO `t_city` VALUES ('1220805', '通榆县', '3', '802', '0', '70');
INSERT INTO `t_city` VALUES ('1220899', '其他区县', '3', '802', '0', '70');
INSERT INTO `t_city` VALUES ('806', '延吉市', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220902', '图们市', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220903', '敦化市', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('808', '珲春市', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220905', '龙井市', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220906', '和龙市', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220907', '汪清县', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220908', '安图县', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1220999', '其他区县', '3', '12209', '0', '70');
INSERT INTO `t_city` VALUES ('1230119', '动力区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230101', '松北区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230102', '道里区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230103', '南岗区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230104', '道外区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230105', '香坊区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230106', '平房区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230107', '呼兰区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230108', '阿城区', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230109', '双城市', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230110', '尚志市', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230111', '五常市', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230112', '依兰县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230113', '方正县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230114', '宾县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230115', '巴彦县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230116', '木兰县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230117', '通河县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230118', '延寿县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230199', '其他区县', '3', '701', '0', '70');
INSERT INTO `t_city` VALUES ('1230201', '建华区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230202', '龙沙区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230203', '铁锋区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230204', '昂昂溪区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230205', '富拉尔基区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230206', '碾子山区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230207', '梅里斯达斡尔族区', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230208', '讷河市', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230209', '龙江县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230210', '依安县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230211', '泰来县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230212', '甘南县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230213', '富裕县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230214', '克山县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230215', '克东县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230216', '拜泉县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230299', '其他区县', '3', '702', '0', '70');
INSERT INTO `t_city` VALUES ('1230301', '鸡冠区', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230302', '恒山区', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230303', '滴道区', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230304', '梨树区', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230305', '城子河区', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230306', '麻山区', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230307', '虎林市', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230308', '密山市', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230309', '鸡东县', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230399', '其他区县', '3', '708', '0', '70');
INSERT INTO `t_city` VALUES ('1230401', '兴山区', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230402', '向阳区', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230403', '工农区', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230404', '南山区', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230405', '兴安区', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230406', '东山区', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230407', '萝北县', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230408', '绥滨县', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230499', '其他区县', '3', '709', '0', '70');
INSERT INTO `t_city` VALUES ('1230501', '尖山区', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230502', '岭东区', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230503', '四方台区', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230504', '宝山区', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230505', '集贤县', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230506', '友谊县', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230507', '宝清县', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230508', '饶河县', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230599', '其他区县', '3', '12305', '0', '70');
INSERT INTO `t_city` VALUES ('1230610', '开发区', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230601', '萨尔图区', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230602', '龙凤区', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230603', '让胡路区', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230604', '大同区', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230605', '红岗区', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230606', '肇州县', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230607', '肇源县', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230608', '林甸县', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230609', '杜尔伯特蒙古族自治县', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230699', '其他区县', '3', '704', '0', '70');
INSERT INTO `t_city` VALUES ('1230701', '伊春区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230702', '南岔区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230703', '友好区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230704', '西林区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230705', '翠峦区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230706', '新青区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230707', '美溪区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230708', '金山屯区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230709', '五营区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230710', '乌马河区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230711', '汤旺河区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230712', '带岭区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230713', '乌伊岭区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230714', '红星区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230715', '上甘岭区', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230716', '铁力市', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230717', '嘉荫县', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230799', '其他区县', '3', '705', '0', '70');
INSERT INTO `t_city` VALUES ('1230811', '永红区', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230801', '前进区', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230802', '向阳区', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230803', '东风区', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230804', '郊区', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230805', '同江市', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230806', '富锦市', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230807', '桦南县', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230808', '桦川县', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230809', '汤原县', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230810', '抚远县', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230899', '其他区县', '3', '706', '0', '70');
INSERT INTO `t_city` VALUES ('1230901', '桃山区', '3', '12309', '0', '70');
INSERT INTO `t_city` VALUES ('1230902', '新兴区', '3', '12309', '0', '70');
INSERT INTO `t_city` VALUES ('1230903', '茄子河区', '3', '12309', '0', '70');
INSERT INTO `t_city` VALUES ('1230904', '勃利县', '3', '12309', '0', '70');
INSERT INTO `t_city` VALUES ('1230999', '其他区县', '3', '12309', '0', '70');
INSERT INTO `t_city` VALUES ('1231001', '爱民区', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231002', '东安区', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231003', '阳明区', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231004', '西安区', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231005', '穆棱市', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231006', '绥芬河市', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231007', '海林市', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231008', '宁安市', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231009', '东宁县', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231010', '林口县', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231099', '其他区县', '3', '707', '0', '70');
INSERT INTO `t_city` VALUES ('1231101', '爱辉区', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231102', '北安市', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231103', '五大连池市', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231104', '嫩江县', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231105', '逊克县', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231106', '孙吴县', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231199', '其他区县', '3', '703', '0', '70');
INSERT INTO `t_city` VALUES ('1231201', '北林区', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231202', '安达市', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231203', '肇东市', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231204', '海伦市', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231205', '望奎县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231206', '兰西县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231207', '青冈县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231208', '庆安县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231209', '明水县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231210', '绥棱县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231299', '其他区县', '3', '12312', '0', '70');
INSERT INTO `t_city` VALUES ('1231301', '呼玛县', '3', '12313', '0', '70');
INSERT INTO `t_city` VALUES ('1231302', '塔河县', '3', '12313', '0', '70');
INSERT INTO `t_city` VALUES ('1231303', '漠河县', '3', '12313', '0', '70');
INSERT INTO `t_city` VALUES ('1231399', '其他区县', '3', '12313', '0', '70');
INSERT INTO `t_city` VALUES ('1310101', '黄浦区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310102', '卢湾区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310103', '徐汇区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310104', '长宁区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310105', '静安区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310106', '普陀区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310107', '闸北区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310108', '虹口区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310109', '杨浦区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310110', '闵行区(浦江镇)', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310111', '宝山区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310112', '嘉定区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310113', '浦东新区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310114', '金山区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310115', '松江区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310116', '青浦区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310117', '南汇区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310118', '奉贤区', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310119', '崇明县', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1310200', '闵行区(浦江镇以外)', '3', '131', '0', '70');
INSERT INTO `t_city` VALUES ('1320114', '高新开发区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320101', '玄武区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320102', '白下区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320103', '秦淮区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320104', '建邺区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320105', '鼓楼区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320106', '下关区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320107', '浦口区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320108', '六合区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320109', '栖霞区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320110', '雨花台区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320111', '江宁区', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320112', '溧水县', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320113', '高淳县', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320199', '其他区县', '3', '1601', '0', '70');
INSERT INTO `t_city` VALUES ('1320201', '崇安区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320202', '南长区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320203', '北塘区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320204', '滨湖区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320205', '惠山区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320206', '锡山区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1611', '江阴市', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320208', '宜兴市', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320299', '其他区县', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320209', '新区', '3', '1607', '0', '70');
INSERT INTO `t_city` VALUES ('1320301', '云龙区', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320302', '鼓楼区', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320303', '九里区', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320304', '贾汪区', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320305', '泉山区', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1625', '邳州市', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320307', '新沂市', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320308', '铜山县', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320309', '睢宁县', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320310', '沛县', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320311', '丰县', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320399', '其他区县', '3', '1603', '0', '70');
INSERT INTO `t_city` VALUES ('1320401', '钟楼区', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320402', '天宁区', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320403', '戚墅堰区', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320404', '新北区', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320405', '武进区', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320406', '金坛市', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320407', '溧阳市', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320499', '其他区县', '3', '1608', '0', '70');
INSERT INTO `t_city` VALUES ('1320511', '高新区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320512', '工业园区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320501', '金阊区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320502', '沧浪区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320503', '平江区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320504', '虎丘区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320505', '吴中区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320506', '相城区', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320507', '吴江市', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1619', '昆山市', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320509', '太仓市', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320510', '常熟市', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1621', '张家港市', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320599', '其他区县', '3', '1602', '0', '70');
INSERT INTO `t_city` VALUES ('1320609', '经济开发区', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320601', '崇川区', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320602', '港闸区', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320603', '海门市', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320604', '启东市', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320605', '通州市', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320606', '如皋市', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320607', '如东县', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320608', '海安县', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320699', '其他区县', '3', '1620', '0', '70');
INSERT INTO `t_city` VALUES ('1320701', '新浦区', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320702', '连云区', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320703', '海州区', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320704', '赣榆县', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320705', '灌云县', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320706', '东海县', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320707', '灌南县', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320799', '其他区县', '3', '1604', '0', '70');
INSERT INTO `t_city` VALUES ('1320801', '清河区', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320802', '清浦区', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320803', '楚州区', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1624', '淮阴区', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320805', '金湖县', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320806', '盱眙县', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320807', '洪泽县', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320808', '涟水县', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320899', '其他区县', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320809', '经济开发区', '3', '1606', '0', '70');
INSERT INTO `t_city` VALUES ('1320901', '亭湖区', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320902', '盐都区', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320903', '东台市', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320904', '大丰市', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320905', '射阳县', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320906', '阜宁县', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320907', '滨海县', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320908', '响水县', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320909', '建湖县', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1320999', '其他区县', '3', '13209', '0', '70');
INSERT INTO `t_city` VALUES ('1321008', '开发区', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321001', '维扬区', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321002', '广陵区', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321003', '邗江区', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321004', '仪征市', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1622', '江都市', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321006', '高邮市', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321007', '宝应县', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321099', '其他区县', '3', '1610', '0', '70');
INSERT INTO `t_city` VALUES ('1321101', '京口区', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1321102', '润州区', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1618', '丹徒区', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1321104', '扬中市', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1617', '丹阳市', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1321106', '句容市', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1321199', '其他区县', '3', '1609', '0', '70');
INSERT INTO `t_city` VALUES ('1321201', '海陵区', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1321202', '高港区', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1615', '靖江市', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1614', '泰兴市', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1616', '姜堰市', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1613', '兴化市', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1321299', '其他区县', '3', '1612', '0', '70');
INSERT INTO `t_city` VALUES ('1321301', '宿城区', '3', '1605', '0', '70');
INSERT INTO `t_city` VALUES ('1321302', '宿豫区', '3', '1605', '0', '70');
INSERT INTO `t_city` VALUES ('1623', '沭阳县', '3', '1605', '0', '70');
INSERT INTO `t_city` VALUES ('1321304', '泗阳县', '3', '1605', '0', '70');
INSERT INTO `t_city` VALUES ('1321305', '泗洪县', '3', '1605', '0', '70');
INSERT INTO `t_city` VALUES ('1321399', '其他区县', '3', '1605', '0', '70');
INSERT INTO `t_city` VALUES ('1330109', '下沙经济开发区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330101', '上城区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330102', '下城区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330103', '江干区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330104', '拱墅区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330105', '西湖区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1933', '滨江区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330107', '萧山区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330108', '余杭区', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1911', '建德市', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1948', '富阳市', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1949', '临安市', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1950', '桐庐县', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1951', '淳安县', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330199', '其他区县', '3', '1901', '0', '70');
INSERT INTO `t_city` VALUES ('1330210', '科技园区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330201', '海曙区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330202', '江东区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330203', '江北区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330204', '北仑区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330205', '镇海区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330206', '鄞州区', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1920', '余姚市', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1921', '慈溪市', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330209', '奉化市', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1922', '象山县', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1934', '宁海县', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330299', '其他区县', '3', '1905', '0', '70');
INSERT INTO `t_city` VALUES ('1330301', '鹿城区', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330302', '龙湾区', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330303', '瓯海区', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1907', '瑞安市', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1913', '乐清市', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330306', '洞头县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1935', '永嘉县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330308', '平阳县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330309', '苍南县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330310', '文成县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330311', '泰顺县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330399', '其他区县', '3', '1906', '0', '70');
INSERT INTO `t_city` VALUES ('1330401', '南湖区', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1330402', '秀城区', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1936', '平湖市', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1932', '海宁市', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1931', '桐乡市', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1930', '嘉善县', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1937', '海盐县', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1330499', '其他区县', '3', '1903', '0', '70');
INSERT INTO `t_city` VALUES ('1330501', '吴兴区', '3', '1902', '0', '70');
INSERT INTO `t_city` VALUES ('1330502', '南浔区', '3', '1902', '0', '70');
INSERT INTO `t_city` VALUES ('1945', '长兴县', '3', '1902', '0', '70');
INSERT INTO `t_city` VALUES ('1944', '德清县', '3', '1902', '0', '70');
INSERT INTO `t_city` VALUES ('1946', '安吉县', '3', '1902', '0', '70');
INSERT INTO `t_city` VALUES ('1330599', '其他区县', '3', '1902', '0', '70');
INSERT INTO `t_city` VALUES ('1330601', '越城区', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1927', '诸暨市', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1916', '上虞市', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1917', '嵊州市', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1330605', '绍兴县', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1926', '新昌县', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1330699', '其他区县', '3', '1914', '0', '70');
INSERT INTO `t_city` VALUES ('1330701', '婺城区', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1330702', '金东区', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1918', '兰溪市', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1909', '永康市', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1928', '义乌市', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1929', '东阳市', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1330707', '武义县', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1938', '浦江县', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1330709', '磐安县', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1330799', '其他区县', '3', '1910', '0', '70');
INSERT INTO `t_city` VALUES ('1330801', '柯城区', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1330802', '衢江区', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1915', '江山市', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1330804', '常山县', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1330805', '开化县', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1330806', '龙游县', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1330899', '其他区县', '3', '1908', '0', '70');
INSERT INTO `t_city` VALUES ('1330901', '定海区', '3', '1904', '0', '70');
INSERT INTO `t_city` VALUES ('1330902', '普陀区', '3', '1904', '0', '70');
INSERT INTO `t_city` VALUES ('1330903', '岱山县', '3', '1904', '0', '70');
INSERT INTO `t_city` VALUES ('1330904', '嵊泗县', '3', '1904', '0', '70');
INSERT INTO `t_city` VALUES ('1330999', '其他区县', '3', '1904', '0', '70');
INSERT INTO `t_city` VALUES ('1924', '椒江区', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1923', '黄岩区', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1925', '路桥区', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1940', '临海市', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1912', '温岭市', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1331006', '三门县', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1941', '天台县', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1942', '仙居县', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1331009', '玉环县', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1331099', '其他区县', '3', '1939', '0', '70');
INSERT INTO `t_city` VALUES ('1331101', '莲都区', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331102', '龙泉市', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331103', '缙云县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331104', '青田县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331105', '云和县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331106', '遂昌县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331107', '松阳县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331108', '庆元县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331109', '景宁畲族自治县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1331199', '其他区县', '3', '1943', '0', '70');
INSERT INTO `t_city` VALUES ('1340101', '庐阳区', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340102', '瑶海区', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340103', '蜀山区', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340104', '包河区', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340105', '长丰县', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340106', '肥东县', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340107', '肥西县', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340199', '其他区县', '3', '1501', '0', '70');
INSERT INTO `t_city` VALUES ('1340201', '镜湖区', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340202', '弋江区', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340203', '三山区', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340204', '鸠江区', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340205', '芜湖县', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340206', '繁昌县', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340207', '南陵县', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340299', '其他区县', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340208', '高新区', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340209', '经济开发区', '3', '1508', '0', '70');
INSERT INTO `t_city` VALUES ('1340308', '高新技术开发区', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340309', '经济开发区', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340301', '蚌山区', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340302', '龙子湖区', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340303', '禹会区', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340304', '淮上区', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340305', '怀远县', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340306', '五河县', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340307', '固镇县', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340399', '其他区县', '3', '1506', '0', '70');
INSERT INTO `t_city` VALUES ('1340407', '开发区', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340401', '田家庵区', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340402', '大通区', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340403', '谢家集区', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340404', '八公山区', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340405', '潘集区', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340406', '凤台县', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340499', '其他区县', '3', '1503', '0', '70');
INSERT INTO `t_city` VALUES ('1340505', '经济技术开发区', '3', '1510', '0', '70');
INSERT INTO `t_city` VALUES ('1340501', '雨山区', '3', '1510', '0', '70');
INSERT INTO `t_city` VALUES ('1340502', '花山区', '3', '1510', '0', '70');
INSERT INTO `t_city` VALUES ('1340503', '金家庄区', '3', '1510', '0', '70');
INSERT INTO `t_city` VALUES ('1340504', '当涂县', '3', '1510', '0', '70');
INSERT INTO `t_city` VALUES ('1340599', '其他区县', '3', '1510', '0', '70');
INSERT INTO `t_city` VALUES ('1340605', '南湖开发区', '3', '1502', '0', '70');
INSERT INTO `t_city` VALUES ('1340601', '相山区', '3', '1502', '0', '70');
INSERT INTO `t_city` VALUES ('1340602', '杜集区', '3', '1502', '0', '70');
INSERT INTO `t_city` VALUES ('1340603', '烈山区', '3', '1502', '0', '70');
INSERT INTO `t_city` VALUES ('1340604', '濉溪县', '3', '1502', '0', '70');
INSERT INTO `t_city` VALUES ('1340699', '其他区县', '3', '1502', '0', '70');
INSERT INTO `t_city` VALUES ('1340701', '铜官山区', '3', '1514', '0', '70');
INSERT INTO `t_city` VALUES ('1340702', '狮子山区', '3', '1514', '0', '70');
INSERT INTO `t_city` VALUES ('1340703', '郊区', '3', '1514', '0', '70');
INSERT INTO `t_city` VALUES ('1340704', '铜陵县', '3', '1514', '0', '70');
INSERT INTO `t_city` VALUES ('1340799', '其他区县', '3', '1514', '0', '70');
INSERT INTO `t_city` VALUES ('1340814', '开发区', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340801', '迎江区', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340802', '大观区', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340804', '桐城市', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340805', '怀宁县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340806', '枞阳县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340807', '潜山县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340808', '太湖县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340809', '宿松县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340810', '望江县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340811', '岳西县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340813', '宜秀区', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340899', '其他区县', '3', '1516', '0', '70');
INSERT INTO `t_city` VALUES ('1340901', '屯溪区', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340902', '黄山区', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340903', '徽州区', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340904', '歙县', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340905', '休宁县', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340906', '黟县', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340907', '祁门县', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1340999', '其他区县', '3', '1507', '0', '70');
INSERT INTO `t_city` VALUES ('1341009', '经济开发区', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341010', '扬子工业开发区', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341001', '琅琊区', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341002', '南谯区', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1517', '明光市', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341004', '天长市', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341005', '来安县', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341006', '全椒县', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341007', '定远县', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341008', '凤阳县', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341099', '其他区县', '3', '1505', '0', '70');
INSERT INTO `t_city` VALUES ('1341101', '颍州区', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341102', '颍东区', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341103', '颍泉区', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341104', '界首市', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341105', '临泉县', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341106', '太和县', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341107', '阜南县', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341108', '颍上县', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341199', '其他区县', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341109', '经济技术开发区', '3', '1513', '0', '70');
INSERT INTO `t_city` VALUES ('1341306', '民营开发区', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341301', '居巢区', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341302', '庐江县', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341303', '无为县', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341304', '含山县', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341305', '和县', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341399', '其他区县', '3', '1511', '0', '70');
INSERT INTO `t_city` VALUES ('1341408', '经济开发区', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341401', '金安区', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341402', '裕安区', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341403', '寿县', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341404', '霍邱县', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341405', '舒城县', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341406', '金寨县', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341407', '霍山县', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341499', '其他区县', '3', '1521', '0', '70');
INSERT INTO `t_city` VALUES ('1341501', '谯城区', '3', '1504', '0', '70');
INSERT INTO `t_city` VALUES ('1341502', '涡阳县', '3', '1504', '0', '70');
INSERT INTO `t_city` VALUES ('1341503', '蒙城县', '3', '1504', '0', '70');
INSERT INTO `t_city` VALUES ('1341504', '利辛县', '3', '1504', '0', '70');
INSERT INTO `t_city` VALUES ('1341599', '其他区县', '3', '1504', '0', '70');
INSERT INTO `t_city` VALUES ('1512', '贵池区', '3', '1519', '0', '70');
INSERT INTO `t_city` VALUES ('1341602', '东至县', '3', '1519', '0', '70');
INSERT INTO `t_city` VALUES ('1341603', '石台县', '3', '1519', '0', '70');
INSERT INTO `t_city` VALUES ('1341604', '青阳县', '3', '1519', '0', '70');
INSERT INTO `t_city` VALUES ('1341699', '其他区县', '3', '1519', '0', '70');
INSERT INTO `t_city` VALUES ('1341701', '宣州区', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341702', '宁国市', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341703', '郎溪县', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341704', '广德县', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341705', '泾县', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341706', '旌德县', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341707', '绩溪县', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1341799', '其他区县', '3', '1515', '0', '70');
INSERT INTO `t_city` VALUES ('1350101', '鼓楼区', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('1350102', '台江区', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('1350103', '仓山区', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('1350104', '马尾区', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('1350105', '晋安区', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2111', '福清市', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2120', '长乐市', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2122', '闽侯县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2116', '连江县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2121', '罗源县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2123', '闽清县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2124', '永泰县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('2125', '平潭县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('1350199', '其他区县', '3', '2101', '0', '70');
INSERT INTO `t_city` VALUES ('1350201', '思明区', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350202', '海沧区', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350203', '湖里区', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350204', '集美区', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350205', '同安区', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350206', '翔安区', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350299', '其他区县', '3', '2105', '0', '70');
INSERT INTO `t_city` VALUES ('1350301', '城厢区', '3', '2103', '0', '70');
INSERT INTO `t_city` VALUES ('1350302', '涵江区', '3', '2103', '0', '70');
INSERT INTO `t_city` VALUES ('1350303', '荔城区', '3', '2103', '0', '70');
INSERT INTO `t_city` VALUES ('1350304', '秀屿区', '3', '2103', '0', '70');
INSERT INTO `t_city` VALUES ('1350305', '仙游县', '3', '2103', '0', '70');
INSERT INTO `t_city` VALUES ('1350399', '其他区县', '3', '2103', '0', '70');
INSERT INTO `t_city` VALUES ('1350401', '梅列区', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('1350402', '三元区', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2126', '永安市', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2134', '明溪县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2130', '清流县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2131', '宁化县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2128', '大田县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2129', '尤溪县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2127', '沙县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2133', '将乐县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2117', '泰宁县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('2132', '建宁县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('1350499', '其他区县', '3', '2102', '0', '70');
INSERT INTO `t_city` VALUES ('1350501', '丰泽区', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350502', '鲤城区', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350503', '洛江区', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350504', '泉港区', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('2112', '石狮市', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('2115', '晋江市', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350507', '南安市', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350508', '惠安县', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350509', '安溪县', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350510', '永春县', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350511', '德化县', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350512', '金门县', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350599', '其他区县', '3', '2104', '0', '70');
INSERT INTO `t_city` VALUES ('1350601', '芗城区', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350602', '龙文区', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350603', '龙海市', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350604', '云霄县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350605', '漳浦县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350606', '诏安县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350607', '长泰县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350608', '东山县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('2118', '南靖县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('2119', '平和县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350611', '华安县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350699', '其他区县', '3', '2106', '0', '70');
INSERT INTO `t_city` VALUES ('1350701', '延平区', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350702', '邵武市', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('2114', '武夷山市', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('2108', '建瓯市', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350705', '建阳市', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350706', '顺昌县', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350707', '浦城县', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350708', '光泽县', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350709', '松溪县', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350710', '政和县', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350799', '其他区县', '3', '2107', '0', '70');
INSERT INTO `t_city` VALUES ('1350801', '新罗区', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('2135', '漳平市', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('2137', '长汀县', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('1350804', '永定县', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('2136', '上杭县', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('1350806', '武平县', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('2138', '连城县', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('1350899', '其他区县', '3', '2113', '0', '70');
INSERT INTO `t_city` VALUES ('1350901', '蕉城区', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350902', '福安市', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('2110', '福鼎市', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350904', '寿宁县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350905', '霞浦县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350906', '柘荣县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350907', '屏南县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350908', '古田县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350909', '周宁县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1350999', '其他区县', '3', '2109', '0', '70');
INSERT INTO `t_city` VALUES ('1360101', '东湖区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360102', '西湖区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360103', '青云谱区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('2015', '湾里区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360105', '青山湖区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('2014', '南昌县', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('2016', '新建县', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360108', '安义县', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360109', '进贤县', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360199', '其他区县', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360110', '高新技术开发区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360111', '红谷滩新区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360112', '昌北经济技术开发区', '3', '2001', '0', '70');
INSERT INTO `t_city` VALUES ('1360201', '珠山区', '3', '2003', '0', '70');
INSERT INTO `t_city` VALUES ('1360202', '昌江区', '3', '2003', '0', '70');
INSERT INTO `t_city` VALUES ('1360203', '乐平市', '3', '2003', '0', '70');
INSERT INTO `t_city` VALUES ('1360204', '浮梁县', '3', '2003', '0', '70');
INSERT INTO `t_city` VALUES ('1360299', '其他区县', '3', '2003', '0', '70');
INSERT INTO `t_city` VALUES ('1360301', '安源区', '3', '2006', '0', '70');
INSERT INTO `t_city` VALUES ('1360302', '湘东区', '3', '2006', '0', '70');
INSERT INTO `t_city` VALUES ('1360303', '莲花县', '3', '2006', '0', '70');
INSERT INTO `t_city` VALUES ('1360304', '上栗县', '3', '2006', '0', '70');
INSERT INTO `t_city` VALUES ('1360305', '芦溪县', '3', '2006', '0', '70');
INSERT INTO `t_city` VALUES ('1360399', '其他区县', '3', '2006', '0', '70');
INSERT INTO `t_city` VALUES ('1360401', '浔阳区', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360402', '庐山区', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360403', '瑞昌市', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360404', '九江县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360405', '武宁县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360406', '修水县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360407', '永修县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360408', '德安县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360409', '星子县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360410', '都昌县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360411', '湖口县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360412', '彭泽县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360499', '其他区县', '3', '2002', '0', '70');
INSERT INTO `t_city` VALUES ('1360501', '渝水区', '3', '2005', '0', '70');
INSERT INTO `t_city` VALUES ('1360502', '分宜县', '3', '2005', '0', '70');
INSERT INTO `t_city` VALUES ('1360599', '其他区县', '3', '2005', '0', '70');
INSERT INTO `t_city` VALUES ('1360601', '月湖区', '3', '2004', '0', '70');
INSERT INTO `t_city` VALUES ('2013', '贵溪市', '3', '2004', '0', '70');
INSERT INTO `t_city` VALUES ('1360603', '余江县', '3', '2004', '0', '70');
INSERT INTO `t_city` VALUES ('1360699', '其他区县', '3', '2004', '0', '70');
INSERT INTO `t_city` VALUES ('1360701', '章贡区', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360702', '瑞金市', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360703', '南康市', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360704', '赣县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360705', '信丰县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360706', '大余县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360707', '上犹县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360708', '崇义县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360709', '安远县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360710', '龙南县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360711', '定南县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360712', '全南县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360713', '宁都县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360714', '于都县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360715', '兴国县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360716', '会昌县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360717', '寻乌县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360718', '石城县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360799', '其他区县', '3', '2008', '0', '70');
INSERT INTO `t_city` VALUES ('1360801', '吉州区', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360802', '青原区', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('2010', '井冈山市', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360804', '吉安县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360805', '吉水县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360806', '峡江县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360807', '新干县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360808', '永丰县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360809', '泰和县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360810', '遂川县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360811', '万安县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360812', '安福县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360813', '永新县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360899', '其他区县', '3', '2007', '0', '70');
INSERT INTO `t_city` VALUES ('1360901', '袁州区', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360902', '丰城市', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360903', '樟树市', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360904', '高安市', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360905', '奉新县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360906', '万载县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360907', '上高县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360908', '宜丰县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360909', '靖安县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360910', '铜鼓县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1360999', '其他区县', '3', '2012', '0', '70');
INSERT INTO `t_city` VALUES ('1361001', '临川区', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361002', '南城县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361003', '黎川县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361004', '南丰县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361005', '崇仁县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361006', '乐安县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361007', '宜黄县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361008', '金溪县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361009', '资溪县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361010', '东乡县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361011', '广昌县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361099', '其他区县', '3', '2009', '0', '70');
INSERT INTO `t_city` VALUES ('1361101', '信州区', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361102', '德兴市', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361103', '上饶县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361104', '广丰县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361105', '玉山县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361106', '铅山县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361107', '横峰县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361108', '弋阳县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361109', '余干县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361110', '鄱阳县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361111', '万年县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361112', '婺源县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1361199', '其他区县', '3', '2011', '0', '70');
INSERT INTO `t_city` VALUES ('1370111', '高新区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370101', '市中区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370102', '历下区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370103', '槐荫区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370104', '天桥区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370105', '历城区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370106', '长清区', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370107', '章丘市', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370108', '平阴县', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370109', '济阳县', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370110', '商河县', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370199', '其他区县', '3', '1101', '0', '70');
INSERT INTO `t_city` VALUES ('1370201', '市南区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370202', '市北区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370203', '四方区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370204', '黄岛区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370205', '崂山区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370206', '城阳区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370207', '李沧区', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370208', '胶州市', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1116', '即墨市', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370210', '平度市', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370211', '胶南市', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370212', '莱西市', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370299', '其他区县', '3', '1106', '0', '70');
INSERT INTO `t_city` VALUES ('1370301', '张店区', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370302', '淄川区', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370303', '博山区', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370304', '临淄区', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370305', '周村区', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370306', '桓台县', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370307', '高青县', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370308', '沂源县', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370399', '其他区县', '3', '1104', '0', '70');
INSERT INTO `t_city` VALUES ('1370401', '市中区', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370402', '薛城区', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370403', '峄城区', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370404', '台儿庄区', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370405', '山亭区', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370406', '滕州市', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370499', '其他区县', '3', '13704', '0', '70');
INSERT INTO `t_city` VALUES ('1370501', '东营区', '3', '1105', '0', '70');
INSERT INTO `t_city` VALUES ('1370502', '河口区', '3', '1105', '0', '70');
INSERT INTO `t_city` VALUES ('1370503', '垦利县', '3', '1105', '0', '70');
INSERT INTO `t_city` VALUES ('1370504', '利津县', '3', '1105', '0', '70');
INSERT INTO `t_city` VALUES ('1370505', '广饶县', '3', '1105', '0', '70');
INSERT INTO `t_city` VALUES ('1370599', '其他区县', '3', '1105', '0', '70');
INSERT INTO `t_city` VALUES ('1370613', '开发区', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370601', '莱山区', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370602', '芝罘区', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370603', '福山区', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370604', '牟平区', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370605', '栖霞市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370606', '海阳市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370607', '龙口市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1111', '莱阳市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370609', '莱州市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370610', '蓬莱市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1114', '招远市', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370612', '长岛县', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370699', '其他区县', '3', '1110', '0', '70');
INSERT INTO `t_city` VALUES ('1370801', '潍城区', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370802', '寒亭区', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370803', '坊子区', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370804', '奎文区', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370805', '安丘市', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370806', '昌邑市', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370807', '高密市', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370808', '青州市', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370809', '诸城市', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370810', '寿光市', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370811', '临朐县', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370812', '昌乐县', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370899', '其他区县', '3', '1103', '0', '70');
INSERT INTO `t_city` VALUES ('1370905', '高新技术产业开发区', '3', '1113', '0', '70');
INSERT INTO `t_city` VALUES ('1370901', '环翠区', '3', '1113', '0', '70');
INSERT INTO `t_city` VALUES ('1370902', '文登市', '3', '1113', '0', '70');
INSERT INTO `t_city` VALUES ('1370903', '荣成市', '3', '1113', '0', '70');
INSERT INTO `t_city` VALUES ('1370904', '乳山市', '3', '1113', '0', '70');
INSERT INTO `t_city` VALUES ('1370999', '其他区县', '3', '1113', '0', '70');
INSERT INTO `t_city` VALUES ('1371001', '市中区', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371002', '任城区', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371003', '曲阜市', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371004', '兖州市', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371005', '邹城市', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371006', '微山县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371007', '鱼台县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371008', '金乡县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371009', '嘉祥县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371010', '汶上县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371011', '泗水县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371012', '梁山县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371099', '其他区县', '3', '13710', '0', '70');
INSERT INTO `t_city` VALUES ('1371101', '泰山区', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371102', '岱岳区', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371103', '新泰市', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371104', '肥城市', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371105', '宁阳县', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371106', '东平县', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371199', '其他区县', '3', '13711', '0', '70');
INSERT INTO `t_city` VALUES ('1371205', '开发区', '3', '1108', '0', '70');
INSERT INTO `t_city` VALUES ('1371201', '东港区', '3', '1108', '0', '70');
INSERT INTO `t_city` VALUES ('1371202', '岚山区', '3', '1108', '0', '70');
INSERT INTO `t_city` VALUES ('1371203', '五莲县', '3', '1108', '0', '70');
INSERT INTO `t_city` VALUES ('1371204', '莒县', '3', '1108', '0', '70');
INSERT INTO `t_city` VALUES ('1371299', '其他区县', '3', '1108', '0', '70');
INSERT INTO `t_city` VALUES ('1371303', '开发区', '3', '1112', '0', '70');
INSERT INTO `t_city` VALUES ('1371301', '莱城区', '3', '1112', '0', '70');
INSERT INTO `t_city` VALUES ('1371302', '钢城区', '3', '1112', '0', '70');
INSERT INTO `t_city` VALUES ('1371399', '其他区县', '3', '1112', '0', '70');
INSERT INTO `t_city` VALUES ('1371401', '兰山区', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371402', '罗庄区', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371403', '河东区', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371404', '郯城县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371405', '苍山县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371406', '莒南县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371407', '沂水县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371408', '蒙阴县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371409', '平邑县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371410', '费县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371411', '沂南县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371412', '临沭县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371499', '其他区县', '3', '1107', '0', '70');
INSERT INTO `t_city` VALUES ('1371501', '德城区', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371502', '乐陵市', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371503', '禹城市', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371504', '陵县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371505', '平原县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371506', '夏津县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371507', '武城县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371508', '齐河县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371509', '临邑县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371510', '宁津县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371511', '庆云县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371599', '其他区县', '3', '1102', '0', '70');
INSERT INTO `t_city` VALUES ('1371601', '东昌府区', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371602', '临清市', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371603', '阳谷县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371604', '莘县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371605', '茌平县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371606', '东阿县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371607', '冠县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371608', '高唐县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371699', '其他区县', '3', '1115', '0', '70');
INSERT INTO `t_city` VALUES ('1371701', '滨城区', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371702', '惠民县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371703', '阳信县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371704', '无棣县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371705', '沾化县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371706', '博兴县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371707', '邹平县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371799', '其他区县', '3', '1109', '0', '70');
INSERT INTO `t_city` VALUES ('1371801', '牡丹区', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371802', '曹县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371803', '定陶县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371804', '成武县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371805', '单县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371806', '巨野县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371807', '郓城县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371808', '鄄城县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371809', '东明县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1371899', '其他区县', '3', '13718', '0', '70');
INSERT INTO `t_city` VALUES ('1410115', '高新技术开发区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410114', '经济技术开发区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410113', '郑东新区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410101', '中原区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410102', '二七区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410103', '管城回族区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410104', '金水区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410105', '上街区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410106', '惠济区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410107', '新郑市', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410108', '登封市', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410109', '新密市', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410110', '巩义市', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410111', '荥阳市', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410112', '中牟县', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410199', '其他区县', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410116', '出口加工区', '3', '1401', '0', '70');
INSERT INTO `t_city` VALUES ('1410201', '鼓楼区', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410202', '龙亭区', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410203', '顺河回族区', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410204', '禹王台区', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410205', '金明区', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410206', '杞县', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410207', '通许县', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410208', '尉氏县', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410209', '开封县', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410210', '兰考县', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410299', '其他区县', '3', '1408', '0', '70');
INSERT INTO `t_city` VALUES ('1410411', '新城区', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410401', '新华区', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410402', '卫东区', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410403', '湛河区', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410404', '石龙区', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410405', '舞钢市', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410406', '汝州市', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410407', '宝丰县', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410408', '叶县', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410409', '鲁山县', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410410', '郏县', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410499', '其他区县', '3', '1413', '0', '70');
INSERT INTO `t_city` VALUES ('1410501', '山阳区', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410502', '解放区', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410503', '中站区', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410504', '马村区', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410505', '孟州市', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410506', '沁阳市', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410507', '修武县', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410508', '博爱县', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410509', '武陟县', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410510', '温县', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410599', '其他区县', '3', '1404', '0', '70');
INSERT INTO `t_city` VALUES ('1410601', '淇滨区', '3', '1411', '0', '70');
INSERT INTO `t_city` VALUES ('1410602', '山城区', '3', '1411', '0', '70');
INSERT INTO `t_city` VALUES ('1410603', '鹤山区', '3', '1411', '0', '70');
INSERT INTO `t_city` VALUES ('1410604', '浚县', '3', '1411', '0', '70');
INSERT INTO `t_city` VALUES ('1410605', '淇县', '3', '1411', '0', '70');
INSERT INTO `t_city` VALUES ('1410699', '其他区县', '3', '1411', '0', '70');
INSERT INTO `t_city` VALUES ('1410701', '卫滨区', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410702', '红旗区', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410703', '凤泉区', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410704', '牧野区', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410705', '卫辉市', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410706', '辉县市', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410707', '新乡县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410708', '获嘉县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410709', '原阳县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410710', '延津县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410711', '封丘县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410712', '长垣县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410799', '其他区县', '3', '1405', '0', '70');
INSERT INTO `t_city` VALUES ('1410801', '北关区', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410802', '文峰区', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410803', '殷都区', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410804', '龙安区', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410805', '林州市', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410806', '安阳县', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410807', '汤阴县', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410808', '滑县', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410809', '内黄县', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410899', '其他区县', '3', '1406', '0', '70');
INSERT INTO `t_city` VALUES ('1410901', '华龙区', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1410902', '清丰县', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1410903', '南乐县', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1410904', '范县', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1410905', '台前县', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1410906', '濮阳县', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1410999', '其他区县', '3', '1414', '0', '70');
INSERT INTO `t_city` VALUES ('1411001', '魏都区', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411002', '禹州市', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411003', '长葛市', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411004', '许昌县', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411005', '鄢陵县', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411006', '襄城县', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411099', '其他区县', '3', '1409', '0', '70');
INSERT INTO `t_city` VALUES ('1411101', '源汇区', '3', '1407', '0', '70');
INSERT INTO `t_city` VALUES ('1411102', '郾城区', '3', '1407', '0', '70');
INSERT INTO `t_city` VALUES ('1411103', '召陵区', '3', '1407', '0', '70');
INSERT INTO `t_city` VALUES ('1411104', '舞阳县', '3', '1407', '0', '70');
INSERT INTO `t_city` VALUES ('1411105', '临颍县', '3', '1407', '0', '70');
INSERT INTO `t_city` VALUES ('1411199', '其他区县', '3', '1407', '0', '70');
INSERT INTO `t_city` VALUES ('1411201', '湖滨区', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411202', '义马市', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411203', '灵宝市', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411204', '渑池县', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411205', '陕县', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411206', '卢氏县', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411299', '其他区县', '3', '1402', '0', '70');
INSERT INTO `t_city` VALUES ('1411314', '南阳油田', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411301', '卧龙区', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411302', '宛城区', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411303', '邓州市', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411304', '南召县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411305', '方城县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411306', '西峡县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411307', '镇平县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411308', '内乡县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411309', '淅川县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411310', '社旗县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411311', '唐河县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411312', '新野县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411313', '桐柏县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411399', '其他区县', '3', '1415', '0', '70');
INSERT INTO `t_city` VALUES ('1411401', '梁园区', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411402', '睢阳区', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411403', '永城市', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411404', '虞城县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411405', '民权县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411406', '宁陵县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411407', '睢县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411408', '夏邑县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411409', '柘城县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411499', '其他区县', '3', '1412', '0', '70');
INSERT INTO `t_city` VALUES ('1411601', '川汇区', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411602', '项城市', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411603', '扶沟县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411604', '西华县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411605', '商水县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411606', '太康县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411607', '鹿邑县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411608', '郸城县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411609', '淮阳县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411610', '沈丘县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411699', '其他区县', '3', '14116', '0', '70');
INSERT INTO `t_city` VALUES ('1411701', '驿城区', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411702', '确山县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411703', '泌阳县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411704', '遂平县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411705', '西平县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411706', '上蔡县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411707', '汝南县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411708', '平舆县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411709', '新蔡县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411710', '正阳县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1411799', '其他区县', '3', '1416', '0', '70');
INSERT INTO `t_city` VALUES ('1420201', '黄石港区', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420202', '西塞山区', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420203', '下陆区', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420204', '铁山区', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420205', '大冶市', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420206', '阳新县', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420299', '其他区县', '3', '1708', '0', '70');
INSERT INTO `t_city` VALUES ('1420301', '襄城区', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420302', '樊城区', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420303', '襄阳区', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420304', '老河口市', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420305', '枣阳市', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420306', '宜城市', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420307', '南漳县', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420308', '谷城县', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420309', '保康县', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420399', '其他区县', '3', '1706', '0', '70');
INSERT INTO `t_city` VALUES ('1420401', '张湾区', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420402', '茅箭区', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420403', '丹江口市', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420404', '郧县', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420405', '竹山县', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420406', '房县', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420407', '郧西县', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420408', '竹溪县', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420499', '其他区县', '3', '1702', '0', '70');
INSERT INTO `t_city` VALUES ('1420509', '城南开发区', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420501', '沙市区', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420502', '荆州区', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420503', '石首市', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420504', '洪湖市', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420505', '松滋市', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420506', '江陵县', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420507', '公安县', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420508', '监利县', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420599', '其他区县', '3', '1714', '0', '70');
INSERT INTO `t_city` VALUES ('1420701', '东宝区', '3', '1704', '0', '70');
INSERT INTO `t_city` VALUES ('1420702', '掇刀区', '3', '1704', '0', '70');
INSERT INTO `t_city` VALUES ('1420703', '钟祥市', '3', '1704', '0', '70');
INSERT INTO `t_city` VALUES ('1420704', '沙洋县', '3', '1704', '0', '70');
INSERT INTO `t_city` VALUES ('1420705', '京山县', '3', '1704', '0', '70');
INSERT INTO `t_city` VALUES ('1420799', '其他区县', '3', '1704', '0', '70');
INSERT INTO `t_city` VALUES ('1420801', '鄂城区', '3', '1710', '0', '70');
INSERT INTO `t_city` VALUES ('1420802', '梁子湖区', '3', '1710', '0', '70');
INSERT INTO `t_city` VALUES ('1420803', '华容区', '3', '1710', '0', '70');
INSERT INTO `t_city` VALUES ('1420899', '其他区县', '3', '1710', '0', '70');
INSERT INTO `t_city` VALUES ('1420901', '孝南区', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420902', '应城市', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420903', '安陆市', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420904', '汉川市', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420905', '孝昌县', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420906', '大悟县', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420907', '云梦县', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1420999', '其他区县', '3', '1705', '0', '70');
INSERT INTO `t_city` VALUES ('1421001', '黄州区', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421002', '麻城市', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1711', '武穴市', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421004', '红安县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421005', '罗田县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421006', '英山县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421007', '浠水县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421008', '蕲春县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421009', '黄梅县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421010', '团风县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421099', '其他区县', '3', '1712', '0', '70');
INSERT INTO `t_city` VALUES ('1421101', '咸安区', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421102', '赤壁市', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421103', '嘉鱼县', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421104', '通城县', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421105', '崇阳县', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421106', '通山县', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421199', '其他区县', '3', '1713', '0', '70');
INSERT INTO `t_city` VALUES ('1421201', '曾都区', '3', '14212', '0', '70');
INSERT INTO `t_city` VALUES ('1421202', '广水市', '3', '14212', '0', '70');
INSERT INTO `t_city` VALUES ('1421299', '其他区县', '3', '14212', '0', '70');
INSERT INTO `t_city` VALUES ('1421301', '恩施市', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421302', '利川市', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421303', '建始县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421304', '巴东县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421305', '宣恩县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421306', '咸丰县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421307', '来凤县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421308', '鹤峰县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1421399', '其他区县', '3', '14213', '0', '70');
INSERT INTO `t_city` VALUES ('1430101', '岳麓区', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430102', '芙蓉区', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430103', '天心区', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430104', '开福区', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430105', '雨花区', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430106', '浏阳市', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430107', '长沙县', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430108', '望城县', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430109', '宁乡县', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430199', '其他区县', '3', '1801', '0', '70');
INSERT INTO `t_city` VALUES ('1430201', '天元区', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430202', '荷塘区', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430203', '芦淞区', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430204', '石峰区', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430205', '醴陵市', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430206', '株洲县', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430207', '攸县', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430208', '茶陵县', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430209', '炎陵县', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430299', '其他区县', '3', '1811', '0', '70');
INSERT INTO `t_city` VALUES ('1430301', '岳塘区', '3', '1803', '0', '70');
INSERT INTO `t_city` VALUES ('1430302', '雨湖区', '3', '1803', '0', '70');
INSERT INTO `t_city` VALUES ('1430303', '湘乡市', '3', '1803', '0', '70');
INSERT INTO `t_city` VALUES ('1430304', '韶山市', '3', '1803', '0', '70');
INSERT INTO `t_city` VALUES ('1430305', '湘潭县', '3', '1803', '0', '70');
INSERT INTO `t_city` VALUES ('1430399', '其他区县', '3', '1803', '0', '70');
INSERT INTO `t_city` VALUES ('1430401', '雁峰区', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430402', '珠晖区', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430403', '石鼓区', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430404', '蒸湘区', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430405', '南岳区', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430406', '常宁市', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430407', '耒阳市', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430408', '衡阳县', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430409', '衡南县', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430410', '衡山县', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430411', '衡东县', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430412', '祁东县', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430499', '其他区县', '3', '1808', '0', '70');
INSERT INTO `t_city` VALUES ('1430501', '双清区', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430502', '大祥区', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430503', '北塔区', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430504', '武冈市', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430505', '邵东县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430506', '邵阳县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430507', '新邵县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430508', '隆回县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430509', '洞口县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430510', '绥宁县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430511', '新宁县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430512', '城步苗族自治县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430599', '其他区县', '3', '1810', '0', '70');
INSERT INTO `t_city` VALUES ('1430601', '岳阳楼区', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430602', '君山区', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430603', '云溪区', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430604', '汨罗市', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430605', '临湘市', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430606', '岳阳县', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430607', '华容县', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430608', '湘阴县', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430609', '平江县', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430699', '其他区县', '3', '1807', '0', '70');
INSERT INTO `t_city` VALUES ('1430701', '武陵区', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430702', '鼎城区', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430703', '津市市', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430704', '安乡县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430705', '汉寿县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430706', '澧县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430707', '临澧县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430708', '桃源县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430709', '石门县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430799', '其他区县', '3', '1805', '0', '70');
INSERT INTO `t_city` VALUES ('1430801', '永定区', '3', '1802', '0', '70');
INSERT INTO `t_city` VALUES ('1430802', '武陵源区', '3', '1802', '0', '70');
INSERT INTO `t_city` VALUES ('1430803', '慈利县', '3', '1802', '0', '70');
INSERT INTO `t_city` VALUES ('1430804', '桑植县', '3', '1802', '0', '70');
INSERT INTO `t_city` VALUES ('1430899', '其他区县', '3', '1802', '0', '70');
INSERT INTO `t_city` VALUES ('1430901', '赫山区', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1430902', '资阳区', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1430903', '沅江市', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1430904', '南县', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1430905', '桃江县', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1430906', '安化县', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1430999', '其他区县', '3', '1806', '0', '70');
INSERT INTO `t_city` VALUES ('1431001', '北湖区', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431002', '苏仙区', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431003', '资兴市', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431004', '桂阳县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431005', '永兴县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431006', '宜章县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431007', '嘉禾县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431008', '临武县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431009', '汝城县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431010', '桂东县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431011', '安仁县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431099', '其他区县', '3', '1809', '0', '70');
INSERT INTO `t_city` VALUES ('1431101', '冷水滩区', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431102', '零陵区', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431103', '东安县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431104', '道县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431105', '宁远县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431106', '江永县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431107', '蓝山县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431108', '新田县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431109', '双牌县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431110', '祁阳县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431111', '江华瑶族自治县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431199', '其他区县', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431112', '芝山区', '3', '14311', '0', '70');
INSERT INTO `t_city` VALUES ('1431201', '鹤城区', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431202', '洪江市', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431203', '沅陵县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431204', '辰溪县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431205', '溆浦县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431206', '中方县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431207', '会同县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431208', '麻阳苗族自治县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431209', '新晃侗族自治县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431210', '芷江侗族自治县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431211', '靖州苗族侗族自治县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431212', '通道侗族自治县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431299', '其他区县', '3', '1804', '0', '70');
INSERT INTO `t_city` VALUES ('1431301', '娄星区', '3', '1812', '0', '70');
INSERT INTO `t_city` VALUES ('1431302', '冷水江市', '3', '1812', '0', '70');
INSERT INTO `t_city` VALUES ('1431303', '涟源市', '3', '1812', '0', '70');
INSERT INTO `t_city` VALUES ('1431304', '双峰县', '3', '1812', '0', '70');
INSERT INTO `t_city` VALUES ('1431305', '新化县', '3', '1812', '0', '70');
INSERT INTO `t_city` VALUES ('1431399', '其他区县', '3', '1812', '0', '70');
INSERT INTO `t_city` VALUES ('1431401', '吉首市', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431402', '泸溪县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431403', '凤凰县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431404', '花垣县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431405', '保靖县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431406', '古丈县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431407', '永顺县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431408', '龙山县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1431499', '其他区县', '3', '14314', '0', '70');
INSERT INTO `t_city` VALUES ('1440108', '萝岗区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440109', '南沙区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440101', '越秀区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440102', '东山区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440103', '荔湾区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440104', '海珠区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440105', '天河区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440106', '芳村区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440107', '白云区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('535', '黄埔区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('514', '番禺区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('505', '花都区', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('519', '增城市', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('518', '从化市', '3', '5', '0', '70');
INSERT INTO `t_city` VALUES ('1440201', '福田区', '3', '7', '0', '70');
INSERT INTO `t_city` VALUES ('1440202', '罗湖区', '3', '7', '0', '70');
INSERT INTO `t_city` VALUES ('1440203', '南山区', '3', '7', '0', '70');
INSERT INTO `t_city` VALUES ('1440204', '宝安区', '3', '7', '0', '70');
INSERT INTO `t_city` VALUES ('1440205', '龙岗区', '3', '7', '0', '70');
INSERT INTO `t_city` VALUES ('1440206', '盐田区', '3', '7', '0', '70');
INSERT INTO `t_city` VALUES ('1440301', '香洲区', '3', '504', '0', '70');
INSERT INTO `t_city` VALUES ('1440302', '斗门区', '3', '504', '0', '70');
INSERT INTO `t_city` VALUES ('1440303', '金湾区', '3', '504', '0', '70');
INSERT INTO `t_city` VALUES ('1440399', '其他区县', '3', '504', '0', '70');
INSERT INTO `t_city` VALUES ('1440401', '金平区', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('1440402', '濠江区', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('1440403', '龙湖区', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('542', '潮阳区', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('560', '潮南区', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('1440406', '澄海区', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('1440407', '南澳县', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('1440499', '其他区县', '3', '507', '0', '70');
INSERT INTO `t_city` VALUES ('1440501', '浈江区', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440502', '武江区', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440503', '曲江区', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440504', '乐昌市', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440505', '南雄市', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440506', '始兴县', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440507', '仁化县', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440508', '翁源县', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440509', '新丰县', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440510', '乳源瑶族自治县', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440599', '其他区县', '3', '533', '0', '70');
INSERT INTO `t_city` VALUES ('1440601', '禅城区', '3', '521', '0', '70');
INSERT INTO `t_city` VALUES ('517', '南海区', '3', '521', '0', '70');
INSERT INTO `t_city` VALUES ('513', '顺德区', '3', '521', '0', '70');
INSERT INTO `t_city` VALUES ('527', '三水区', '3', '521', '0', '70');
INSERT INTO `t_city` VALUES ('522', '高明区', '3', '521', '0', '70');
INSERT INTO `t_city` VALUES ('1440699', '其他区县', '3', '521', '0', '70');
INSERT INTO `t_city` VALUES ('1440701', '江海区', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('1440702', '蓬江区', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('520', '新会区', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('528', '恩平市', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('524', '台山市', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('525', '开平市', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('523', '鹤山市', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('1440799', '其他区县', '3', '509', '0', '70');
INSERT INTO `t_city` VALUES ('1440801', '赤坎区', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440802', '霞山区', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440803', '坡头区', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440804', '麻章区', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440805', '吴川市', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440806', '廉江市', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440807', '雷州市', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440808', '遂溪县', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440809', '徐闻县', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440899', '其他区县', '3', '516', '0', '70');
INSERT INTO `t_city` VALUES ('1440901', '茂南区', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1440902', '茂港区', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1440903', '化州市', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1440904', '信宜市', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1440905', '高州市', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1440906', '电白县', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1440999', '其他区县', '3', '511', '0', '70');
INSERT INTO `t_city` VALUES ('1441001', '端州区', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441002', '鼎湖区', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441003', '高要市', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('526', '四会市', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441005', '广宁县', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441006', '怀集县', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441007', '封开县', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441008', '德庆县', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441099', '其他区县', '3', '534', '0', '70');
INSERT INTO `t_city` VALUES ('1441101', '惠城区', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('1441102', '惠阳区', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('543', '博罗县', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('1441104', '惠东县', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('1441105', '龙门县', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('537', '陈江', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('1441199', '其他区县', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('1441106', '大亚湾区', '3', '508', '0', '70');
INSERT INTO `t_city` VALUES ('1441201', '梅江区', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('493', '兴宁市', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('491', '梅县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('548', '大埔县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('550', '丰顺县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('552', '五华县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('554', '平远县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('492', '蕉岭县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('1441299', '其他区县', '3', '545', '0', '70');
INSERT INTO `t_city` VALUES ('1441301', '城区', '3', '529', '0', '70');
INSERT INTO `t_city` VALUES ('499', '陆丰市', '3', '529', '0', '70');
INSERT INTO `t_city` VALUES ('530', '海丰县', '3', '529', '0', '70');
INSERT INTO `t_city` VALUES ('495', '陆河县', '3', '529', '0', '70');
INSERT INTO `t_city` VALUES ('1441399', '其他区县', '3', '529', '0', '70');
INSERT INTO `t_city` VALUES ('1441501', '源城区', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('498', '紫金县', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('500', '龙川县', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('496', '连平县', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('501', '和平县', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('494', '东源县', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('1441599', '其他区县', '3', '544', '0', '70');
INSERT INTO `t_city` VALUES ('1441601', '江城区', '3', '531', '0', '70');
INSERT INTO `t_city` VALUES ('539', '阳春市', '3', '531', '0', '70');
INSERT INTO `t_city` VALUES ('532', '阳西县', '3', '531', '0', '70');
INSERT INTO `t_city` VALUES ('538', '阳东县', '3', '531', '0', '70');
INSERT INTO `t_city` VALUES ('1441699', '其他区县', '3', '531', '0', '70');
INSERT INTO `t_city` VALUES ('1441701', '清城区', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('551', '英德市', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('555', '连州市', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('549', '佛冈县', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('553', '阳山县', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('547', '清新县', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('559', '连山壮族瑶族自治县', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('557', '连南瑶族自治县', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('1441799', '其他区县', '3', '512', '0', '70');
INSERT INTO `t_city` VALUES ('1441804', '东城区', '3', '510', '0', '70');
INSERT INTO `t_city` VALUES ('1441802', '南城区', '3', '510', '0', '70');
INSERT INTO `t_city` VALUES ('1441805', '市辖镇', '3', '510', '0', '70');
INSERT INTO `t_city` VALUES ('1441801', '莞城区', '3', '510', '0', '70');
INSERT INTO `t_city` VALUES ('1441803', '万江区', '3', '510', '0', '70');
INSERT INTO `t_city` VALUES ('1441901', '东区', '3', '515', '0', '70');
INSERT INTO `t_city` VALUES ('1441905', '火炬开发区', '3', '515', '0', '70');
INSERT INTO `t_city` VALUES ('1441903', '南区', '3', '515', '0', '70');
INSERT INTO `t_city` VALUES ('1441904', '石岐区', '3', '515', '0', '70');
INSERT INTO `t_city` VALUES ('1441906', '市辖镇', '3', '515', '0', '70');
INSERT INTO `t_city` VALUES ('1441902', '西区', '3', '515', '0', '70');
INSERT INTO `t_city` VALUES ('1442001', '湘桥区', '3', '506', '0', '70');
INSERT INTO `t_city` VALUES ('1442002', '潮安县', '3', '506', '0', '70');
INSERT INTO `t_city` VALUES ('1442003', '饶平县', '3', '506', '0', '70');
INSERT INTO `t_city` VALUES ('1442099', '其他区县', '3', '506', '0', '70');
INSERT INTO `t_city` VALUES ('1442101', '榕城区', '3', '540', '0', '70');
INSERT INTO `t_city` VALUES ('541', '普宁市', '3', '540', '0', '70');
INSERT INTO `t_city` VALUES ('1442103', '揭东县', '3', '540', '0', '70');
INSERT INTO `t_city` VALUES ('1442104', '揭西县', '3', '540', '0', '70');
INSERT INTO `t_city` VALUES ('1442105', '惠来县', '3', '540', '0', '70');
INSERT INTO `t_city` VALUES ('1442199', '其他区县', '3', '540', '0', '70');
INSERT INTO `t_city` VALUES ('1442201', '云城区', '3', '546', '0', '70');
INSERT INTO `t_city` VALUES ('556', '罗定市', '3', '546', '0', '70');
INSERT INTO `t_city` VALUES ('558', '云安县', '3', '546', '0', '70');
INSERT INTO `t_city` VALUES ('503', '新兴县', '3', '546', '0', '70');
INSERT INTO `t_city` VALUES ('502', '郁南县', '3', '546', '0', '70');
INSERT INTO `t_city` VALUES ('1442299', '其他区县', '3', '546', '0', '70');
INSERT INTO `t_city` VALUES ('1450101', '青秀区', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450102', '兴宁区', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450103', '江南区', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450104', '西乡塘区', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450105', '良庆区', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450106', '邕宁区', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450107', '武鸣县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450108', '横县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450109', '宾阳县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450110', '上林县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450111', '隆安县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450112', '马山县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450199', '其他区县', '3', '2201', '0', '70');
INSERT INTO `t_city` VALUES ('1450211', '高新区', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450201', '城中区', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450202', '鱼峰区', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450203', '柳南区', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450204', '柳北区', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450205', '柳江县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450206', '柳城县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450207', '鹿寨县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450208', '融安县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450209', '三江侗族自治县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450210', '融水苗族自治县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450299', '其他区县', '3', '2203', '0', '70');
INSERT INTO `t_city` VALUES ('1450301', '象山区', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450302', '叠彩区', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450303', '秀峰区', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450304', '七星区', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450305', '雁山区', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450306', '阳朔县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450307', '临桂县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450308', '灵川县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450309', '全州县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450310', '兴安县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450311', '永福县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450312', '灌阳县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450313', '资源县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450314', '平乐县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450315', '荔浦县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450316', '龙胜各族自治县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450317', '恭城瑶族自治县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450399', '其他区县', '3', '2202', '0', '70');
INSERT INTO `t_city` VALUES ('1450401', '万秀区', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450402', '蝶山区', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450403', '长洲区', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450404', '岑溪市', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450405', '苍梧县', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450406', '藤县', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450407', '蒙山县', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450499', '其他区县', '3', '2204', '0', '70');
INSERT INTO `t_city` VALUES ('1450501', '海城区', '3', '2206', '0', '70');
INSERT INTO `t_city` VALUES ('1450502', '银海区', '3', '2206', '0', '70');
INSERT INTO `t_city` VALUES ('1450503', '铁山港区', '3', '2206', '0', '70');
INSERT INTO `t_city` VALUES ('1450504', '合浦县', '3', '2206', '0', '70');
INSERT INTO `t_city` VALUES ('1450599', '其他区县', '3', '2206', '0', '70');
INSERT INTO `t_city` VALUES ('1450601', '港口区', '3', '14506', '0', '70');
INSERT INTO `t_city` VALUES ('1450602', '防城区', '3', '14506', '0', '70');
INSERT INTO `t_city` VALUES ('1450603', '东兴市', '3', '14506', '0', '70');
INSERT INTO `t_city` VALUES ('1450604', '上思县', '3', '14506', '0', '70');
INSERT INTO `t_city` VALUES ('1450699', '其他区县', '3', '14506', '0', '70');
INSERT INTO `t_city` VALUES ('1450701', '钦南区', '3', '2205', '0', '70');
INSERT INTO `t_city` VALUES ('1450702', '钦北区', '3', '2205', '0', '70');
INSERT INTO `t_city` VALUES ('1450703', '灵山县', '3', '2205', '0', '70');
INSERT INTO `t_city` VALUES ('1450704', '浦北县', '3', '2205', '0', '70');
INSERT INTO `t_city` VALUES ('1450799', '其他区县', '3', '2205', '0', '70');
INSERT INTO `t_city` VALUES ('1450801', '港北区', '3', '14508', '0', '70');
INSERT INTO `t_city` VALUES ('1450802', '港南区', '3', '14508', '0', '70');
INSERT INTO `t_city` VALUES ('1450803', '覃塘区', '3', '14508', '0', '70');
INSERT INTO `t_city` VALUES ('1450804', '桂平市', '3', '14508', '0', '70');
INSERT INTO `t_city` VALUES ('1450805', '平南县', '3', '14508', '0', '70');
INSERT INTO `t_city` VALUES ('1450899', '其他区县', '3', '14508', '0', '70');
INSERT INTO `t_city` VALUES ('1450907', '开发区', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450901', '玉州区', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450902', '北流市', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450903', '兴业县', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450904', '容县', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450905', '陆川县', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450906', '博白县', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1450999', '其他区县', '3', '2207', '0', '70');
INSERT INTO `t_city` VALUES ('1451001', '右江区', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451002', '田阳县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451003', '田东县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451004', '平果县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451005', '德保县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451006', '靖西县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451007', '那坡县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451008', '凌云县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451009', '乐业县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451010', '西林县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451011', '田林县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451012', '隆林各族自治县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451099', '其他区县', '3', '14510', '0', '70');
INSERT INTO `t_city` VALUES ('1451101', '八步区', '3', '14511', '0', '70');
INSERT INTO `t_city` VALUES ('1451102', '昭平县', '3', '14511', '0', '70');
INSERT INTO `t_city` VALUES ('1451103', '钟山县', '3', '14511', '0', '70');
INSERT INTO `t_city` VALUES ('1451104', '富川瑶族自治县', '3', '14511', '0', '70');
INSERT INTO `t_city` VALUES ('1451199', '其他区县', '3', '14511', '0', '70');
INSERT INTO `t_city` VALUES ('1451212', '城中区', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451213', '河北区', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451201', '金城江区', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451202', '宜州市', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451203', '南丹县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451204', '天峨县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451205', '凤山县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451206', '东兰县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451207', '巴马瑶族自治县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451208', '都安瑶族自治县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451209', '大化瑶族自治县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451210', '罗城仫佬族自治县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451211', '环江毛南族自治县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451299', '其他区县', '3', '14512', '0', '70');
INSERT INTO `t_city` VALUES ('1451301', '兴宾区', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451302', '合山市', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451303', '象州县', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451304', '武宣县', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451305', '忻城县', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451306', '金秀瑶族自治县', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451399', '其他区县', '3', '14513', '0', '70');
INSERT INTO `t_city` VALUES ('1451401', '江州区', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451402', '凭祥市', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451403', '扶绥县', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451404', '大新县', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451405', '天等县', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451406', '宁明县', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451407', '龙州县', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1451499', '其他区县', '3', '14514', '0', '70');
INSERT INTO `t_city` VALUES ('1460101', '龙华区', '3', '2301', '0', '70');
INSERT INTO `t_city` VALUES ('1460102', '秀英区', '3', '2301', '0', '70');
INSERT INTO `t_city` VALUES ('1460103', '琼山区', '3', '2301', '0', '70');
INSERT INTO `t_city` VALUES ('1460104', '美兰区', '3', '2301', '0', '70');
INSERT INTO `t_city` VALUES ('1460199', '其他区县', '3', '2301', '0', '70');
INSERT INTO `t_city` VALUES ('1500141', '高新区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500101', '渝中区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500102', '大渡口区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500103', '江北区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500104', '沙坪坝区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500105', '九龙坡区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500106', '南岸区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500107', '北碚区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500108', '万盛区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500109', '双桥区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500110', '渝北区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500111', '巴南区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500112', '万州区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500113', '涪陵区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500114', '黔江区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500115', '长寿区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500116', '江津区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500117', '合川区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500118', '永川区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500119', '南川区', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500120', '綦江县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500121', '潼南县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500122', '铜梁县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500123', '大足县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500124', '荣昌县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500125', '璧山县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500126', '垫江县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500127', '武隆县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500128', '丰都县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500129', '城口县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500130', '梁平县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500131', '开县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500132', '巫溪县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500133', '巫山县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500134', '奉节县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500135', '云阳县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500136', '忠县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500137', '石柱县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500138', '彭水县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500139', '酉阳县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500140', '秀山县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1500199', '其他区县', '3', '150', '0', '70');
INSERT INTO `t_city` VALUES ('1510120', '高新区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510101', '青羊区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510102', '锦江区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510103', '金牛区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510104', '武侯区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510105', '成华区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510106', '龙泉驿区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510107', '青白江区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510108', '新都区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510109', '温江区', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('3004', '都江堰市', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('3003', '彭州市', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510112', '邛崃市', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510113', '崇州市', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510114', '金堂县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510115', '双流县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510116', '郫县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510117', '大邑县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510118', '蒲江县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510119', '新津县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510199', '其他区县', '3', '3001', '0', '70');
INSERT INTO `t_city` VALUES ('1510201', '自流井区', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510202', '大安区', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510203', '贡井区', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510204', '沿滩区', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510205', '荣县', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510206', '富顺县', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510299', '其他区县', '3', '3010', '0', '70');
INSERT INTO `t_city` VALUES ('1510301', '东区', '3', '15103', '0', '70');
INSERT INTO `t_city` VALUES ('1510302', '西区', '3', '15103', '0', '70');
INSERT INTO `t_city` VALUES ('1510303', '仁和区', '3', '15103', '0', '70');
INSERT INTO `t_city` VALUES ('1510304', '米易县', '3', '15103', '0', '70');
INSERT INTO `t_city` VALUES ('1510305', '盐边县', '3', '15103', '0', '70');
INSERT INTO `t_city` VALUES ('1510399', '其他区县', '3', '15103', '0', '70');
INSERT INTO `t_city` VALUES ('1510401', '江阳区', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510402', '纳溪区', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510403', '龙马潭区', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510404', '泸县', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510405', '合江县', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510406', '叙永县', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510407', '古蔺县', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510499', '其他区县', '3', '3009', '0', '70');
INSERT INTO `t_city` VALUES ('1510501', '旌阳区', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510502', '什邡市', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510503', '广汉市', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510504', '绵竹市', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510505', '罗江县', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510506', '中江县', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510599', '其他区县', '3', '3005', '0', '70');
INSERT INTO `t_city` VALUES ('1510601', '涪城区', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510602', '游仙区', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510603', '江油市', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510604', '三台县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510605', '盐亭县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510606', '安县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510607', '梓潼县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510608', '平武县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510609', '北川羌族自治县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510699', '其他区县', '3', '3007', '0', '70');
INSERT INTO `t_city` VALUES ('1510701', '利州区', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510702', '元坝区', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510703', '朝天区', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510704', '旺苍县', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510705', '青川县', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510706', '剑阁县', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510707', '苍溪县', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510799', '其他区县', '3', '3013', '0', '70');
INSERT INTO `t_city` VALUES ('1510801', '船山区', '3', '15108', '0', '70');
INSERT INTO `t_city` VALUES ('1510802', '安居区', '3', '15108', '0', '70');
INSERT INTO `t_city` VALUES ('1510803', '蓬溪县', '3', '15108', '0', '70');
INSERT INTO `t_city` VALUES ('1510804', '射洪县', '3', '15108', '0', '70');
INSERT INTO `t_city` VALUES ('1510805', '大英县', '3', '15108', '0', '70');
INSERT INTO `t_city` VALUES ('1510899', '其他区县', '3', '15108', '0', '70');
INSERT INTO `t_city` VALUES ('1510901', '市中区', '3', '15109', '0', '70');
INSERT INTO `t_city` VALUES ('1510902', '东兴区', '3', '15109', '0', '70');
INSERT INTO `t_city` VALUES ('1510903', '威远县', '3', '15109', '0', '70');
INSERT INTO `t_city` VALUES ('1510904', '资中县', '3', '15109', '0', '70');
INSERT INTO `t_city` VALUES ('1510905', '隆昌县', '3', '15109', '0', '70');
INSERT INTO `t_city` VALUES ('1510999', '其他区县', '3', '15109', '0', '70');
INSERT INTO `t_city` VALUES ('1511001', '市中区', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511002', '沙湾区', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511003', '五通桥区', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511004', '金口河区', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('3011', '峨眉山市', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511006', '犍为县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511007', '井研县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511008', '夹江县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511009', '沐川县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511010', '峨边彝族自治县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511011', '马边彝族自治县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511099', '其他区县', '3', '3012', '0', '70');
INSERT INTO `t_city` VALUES ('1511101', '顺庆区', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511102', '高坪区', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511103', '嘉陵区', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511104', '阆中市', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511105', '南部县', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511106', '营山县', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511107', '蓬安县', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511108', '仪陇县', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511109', '西充县', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511199', '其他区县', '3', '3008', '0', '70');
INSERT INTO `t_city` VALUES ('1511201', '翠屏区', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511202', '宜宾县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511203', '南溪县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511204', '江安县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511205', '长宁县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511206', '高县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511207', '筠连县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511208', '珙县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511209', '兴文县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511210', '屏山县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511299', '其他区县', '3', '15112', '0', '70');
INSERT INTO `t_city` VALUES ('1511301', '广安区', '3', '15113', '0', '70');
INSERT INTO `t_city` VALUES ('1511302', '华蓥市', '3', '15113', '0', '70');
INSERT INTO `t_city` VALUES ('1511303', '岳池县', '3', '15113', '0', '70');
INSERT INTO `t_city` VALUES ('1511304', '武胜县', '3', '15113', '0', '70');
INSERT INTO `t_city` VALUES ('1511305', '邻水县', '3', '15113', '0', '70');
INSERT INTO `t_city` VALUES ('1511399', '其他区县', '3', '15113', '0', '70');
INSERT INTO `t_city` VALUES ('1511401', '通川区', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511402', '万源市', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511403', '达县', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511404', '宣汉县', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511405', '开江县', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511406', '大竹县', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511407', '渠县', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511499', '其他区县', '3', '15114', '0', '70');
INSERT INTO `t_city` VALUES ('1511501', '东坡区', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511502', '仁寿县', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511503', '彭山县', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511504', '洪雅县', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511505', '丹棱县', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511506', '青神县', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511599', '其他区县', '3', '15115', '0', '70');
INSERT INTO `t_city` VALUES ('1511601', '雨城区', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511602', '名山县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511603', '荥经县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511604', '汉源县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511605', '石棉县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511606', '天全县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511607', '芦山县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511608', '宝兴县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511699', '其他区县', '3', '15116', '0', '70');
INSERT INTO `t_city` VALUES ('1511701', '巴州区', '3', '15117', '0', '70');
INSERT INTO `t_city` VALUES ('1511702', '通江县', '3', '15117', '0', '70');
INSERT INTO `t_city` VALUES ('1511703', '南江县', '3', '15117', '0', '70');
INSERT INTO `t_city` VALUES ('1511704', '平昌县', '3', '15117', '0', '70');
INSERT INTO `t_city` VALUES ('1511799', '其他区县', '3', '15117', '0', '70');
INSERT INTO `t_city` VALUES ('1511801', '雁江区', '3', '15118', '0', '70');
INSERT INTO `t_city` VALUES ('1511802', '简阳市', '3', '15118', '0', '70');
INSERT INTO `t_city` VALUES ('1511803', '乐至县', '3', '15118', '0', '70');
INSERT INTO `t_city` VALUES ('1511804', '安岳县', '3', '15118', '0', '70');
INSERT INTO `t_city` VALUES ('1511899', '其他区县', '3', '15118', '0', '70');
INSERT INTO `t_city` VALUES ('1511901', '马尔康县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511902', '汶川县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511903', '理县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511904', '茂县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511905', '松潘县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511906', '九寨沟县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511907', '金川县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511908', '小金县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511909', '黑水县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511910', '壤塘县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511911', '阿坝县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511912', '若尔盖县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511913', '红原县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1511999', '其他区县', '3', '15119', '0', '70');
INSERT INTO `t_city` VALUES ('1512001', '康定县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512002', '泸定县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512003', '丹巴县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512004', '九龙县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512005', '雅江县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512006', '道孚县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512007', '炉霍县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512008', '甘孜县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512009', '新龙县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512010', '德格县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512011', '白玉县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512012', '石渠县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512013', '色达县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512014', '理塘县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512015', '巴塘县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512016', '乡城县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512017', '稻城县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512018', '得荣县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('1512099', '其他区县', '3', '15120', '0', '70');
INSERT INTO `t_city` VALUES ('3006', '西昌市', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512102', '盐源县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512103', '德昌县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512104', '会理县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512105', '会东县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512106', '宁南县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512107', '普格县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512108', '布拖县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512109', '金阳县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512110', '昭觉县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512111', '喜德县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512112', '冕宁县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512113', '越西县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512114', '甘洛县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512115', '美姑县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512116', '雷波县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512117', '木里藏族自治县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1512199', '其他区县', '3', '15121', '0', '70');
INSERT INTO `t_city` VALUES ('1520101', '乌当区', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520102', '南明区', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520103', '云岩区', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520104', '花溪区', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520105', '白云区', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520106', '小河区', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520107', '清镇市', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520108', '开阳县', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520109', '修文县', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520110', '息烽县', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520199', '其他区县', '3', '2501', '0', '70');
INSERT INTO `t_city` VALUES ('1520201', '钟山区', '3', '2502', '0', '70');
INSERT INTO `t_city` VALUES ('1520202', '盘县', '3', '2502', '0', '70');
INSERT INTO `t_city` VALUES ('1520203', '水城县', '3', '2502', '0', '70');
INSERT INTO `t_city` VALUES ('1520204', '六枝特区', '3', '2502', '0', '70');
INSERT INTO `t_city` VALUES ('1520299', '其他区县', '3', '2502', '0', '70');
INSERT INTO `t_city` VALUES ('1520301', '红花岗区', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520302', '汇川区', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520303', '赤水市', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520304', '仁怀市', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520305', '遵义县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520306', '桐梓县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520307', '绥阳县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520308', '正安县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520309', '凤冈县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520310', '湄潭县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520311', '余庆县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520312', '习水县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520313', '道真仡佬族苗族自治县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520314', '务川仡佬族苗族自治县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520399', '其他区县', '3', '2503', '0', '70');
INSERT INTO `t_city` VALUES ('1520401', '西秀区', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520402', '平坝县', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520403', '普定县', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520404', '关岭布依族苗族自治县', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520405', '镇宁布依族苗族自治县', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520406', '紫云苗族布依族自治县', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520499', '其他区县', '3', '2504', '0', '70');
INSERT INTO `t_city` VALUES ('1520501', '铜仁市', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520502', '江口县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520503', '石阡县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520504', '思南县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520505', '德江县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520506', '玉屏侗族自治县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520507', '印江土家族苗族自治县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520508', '沿河土家族自治县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520509', '松桃苗族自治县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520510', '万山特区', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('1520599', '其他区县', '3', '15205', '0', '70');
INSERT INTO `t_city` VALUES ('2506', '毕节市', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520602', '大方县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520603', '黔西县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520604', '金沙县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520605', '织金县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520606', '纳雍县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520607', '赫章县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520608', '威宁彝族回族苗族自治县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520699', '其他区县', '3', '2505', '0', '70');
INSERT INTO `t_city` VALUES ('1520701', '兴义市', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520702', '兴仁县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520703', '普安县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520704', '晴隆县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520705', '贞丰县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520706', '望谟县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520707', '册亨县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520708', '安龙县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520799', '其他区县', '3', '15207', '0', '70');
INSERT INTO `t_city` VALUES ('1520801', '凯里市', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520802', '黄平县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520803', '施秉县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520804', '三穗县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520805', '镇远县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520806', '岑巩县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520807', '天柱县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520808', '锦屏县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520809', '剑河县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520810', '台江县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520811', '黎平县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520812', '榕江县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520813', '从江县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520814', '雷山县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520815', '麻江县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520816', '丹寨县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520899', '其他区县', '3', '15208', '0', '70');
INSERT INTO `t_city` VALUES ('1520901', '都匀市', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520902', '福泉市', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520903', '荔波县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520904', '贵定县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520905', '瓮安县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520906', '独山县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520907', '平塘县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520908', '罗甸县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520909', '长顺县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520910', '龙里县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520911', '惠水县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520912', '三都水族自治县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1520999', '其他区县', '3', '15209', '0', '70');
INSERT INTO `t_city` VALUES ('1530101', '盘龙区', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530102', '五华区', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530103', '官渡区', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530104', '西山区', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530105', '东川区', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530106', '安宁市', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530107', '呈贡县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530108', '晋宁县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530109', '富民县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530110', '宜良县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530111', '嵩明县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530112', '石林彝族自治县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530113', '禄劝彝族苗族自治县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530114', '寻甸回族彝族自治县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530199', '其他区县', '3', '2401', '0', '70');
INSERT INTO `t_city` VALUES ('1530201', '麒麟区', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530202', '宣威市', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530203', '马龙县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530204', '沾益县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530205', '富源县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530206', '罗平县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530207', '师宗县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530208', '陆良县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530209', '会泽县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530299', '其他区县', '3', '2402', '0', '70');
INSERT INTO `t_city` VALUES ('1530401', '红塔区', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530402', '江川县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530403', '澄江县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530404', '通海县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530405', '华宁县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530406', '易门县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530407', '峨山彝族自治县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530408', '新平彝族傣族自治县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530409', '元江哈尼族彝族傣族自治县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530499', '其他区县', '3', '2403', '0', '70');
INSERT INTO `t_city` VALUES ('1530501', '隆阳区', '3', '2404', '0', '70');
INSERT INTO `t_city` VALUES ('1530502', '施甸县', '3', '2404', '0', '70');
INSERT INTO `t_city` VALUES ('1530503', '腾冲县', '3', '2404', '0', '70');
INSERT INTO `t_city` VALUES ('1530504', '龙陵县', '3', '2404', '0', '70');
INSERT INTO `t_city` VALUES ('1530505', '昌宁县', '3', '2404', '0', '70');
INSERT INTO `t_city` VALUES ('1530599', '其他区县', '3', '2404', '0', '70');
INSERT INTO `t_city` VALUES ('1530601', '昭阳区', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530602', '鲁甸县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530603', '巧家县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530604', '盐津县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530605', '大关县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530606', '永善县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530607', '绥江县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530608', '镇雄县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530609', '彝良县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530610', '威信县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530611', '水富县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530699', '其他区县', '3', '15306', '0', '70');
INSERT INTO `t_city` VALUES ('1530701', '古城区', '3', '2405', '0', '70');
INSERT INTO `t_city` VALUES ('1530702', '永胜县', '3', '2405', '0', '70');
INSERT INTO `t_city` VALUES ('1530703', '华坪县', '3', '2405', '0', '70');
INSERT INTO `t_city` VALUES ('1530704', '玉龙纳西族自治县', '3', '2405', '0', '70');
INSERT INTO `t_city` VALUES ('1530705', '宁蒗彝族自治县', '3', '2405', '0', '70');
INSERT INTO `t_city` VALUES ('1530799', '其他区县', '3', '2405', '0', '70');
INSERT INTO `t_city` VALUES ('1530801', '思茅区', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530802', '宁洱哈尼族彝族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530803', '墨江哈尼族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530804', '景东彝族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530805', '景谷傣族彝族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530806', '镇沅彝族哈尼族拉祜族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530807', '江城哈尼族彝族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530808', '孟连傣族拉祜族佤族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530809', '澜沧拉祜族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530810', '西盟佤族自治县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530899', '其他区县', '3', '15308', '0', '70');
INSERT INTO `t_city` VALUES ('1530901', '临翔区', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530902', '凤庆县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530903', '云县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530904', '永德县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530905', '镇康县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530906', '双江拉祜族佤族布朗族傣族自治县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530907', '耿马傣族佤族自治县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530908', '沧源佤族自治县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1530999', '其他区县', '3', '15309', '0', '70');
INSERT INTO `t_city` VALUES ('1531001', '文山县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531002', '砚山县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531003', '西畴县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531004', '麻栗坡县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531005', '马关县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531006', '丘北县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531007', '广南县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531008', '富宁县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531099', '其他区县', '3', '15310', '0', '70');
INSERT INTO `t_city` VALUES ('1531101', '蒙自县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531102', '个旧市', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531103', '开远市', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531104', '绿春县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531105', '建水县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531106', '石屏县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531107', '弥勒县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531108', '泸西县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531109', '元阳县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531110', '红河县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531111', '金平苗族瑶族傣族自治县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531112', '河口瑶族自治县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531113', '屏边苗族自治县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531199', '其他区县', '3', '15311', '0', '70');
INSERT INTO `t_city` VALUES ('1531201', '景洪市', '3', '15312', '0', '70');
INSERT INTO `t_city` VALUES ('1531202', '勐海县', '3', '15312', '0', '70');
INSERT INTO `t_city` VALUES ('1531203', '勐腊县', '3', '15312', '0', '70');
INSERT INTO `t_city` VALUES ('1531299', '其他区县', '3', '15312', '0', '70');
INSERT INTO `t_city` VALUES ('1531301', '楚雄市', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531302', '双柏县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531303', '牟定县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531304', '南华县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531305', '姚安县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531306', '大姚县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531307', '永仁县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531308', '元谋县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531309', '武定县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531310', '禄丰县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531399', '其他区县', '3', '15313', '0', '70');
INSERT INTO `t_city` VALUES ('1531401', '大理市', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531402', '祥云县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531403', '宾川县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531404', '弥渡县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531405', '永平县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531406', '云龙县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531407', '洱源县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531408', '剑川县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531409', '鹤庆县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531410', '漾濞彝族自治县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531411', '南涧彝族自治县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531412', '巍山彝族回族自治县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531499', '其他区县', '3', '15314', '0', '70');
INSERT INTO `t_city` VALUES ('1531501', '潞西市', '3', '15315', '0', '70');
INSERT INTO `t_city` VALUES ('1531502', '瑞丽市', '3', '15315', '0', '70');
INSERT INTO `t_city` VALUES ('1531503', '梁河县', '3', '15315', '0', '70');
INSERT INTO `t_city` VALUES ('1531504', '盈江县', '3', '15315', '0', '70');
INSERT INTO `t_city` VALUES ('1531505', '陇川县', '3', '15315', '0', '70');
INSERT INTO `t_city` VALUES ('1531599', '其他区县', '3', '15315', '0', '70');
INSERT INTO `t_city` VALUES ('1531601', '泸水县', '3', '15316', '0', '70');
INSERT INTO `t_city` VALUES ('1531602', '福贡县', '3', '15316', '0', '70');
INSERT INTO `t_city` VALUES ('1531603', '贡山独龙族怒族自治县', '3', '15316', '0', '70');
INSERT INTO `t_city` VALUES ('1531604', '兰坪白族普米族自治县', '3', '15316', '0', '70');
INSERT INTO `t_city` VALUES ('1531699', '其他区县', '3', '15316', '0', '70');
INSERT INTO `t_city` VALUES ('1531701', '香格里拉县', '3', '15317', '0', '70');
INSERT INTO `t_city` VALUES ('1531702', '德钦县', '3', '15317', '0', '70');
INSERT INTO `t_city` VALUES ('1531703', '维西傈僳族自治县', '3', '15317', '0', '70');
INSERT INTO `t_city` VALUES ('1531799', '其他区县', '3', '15317', '0', '70');
INSERT INTO `t_city` VALUES ('1540101', '城关区', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540102', '林周县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540103', '当雄县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540104', '尼木县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540105', '曲水县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540106', '堆龙德庆县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540107', '达孜县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540108', '墨竹工卡县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540199', '其他区县', '3', '2901', '0', '70');
INSERT INTO `t_city` VALUES ('1540201', '昌都县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540202', '江达县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540203', '贡觉县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540204', '类乌齐县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540205', '丁青县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540206', '察雅县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540207', '八宿县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540208', '左贡县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540209', '芒康县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540210', '洛隆县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540211', '边坝县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540299', '其他区县', '3', '2903', '0', '70');
INSERT INTO `t_city` VALUES ('1540301', '乃东县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540302', '扎囊县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540303', '贡嘎县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540304', '桑日县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540305', '琼结县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540306', '曲松县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540307', '措美县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540308', '洛扎县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540309', '加查县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540310', '隆子县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540311', '错那县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540312', '浪卡子县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540399', '其他区县', '3', '2905', '0', '70');
INSERT INTO `t_city` VALUES ('1540401', '日喀则市', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540402', '南木林县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540403', '江孜县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540404', '定日县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540405', '萨迦县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540406', '拉孜县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540407', '昂仁县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540408', '谢通门县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540409', '白朗县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540410', '仁布县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540411', '康马县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540412', '定结县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540413', '仲巴县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540414', '亚东县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540415', '吉隆县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540416', '聂拉木县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540417', '萨嘎县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540418', '岗巴县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540499', '其他区县', '3', '15404', '0', '70');
INSERT INTO `t_city` VALUES ('1540501', '那曲县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540502', '嘉黎县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540503', '比如县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540504', '聂荣县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540505', '安多县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540506', '申扎县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540507', '索县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540508', '班戈县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540509', '巴青县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540510', '尼玛县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540599', '其他区县', '3', '2902', '0', '70');
INSERT INTO `t_city` VALUES ('1540601', '噶尔县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540602', '普兰县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540603', '札达县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540604', '日土县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540605', '革吉县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540606', '改则县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540607', '措勤县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540699', '其他区县', '3', '15406', '0', '70');
INSERT INTO `t_city` VALUES ('1540701', '林芝县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540702', '工布江达县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540703', '米林县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540704', '墨脱县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540705', '波密县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540706', '察隅县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540707', '朗县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1540799', '其他区县', '3', '2904', '0', '70');
INSERT INTO `t_city` VALUES ('1610114', '高新技术产业开发区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610101', '未央区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610102', '莲湖区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610103', '新城区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610104', '碑林区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610105', '灞桥区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610106', '雁塔区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610107', '阎良区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610108', '临潼区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610109', '长安区', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610110', '蓝田县', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610111', '周至县', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610112', '户县', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610113', '高陵县', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610199', '其他区县', '3', '20', '0', '70');
INSERT INTO `t_city` VALUES ('1610201', '耀州区', '3', '1309', '0', '70');
INSERT INTO `t_city` VALUES ('1610202', '王益区', '3', '1309', '0', '70');
INSERT INTO `t_city` VALUES ('1610203', '印台区', '3', '1309', '0', '70');
INSERT INTO `t_city` VALUES ('1610204', '宜君县', '3', '1309', '0', '70');
INSERT INTO `t_city` VALUES ('1610299', '其他区县', '3', '1309', '0', '70');
INSERT INTO `t_city` VALUES ('1610301', '渭滨区', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610302', '金台区', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610303', '陈仓区', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610304', '凤翔县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610305', '岐山县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610306', '扶风县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610307', '眉县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610308', '陇县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610309', '千阳县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610310', '麟游县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610311', '凤县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610312', '太白县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610399', '其他区县', '3', '1307', '0', '70');
INSERT INTO `t_city` VALUES ('1610401', '秦都区', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610402', '杨陵区', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610403', '渭城区', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610404', '兴平市', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610405', '三原县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610406', '泾阳县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610407', '乾县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610408', '礼泉县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610409', '永寿县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610410', '彬县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610411', '长武县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610412', '旬邑县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610413', '淳化县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610414', '武功县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610499', '其他区县', '3', '1302', '0', '70');
INSERT INTO `t_city` VALUES ('1610501', '临渭区', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610502', '华阴市', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610503', '韩城市', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1310', '华县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610505', '潼关县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610506', '大荔县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610507', '蒲城县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610508', '澄城县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610509', '白水县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610510', '合阳县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610511', '富平县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610599', '其他区县', '3', '1305', '0', '70');
INSERT INTO `t_city` VALUES ('1610601', '宝塔区', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610602', '延长县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610603', '延川县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610604', '子长县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610605', '安塞县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610606', '志丹县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610607', '吴起县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610608', '甘泉县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610609', '富县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610610', '洛川县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610611', '宜川县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610612', '黄龙县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610613', '黄陵县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610699', '其他区县', '3', '1306', '0', '70');
INSERT INTO `t_city` VALUES ('1610701', '汉台区', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610702', '南郑县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610703', '城固县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610704', '洋县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610705', '西乡县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610706', '勉县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610707', '宁强县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610708', '略阳县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610709', '镇巴县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610710', '留坝县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610711', '佛坪县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610799', '其他区县', '3', '1308', '0', '70');
INSERT INTO `t_city` VALUES ('1610801', '榆阳区', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610802', '神木县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610803', '府谷县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610804', '横山县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610805', '靖边县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610806', '定边县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610807', '绥德县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610808', '米脂县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610809', '佳县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610810', '吴堡县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610811', '清涧县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610812', '子洲县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610899', '其他区县', '3', '1303', '0', '70');
INSERT INTO `t_city` VALUES ('1610901', '汉滨区', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610902', '汉阴县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610903', '石泉县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610904', '宁陕县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610905', '紫阳县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610906', '岚皋县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610907', '平利县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610908', '镇坪县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610909', '旬阳县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610910', '白河县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1610999', '其他区县', '3', '1304', '0', '70');
INSERT INTO `t_city` VALUES ('1611001', '商州区', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611002', '洛南县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611003', '丹凤县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611004', '商南县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611005', '山阳县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611006', '镇安县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611007', '柞水县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1611099', '其他区县', '3', '16110', '0', '70');
INSERT INTO `t_city` VALUES ('1620101', '城关区', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620102', '七里河区', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620103', '西固区', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620104', '安宁区', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620105', '红古区', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620106', '永登县', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620107', '皋兰县', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620108', '榆中县', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620199', '其他区县', '3', '2701', '0', '70');
INSERT INTO `t_city` VALUES ('1620301', '金川区', '3', '2703', '0', '70');
INSERT INTO `t_city` VALUES ('1620302', '永昌县', '3', '2703', '0', '70');
INSERT INTO `t_city` VALUES ('1620399', '其他区县', '3', '2703', '0', '70');
INSERT INTO `t_city` VALUES ('1620401', '白银区', '3', '16204', '0', '70');
INSERT INTO `t_city` VALUES ('1620402', '平川区', '3', '16204', '0', '70');
INSERT INTO `t_city` VALUES ('1620403', '靖远县', '3', '16204', '0', '70');
INSERT INTO `t_city` VALUES ('1620404', '会宁县', '3', '16204', '0', '70');
INSERT INTO `t_city` VALUES ('1620405', '景泰县', '3', '16204', '0', '70');
INSERT INTO `t_city` VALUES ('1620499', '其他区县', '3', '16204', '0', '70');
INSERT INTO `t_city` VALUES ('1620501', '秦州区', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620502', '麦积区', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620503', '清水县', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620504', '秦安县', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620505', '甘谷县', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620506', '武山县', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620507', '张家川回族自治县', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620599', '其他区县', '3', '2704', '0', '70');
INSERT INTO `t_city` VALUES ('1620601', '凉州区', '3', '16206', '0', '70');
INSERT INTO `t_city` VALUES ('1620602', '民勤县', '3', '16206', '0', '70');
INSERT INTO `t_city` VALUES ('1620603', '古浪县', '3', '16206', '0', '70');
INSERT INTO `t_city` VALUES ('1620604', '天祝藏族自治县', '3', '16206', '0', '70');
INSERT INTO `t_city` VALUES ('1620699', '其他区县', '3', '16206', '0', '70');
INSERT INTO `t_city` VALUES ('1620701', '甘州区', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620702', '民乐县', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620703', '临泽县', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620704', '高台县', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620705', '山丹县', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620706', '肃南裕固族自治县', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620799', '其他区县', '3', '16207', '0', '70');
INSERT INTO `t_city` VALUES ('1620801', '崆峒区', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620802', '泾川县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620803', '灵台县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620804', '崇信县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620805', '华亭县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620806', '庄浪县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620807', '静宁县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620899', '其他区县', '3', '16208', '0', '70');
INSERT INTO `t_city` VALUES ('1620901', '肃州区', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620902', '玉门市', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620903', '敦煌市', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620904', '金塔县', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620905', '瓜州县', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620906', '肃北蒙古族自治县', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620907', '阿克塞哈萨克族自治县', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1620999', '其他区县', '3', '2706', '0', '70');
INSERT INTO `t_city` VALUES ('1621001', '西峰区', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621002', '庆城县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621003', '环县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621004', '华池县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621005', '合水县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621006', '正宁县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621007', '宁县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621008', '镇原县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621099', '其他区县', '3', '16210', '0', '70');
INSERT INTO `t_city` VALUES ('1621101', '安定区', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621102', '通渭县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621103', '临洮县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621104', '漳县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621105', '岷县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621106', '渭源县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621107', '陇西县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621199', '其他区县', '3', '16211', '0', '70');
INSERT INTO `t_city` VALUES ('1621201', '武都区', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621202', '成县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621203', '宕昌县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621204', '康县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621205', '文县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621206', '西和县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621207', '礼县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621208', '两当县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621209', '徽县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621299', '其他区县', '3', '16212', '0', '70');
INSERT INTO `t_city` VALUES ('1621301', '临夏市', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621302', '临夏县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621303', '康乐县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621304', '永靖县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621305', '广河县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621306', '和政县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621307', '东乡族自治县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621308', '积石山保安族东乡族撒拉族自治县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621399', '其他区县', '3', '16213', '0', '70');
INSERT INTO `t_city` VALUES ('1621401', '合作市', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621402', '临潭县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621403', '卓尼县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621404', '舟曲县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621405', '迭部县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621406', '玛曲县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621407', '碌曲县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621408', '夏河县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1621499', '其他区县', '3', '16214', '0', '70');
INSERT INTO `t_city` VALUES ('1630101', '城中区', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630102', '城东区', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630103', '城西区', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630104', '城北区', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630105', '湟源县', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630106', '湟中县', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630107', '大通回族土族自治县', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630199', '其他区县', '3', '3101', '0', '70');
INSERT INTO `t_city` VALUES ('1630201', '平安县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630202', '乐都县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630203', '民和回族土族自治县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630204', '互助土族自治县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630205', '化隆回族自治县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630206', '循化撒拉族自治县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630299', '其他区县', '3', '3102', '0', '70');
INSERT INTO `t_city` VALUES ('1630301', '海晏县', '3', '3103', '0', '70');
INSERT INTO `t_city` VALUES ('1630302', '祁连县', '3', '3103', '0', '70');
INSERT INTO `t_city` VALUES ('1630303', '刚察县', '3', '3103', '0', '70');
INSERT INTO `t_city` VALUES ('1630304', '门源回族自治县', '3', '3103', '0', '70');
INSERT INTO `t_city` VALUES ('1630399', '其他区县', '3', '3103', '0', '70');
INSERT INTO `t_city` VALUES ('1630401', '同仁县', '3', '3105', '0', '70');
INSERT INTO `t_city` VALUES ('1630402', '尖扎县', '3', '3105', '0', '70');
INSERT INTO `t_city` VALUES ('1630403', '泽库县', '3', '3105', '0', '70');
INSERT INTO `t_city` VALUES ('1630404', '河南蒙古族自治县', '3', '3105', '0', '70');
INSERT INTO `t_city` VALUES ('1630499', '其他区县', '3', '3105', '0', '70');
INSERT INTO `t_city` VALUES ('1630501', '共和县', '3', '3104', '0', '70');
INSERT INTO `t_city` VALUES ('1630502', '同德县', '3', '3104', '0', '70');
INSERT INTO `t_city` VALUES ('1630503', '贵德县', '3', '3104', '0', '70');
INSERT INTO `t_city` VALUES ('1630504', '兴海县', '3', '3104', '0', '70');
INSERT INTO `t_city` VALUES ('1630505', '贵南县', '3', '3104', '0', '70');
INSERT INTO `t_city` VALUES ('1630599', '其他区县', '3', '3104', '0', '70');
INSERT INTO `t_city` VALUES ('1630601', '玛沁县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630602', '班玛县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630603', '甘德县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630604', '达日县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630605', '久治县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630606', '玛多县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630699', '其他区县', '3', '16306', '0', '70');
INSERT INTO `t_city` VALUES ('1630701', '玉树县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630702', '杂多县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630703', '称多县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630704', '治多县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630705', '囊谦县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630706', '曲麻莱县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630799', '其他区县', '3', '16307', '0', '70');
INSERT INTO `t_city` VALUES ('1630801', '德令哈市', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630802', '格尔木市', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630803', '乌兰县', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630804', '都兰县', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630805', '天峻县', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630806', '冷湖行委', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630807', '大柴旦行委', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630808', '茫崖行委', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1630899', '其他区县', '3', '16308', '0', '70');
INSERT INTO `t_city` VALUES ('1640101', '兴庆区', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640102', '金凤区', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640103', '西夏区', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640104', '灵武市', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640105', '永宁县', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640106', '贺兰县', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640199', '其他区县', '3', '2801', '0', '70');
INSERT INTO `t_city` VALUES ('1640201', '大武口区', '3', '2802', '0', '70');
INSERT INTO `t_city` VALUES ('1640202', '惠农区', '3', '2802', '0', '70');
INSERT INTO `t_city` VALUES ('1640203', '平罗县', '3', '2802', '0', '70');
INSERT INTO `t_city` VALUES ('1640299', '其他区县', '3', '2802', '0', '70');
INSERT INTO `t_city` VALUES ('1640301', '利通区', '3', '2803', '0', '70');
INSERT INTO `t_city` VALUES ('1640302', '青铜峡市', '3', '2803', '0', '70');
INSERT INTO `t_city` VALUES ('1640303', '盐池县', '3', '2803', '0', '70');
INSERT INTO `t_city` VALUES ('1640304', '同心县', '3', '2803', '0', '70');
INSERT INTO `t_city` VALUES ('1640399', '其他区县', '3', '2803', '0', '70');
INSERT INTO `t_city` VALUES ('1640401', '原州区', '3', '2804', '0', '70');
INSERT INTO `t_city` VALUES ('1640402', '西吉县', '3', '2804', '0', '70');
INSERT INTO `t_city` VALUES ('1640403', '隆德县', '3', '2804', '0', '70');
INSERT INTO `t_city` VALUES ('1640404', '泾源县', '3', '2804', '0', '70');
INSERT INTO `t_city` VALUES ('1640405', '彭阳县', '3', '2804', '0', '70');
INSERT INTO `t_city` VALUES ('1640499', '其他区县', '3', '2804', '0', '70');
INSERT INTO `t_city` VALUES ('1640501', '沙坡头区', '3', '16405', '0', '70');
INSERT INTO `t_city` VALUES ('1640502', '中宁县', '3', '16405', '0', '70');
INSERT INTO `t_city` VALUES ('1640503', '海原县', '3', '16405', '0', '70');
INSERT INTO `t_city` VALUES ('1640599', '其他区县', '3', '16405', '0', '70');
INSERT INTO `t_city` VALUES ('1650101', '天山区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650102', '沙依巴克区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650103', '新市区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650104', '水磨沟区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650105', '头屯河区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650106', '达坂城区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650107', '米东区', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650108', '乌鲁木齐县', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650199', '其他区县', '3', '2601', '0', '70');
INSERT INTO `t_city` VALUES ('1650201', '克拉玛依区', '3', '2613', '0', '70');
INSERT INTO `t_city` VALUES ('1650202', '独山子区', '3', '2613', '0', '70');
INSERT INTO `t_city` VALUES ('1650203', '白碱滩区', '3', '2613', '0', '70');
INSERT INTO `t_city` VALUES ('1650204', '乌尔禾区', '3', '2613', '0', '70');
INSERT INTO `t_city` VALUES ('1650299', '其他区县', '3', '2613', '0', '70');
INSERT INTO `t_city` VALUES ('2614', '吐鲁番市', '3', '16503', '0', '70');
INSERT INTO `t_city` VALUES ('1650302', '鄯善县', '3', '16503', '0', '70');
INSERT INTO `t_city` VALUES ('1650303', '托克逊县', '3', '16503', '0', '70');
INSERT INTO `t_city` VALUES ('1650399', '其他区县', '3', '16503', '0', '70');
INSERT INTO `t_city` VALUES ('2609', '哈密市', '3', '16504', '0', '70');
INSERT INTO `t_city` VALUES ('1650402', '伊吾县', '3', '16504', '0', '70');
INSERT INTO `t_city` VALUES ('1650403', '巴里坤哈萨克自治县', '3', '16504', '0', '70');
INSERT INTO `t_city` VALUES ('1650499', '其他区县', '3', '16504', '0', '70');
INSERT INTO `t_city` VALUES ('2608', '和田市', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650502', '和田县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650503', '墨玉县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650504', '皮山县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650505', '洛浦县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650506', '策勒县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650507', '于田县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650508', '民丰县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('1650599', '其他区县', '3', '2604', '0', '70');
INSERT INTO `t_city` VALUES ('2607', '阿克苏市', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650602', '温宿县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650603', '库车县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650604', '沙雅县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650605', '新和县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650606', '拜城县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650607', '乌什县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650608', '阿瓦提县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650609', '柯坪县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('1650699', '其他区县', '3', '2603', '0', '70');
INSERT INTO `t_city` VALUES ('2611', '喀什市', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650702', '疏附县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650703', '疏勒县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650704', '英吉沙县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650705', '泽普县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650706', '莎车县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650707', '叶城县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650708', '麦盖提县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650709', '岳普湖县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650710', '伽师县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650711', '巴楚县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650712', '塔什库尔干塔吉克自治县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650799', '其他区县', '3', '2602', '0', '70');
INSERT INTO `t_city` VALUES ('1650801', '阿图什市', '3', '16508', '0', '70');
INSERT INTO `t_city` VALUES ('1650802', '阿克陶县', '3', '16508', '0', '70');
INSERT INTO `t_city` VALUES ('1650803', '阿合奇县', '3', '16508', '0', '70');
INSERT INTO `t_city` VALUES ('1650804', '乌恰县', '3', '16508', '0', '70');
INSERT INTO `t_city` VALUES ('1650899', '其他区县', '3', '16508', '0', '70');
INSERT INTO `t_city` VALUES ('2606', '库尔勒市', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650902', '轮台县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650903', '尉犁县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650904', '若羌县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650905', '且末县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650906', '和静县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650907', '和硕县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650908', '博湖县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650909', '焉耆回族自治县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('1650999', '其他区县', '3', '16509', '0', '70');
INSERT INTO `t_city` VALUES ('2610', '昌吉市', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651002', '阜康市', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651003', '呼图壁县', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651004', '玛纳斯县', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651005', '奇台县', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651006', '吉木萨尔县', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651007', '木垒哈萨克自治县', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('1651099', '其他区县', '3', '2605', '0', '70');
INSERT INTO `t_city` VALUES ('2618', '博乐市', '3', '16511', '0', '70');
INSERT INTO `t_city` VALUES ('1651102', '精河县', '3', '16511', '0', '70');
INSERT INTO `t_city` VALUES ('1651103', '温泉县', '3', '16511', '0', '70');
INSERT INTO `t_city` VALUES ('1651199', '其他区县', '3', '16511', '0', '70');
INSERT INTO `t_city` VALUES ('2619', '伊宁市', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('2615', '奎屯市', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651203', '伊宁县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651204', '霍城县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651205', '巩留县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651206', '新源县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651207', '昭苏县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651208', '特克斯县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651209', '尼勒克县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651210', '察布查尔锡伯自治县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('1651299', '其他区县', '3', '16512', '0', '70');
INSERT INTO `t_city` VALUES ('2620', '塔城市', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651302', '乌苏市', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651303', '额敏县', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651304', '沙湾县', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651305', '托里县', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651306', '裕民县', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651307', '和布克赛尔蒙古自治县', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('1651399', '其他区县', '3', '16513', '0', '70');
INSERT INTO `t_city` VALUES ('2617', '阿勒泰市', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651402', '布尔津县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651403', '富蕴县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651404', '福海县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651405', '哈巴河县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651406', '青河县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651407', '吉木乃县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('1651499', '其他区县', '3', '16514', '0', '70');
INSERT INTO `t_city` VALUES ('174', '其他省份', '1', '0', '0', '70');
INSERT INTO `t_city` VALUES ('9932', '其他', '2', '174', '0', '70');
INSERT INTO `t_city` VALUES ('1651501', '长汀镇', '3', '1231007', '0', '70');
INSERT INTO `t_city` VALUES ('1651503', '八面通', '3', '1231005', '0', '70');
INSERT INTO `t_city` VALUES ('1651505', '东京城镇', '3', '1231008', '0', '70');
-- ----------------------------
-- Table structure for t_code
-- ----------------------------
DROP TABLE IF EXISTS `t_code`;
CREATE TABLE `t_code` (
`id` bigint(20) NOT NULL DEFAULT '0',
`name` varchar(100) DEFAULT NULL COMMENT '名称',
`parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
`notes` varchar(256) DEFAULT NULL COMMENT '说明',
`yn` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用来存放所有的状态字段';
-- ----------------------------
-- Records of t_code
-- ----------------------------
INSERT INTO `t_code` VALUES ('1', '字典数据', null, null, null);
INSERT INTO `t_code` VALUES ('100', '认证状态', '1', '认证状态', null);
INSERT INTO `t_code` VALUES ('101', '待审核', '100', null, null);
INSERT INTO `t_code` VALUES ('102', '审核通过', '100', null, null);
INSERT INTO `t_code` VALUES ('103', '审核未通过', '100', null, null);
INSERT INTO `t_code` VALUES ('104', '审核失效', '100', null, null);
INSERT INTO `t_code` VALUES ('200', '认证类型', '1', null, null);
INSERT INTO `t_code` VALUES ('201', '实名认证', '200', null, null);
INSERT INTO `t_code` VALUES ('202', '企业认证', '200', null, null);
INSERT INTO `t_code` VALUES ('203', '境内企业认证', '200', '认证类型为境内企业认证', null);
INSERT INTO `t_code` VALUES ('204', '境外企业认证', '200', '认证类型为境外企业认证', null);
INSERT INTO `t_code` VALUES ('205', '个体企业', '200', '', null);
INSERT INTO `t_code` VALUES ('300', '证件类型', '1', null, null);
INSERT INTO `t_code` VALUES ('301', '身份证', '300', null, null);
INSERT INTO `t_code` VALUES ('302', '工商注册号', '300', null, null);
INSERT INTO `t_code` VALUES ('303', '护照', '300', '', null);
INSERT INTO `t_code` VALUES ('400', '账号来源', '1', null, null);
INSERT INTO `t_code` VALUES ('401', '用户中心', '400', null, null);
INSERT INTO `t_code` VALUES ('402', '资金账户', '400', null, null);
INSERT INTO `t_code` VALUES ('403', '卡通用户', '400', null, null);
INSERT INTO `t_code` VALUES ('500', '图片类型', '1', null, null);
INSERT INTO `t_code` VALUES ('501', '身份证正面', '500', null, null);
INSERT INTO `t_code` VALUES ('502', '身份证背面', '500', null, null);
INSERT INTO `t_code` VALUES ('503', '手持身份证', '500', null, null);
INSERT INTO `t_code` VALUES ('504', '营业执照正面', '500', null, null);
INSERT INTO `t_code` VALUES ('505', '法人代表身份证正面', '500', null, null);
INSERT INTO `t_code` VALUES ('506', '法人代表身份证背面', '500', null, null);
INSERT INTO `t_code` VALUES ('507', '法人代表持证', '500', null, null);
INSERT INTO `t_code` VALUES ('508', '组织机构代码证', '500', null, null);
INSERT INTO `t_code` VALUES ('509', '开户许可证', '500', null, null);
INSERT INTO `t_code` VALUES ('510', '税务登记证', '500', null, null);
INSERT INTO `t_code` VALUES ('511', '经营者身份证正面', '500', null, null);
INSERT INTO `t_code` VALUES ('512', '经营者身份证背面', '500', null, null);
INSERT INTO `t_code` VALUES ('513', '经营者持身份证', '500', null, null);
INSERT INTO `t_code` VALUES ('514', '统一社会信用代码证', '500', '统一社会信用代码证', null);
INSERT INTO `t_code` VALUES ('515', '公司注册证书', '500', '公司注册证书', null);
INSERT INTO `t_code` VALUES ('516', '公司组织大纲', '500', '公司组织大纲', null);
INSERT INTO `t_code` VALUES ('517', '法人身份证明文件', '500', '法人身份证明文件', null);
INSERT INTO `t_code` VALUES ('600', '用户认证', '1', null, null);
INSERT INTO `t_code` VALUES ('601', '用户未认证', '600', null, null);
INSERT INTO `t_code` VALUES ('602', '认证通过', '600', null, null);
INSERT INTO `t_code` VALUES ('603', '认证失败', '600', null, null);
INSERT INTO `t_code` VALUES ('700', '用户身份', '1', '', null);
INSERT INTO `t_code` VALUES ('701', '买家', '700', '', null);
INSERT INTO `t_code` VALUES ('702', '卖家', '700', '', null);
-- ----------------------------
-- Table structure for t_data_dictionary
-- ----------------------------
DROP TABLE IF EXISTS `t_data_dictionary`;
CREATE TABLE `t_data_dictionary` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`code` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`remark` varchar(1000) DEFAULT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`yn` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=117 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_data_dictionary
-- ----------------------------
INSERT INTO `t_data_dictionary` VALUES ('36', 'DIC_AGENT_SALE_SERVICE_STATUS', '[订单MAN]代销服务处理状态', '[订单MAN]代销服务处理状态', '2014-05-29 16:09:10', '2014-07-14 23:26:57', '1');
INSERT INTO `t_data_dictionary` VALUES ('2', 'DIC_STOCK_CYCLE', '备货周期', '备货周期', '2014-05-27 15:05:00', '2014-07-31 20:04:41', '1');
INSERT INTO `t_data_dictionary` VALUES ('3', 'DIC_PACKUP_ADDRESS', '提货点', '提货点', '2014-05-27 15:05:00', '2014-05-27 15:05:00', '1');
INSERT INTO `t_data_dictionary` VALUES ('4', 'DIC_TERM_OF_VALIDITY_SELLER', '有效期', '第三方有效期', '2014-05-27 15:05:00', '2014-05-27 15:05:00', '1');
INSERT INTO `t_data_dictionary` VALUES ('5', 'DIC_ORDER_STATUS', '订单状态', '订单状态', '2014-05-28 10:54:51', '2014-05-28 10:54:53', '2');
INSERT INTO `t_data_dictionary` VALUES ('6', 'DIC_MEASURING_UNIT', '计量单位', '计量单位', '2014-05-28 11:45:44', '2014-05-28 11:45:48', '1');
INSERT INTO `t_data_dictionary` VALUES ('7', 'DIC_DL_SERVICE', '地利服务', '地利服务', '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary` VALUES ('8', 'DIC_INVOICE_TYPE', '发票类型', '发票类型', '2014-05-28 16:05:22', '2014-05-28 16:05:24', '1');
INSERT INTO `t_data_dictionary` VALUES ('9', 'DIC_ORDER_TYPE', '订单类型', '订单类型', '2014-05-28 16:05:22', '2014-05-28 16:05:22', '1');
INSERT INTO `t_data_dictionary` VALUES ('10', 'DIC_PAY_TYPE', '支付类型', '支付类型', '2014-05-28 16:05:22', '2014-05-28 16:05:22', '1');
INSERT INTO `t_data_dictionary` VALUES ('11', 'DIC_ORDER_PAY_STATUS', '订单支付状态', '订单支付状态', '2014-05-28 16:05:22', '2014-05-28 16:05:22', '1');
INSERT INTO `t_data_dictionary` VALUES ('12', 'DIC_SALES_MODEL', '商品销售模式', '商品销售模式', '2014-05-28 16:05:22', '2014-05-28 16:05:22', '1');
INSERT INTO `t_data_dictionary` VALUES ('13', 'DIC_ORDER_SERVER_STATUS', '订单服务状态', '订单服务状态', '2014-05-28 16:05:22', '2014-05-28 16:05:22', '1');
INSERT INTO `t_data_dictionary` VALUES ('15', 'DIC_INDUSTRY_TYPE', '行业类型', '行业类型', '2014-05-29 16:09:10', '2014-05-29 16:09:13', '1');
INSERT INTO `t_data_dictionary` VALUES ('16', 'DIC_COUNTRY', '国家', '国家', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('17', 'DIC_EMAIL_CONFIG', '邮箱设置', '邮箱设置', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('18', 'DIC_EMAIL_CONTENT', '邮件内容设置', '邮件内容设置', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('19', 'DIC_SMS_CONTENT', '短信内容设置', '短信内容设置', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('20', 'DIC_REORDER_APPLY_REASON', '退款申请理由', '退款申请理由', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('21', 'DIC_REORDER_APPLY_STATUS', '[订单MAN]退款申请状态', '[订单MAN]退款申请状态', '2014-05-29 16:09:10', '2014-07-14 23:28:54', '1');
INSERT INTO `t_data_dictionary` VALUES ('22', 'DIC_BILL_SETTLE_SOURCE_CODE', '[订单MAN]账单结算来源', '[订单MAN]账单结算来源', '2014-05-29 16:09:10', '2014-07-14 23:28:40', '1');
INSERT INTO `t_data_dictionary` VALUES ('23', 'DIC_BILL_SETTLE_STATUS', '[订单MAN]账单结算状态', '[订单MAN]账单结算状态', '2014-05-29 16:09:10', '2014-07-14 23:28:32', '1');
INSERT INTO `t_data_dictionary` VALUES ('24', 'DIC_BILL_SETTLE_TYPE', '[订单MAN]结算类型', '[订单MAN]结算类型', '2014-05-29 16:09:10', '2014-07-14 23:28:22', '1');
INSERT INTO `t_data_dictionary` VALUES ('25', 'DIC_SERVICE_PROCESS_STATUS', '[订单MAN]增值服务处理状态', '[订单MAN]增值服务处理状态', '2014-05-29 16:09:10', '2014-07-14 23:28:09', '1');
INSERT INTO `t_data_dictionary` VALUES ('37', 'DIC_SUPPLIER_TYPE', '供应商类别', '供应商类别', '2014-05-29 16:09:10', '2014-06-24 11:50:48', '1');
INSERT INTO `t_data_dictionary` VALUES ('38', 'DIC_SIX_TYPE', '性别类型', '性别类型', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('39', 'DIC_CARD_TYPE', '识别卡类型', '识别卡类型', '2014-05-29 16:09:10', '2014-05-29 16:09:10', '1');
INSERT INTO `t_data_dictionary` VALUES ('40', 'DIC_SUPPLY_ORDER_STATUS', '[订单MAN]供应单状态', '[订单MAN]供应单状态', '2014-05-29 16:09:10', '2014-07-14 23:26:33', '1');
INSERT INTO `t_data_dictionary` VALUES ('41', 'DIC_THIRD_SALE_ORDER_BACKEND_DESCRIPTION', '[订单WEB]销售中心订单详细状态描述', '[订单WEB]销售中心订单详细状态描述', '2014-05-29 16:09:10', '2014-07-14 23:26:02', '1');
INSERT INTO `t_data_dictionary` VALUES ('42', 'DIC_SELF_AGENT_SALE_ORDER_DESCRIPTION', '[订单WEB]采购中心订单详细状态描述', '[订单WEB]采购中心订单详细状态描述', '2014-05-29 16:09:10', '2014-07-14 23:25:50', '1');
INSERT INTO `t_data_dictionary` VALUES ('43', 'DIC_BANK', '银行', '银行', '2014-06-18 15:42:20', '2014-06-18 15:42:20', '1');
INSERT INTO `t_data_dictionary` VALUES ('44', 'DIC_THIRD_SALE_ORDER_BACKEND_STATUS', '[订单MAN]买卖对接订单状态枚举', '[订单MAN]买卖对接订单状态枚举', '2014-06-18 15:42:20', '2014-07-14 23:23:25', '1');
INSERT INTO `t_data_dictionary` VALUES ('45', 'DIC_SELF_AGENT_SALE_ORDER_BACKEND_STATUS', '[订单MAN]自营/代销订单状态枚举', '[订单MAN]自营/代销订单状态枚举', '2014-06-18 15:42:20', '2014-07-14 23:23:09', '1');
INSERT INTO `t_data_dictionary` VALUES ('46', 'DIC_PAY_WAY', '[订单]支付方式', '[订单]支付方式', '2014-06-24 10:37:10', '2014-07-14 23:22:52', '1');
INSERT INTO `t_data_dictionary` VALUES ('47', 'DIC_DL_BANK_ACCOUNT', '地利银行帐号', '地利银行帐号', '2014-06-24 15:14:34', '2014-06-24 15:14:37', '1');
INSERT INTO `t_data_dictionary` VALUES ('48', 'DIC_BILL_SETTLE_REMIT_MATCH_STATUS', '结算单与转账汇款记录匹配状态1', '结算单与转账汇款记录匹配状态', '2014-06-24 16:04:51', '2014-06-26 16:40:27', '1');
INSERT INTO `t_data_dictionary` VALUES ('50', 'DIC_REORDER_CANCEL_REASON', '[订单]取消原因', '[订单]取消原因', '2014-06-26 11:43:58', '2014-07-14 23:29:13', '1');
INSERT INTO `t_data_dictionary` VALUES ('71', 'DIC_SHOP_CHECK_REASON', '店铺审核原因', '店铺审核原因', '2014-08-04 11:18:01', '2014-08-08 18:36:11', '1');
INSERT INTO `t_data_dictionary` VALUES ('72', 'UNIT_Xiang', '箱', null, '2014-08-15 08:30:46', '2014-08-15 08:30:46', '1');
INSERT INTO `t_data_dictionary` VALUES ('51', 'DIC_ENQUIRYQUOTE_BACKEND_STATUS', '询价报价单后端状态', '询价报价单后端状态', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1');
INSERT INTO `t_data_dictionary` VALUES ('74', 'DIC_PACKAGE_TYPE', '包装方式', null, '2014-08-22 18:20:53', '2014-08-22 18:20:53', '1');
INSERT INTO `t_data_dictionary` VALUES ('75', 'DIC_AGENTSALE_HANDLE_TYPE', '代销服务处理方式', '代销服务处理方式', '2014-08-28 18:52:46', '2014-08-28 18:52:46', '1');
INSERT INTO `t_data_dictionary` VALUES ('76', 'DIC_QUOTATION_COMMON_LANGUAGE', '询价报价常用语', '询价报价常用语', '2014-09-16 22:06:21', '2014-10-10 16:40:21', '1');
INSERT INTO `t_data_dictionary` VALUES ('79', 'APP', 'APP分类介绍', 'APP分类介绍', '2015-01-23 17:23:00', '2015-01-23 17:23:00', '1');
INSERT INTO `t_data_dictionary` VALUES ('80', 'DIC_ORDER_DELIVERY_TYPE', ' [订单]订单配送方式', ' [订单]订单配送方式', '2015-04-02 17:34:26', '2015-04-02 17:34:26', '1');
INSERT INTO `t_data_dictionary` VALUES ('81', 'DIC_ORDER_WEB_STATUS', '[订单]web主站订单状态枚举', '[订单]web主站订单状态枚举', '2015-04-20 17:19:59', '2015-04-20 17:25:41', '1');
INSERT INTO `t_data_dictionary` VALUES ('82', 'DIC_SSO_DOMAIN', '[SSO]域名设置', '[SSO]域名设置', '2015-05-13 15:16:29', '2015-05-13 15:16:29', '1');
INSERT INTO `t_data_dictionary` VALUES ('83', 'SHOP_MANAGE_TYPE', '店铺的经营类型', '店铺的经营类型', '2015-07-29 15:46:57', '2015-07-29 15:46:57', '1');
INSERT INTO `t_data_dictionary` VALUES ('85', 'DIC_PPS_AUDIT_ERRORMSG', '审核失败原因', '审核失败原因', '2015-08-27 10:24:55', '2015-08-27 10:24:55', '1');
INSERT INTO `t_data_dictionary` VALUES ('87', 'SHOP_MERCHANT_TYPE', '商户类型', '商户类型', '2015-08-28 14:33:40', '2015-08-28 14:33:40', '1');
INSERT INTO `t_data_dictionary` VALUES ('89', 'SHOP_LOGISTICS_TYPE_ID', '店铺物流类型', '店铺物流类型', '2015-08-28 14:36:55', '2015-08-28 14:36:55', '1');
INSERT INTO `t_data_dictionary` VALUES ('91', 'SHOP_SOURCE', '店铺类型', '店铺类型', '2015-08-28 14:37:48', '2015-08-28 14:37:48', '1');
INSERT INTO `t_data_dictionary` VALUES ('93', 'DIC_SMS_CONTENT_YTX', '短信发送-云通讯平台模板映射 ', '短信发送-云通讯平台模板映射 ', '2015-08-28 19:12:12', '2015-08-28 19:12:12', '1');
INSERT INTO `t_data_dictionary` VALUES ('95', 'PROVINCE_SIMPLE_ALIA', '省简写别名', '省直辖市简写别名 @\"京\",@\"津\",@\"沪\",@\"渝\",@\"蒙\",@\"新\", @\"藏\",@\"宁\",@\"桂\",@\"黑\", @\"吉\",@\"辽\",@\"晋\",@\"冀\",@\"青\",@\"鲁\", @\"豫\",@\"苏\",@\"皖\",@\"浙\",@\"闽\",@\"赣\", @\"湘\",@\"鄂\",@\"粤\",@\"琼\",@\"甘\",@\"陕\", @\"黔\",@\"云\",@\"川\"', '2015-09-28 17:08:58', '2015-09-30 17:15:14', '1');
INSERT INTO `t_data_dictionary` VALUES ('97', 'NOTICE_YES', '系统通知开关(移动端)', '系统通知开关', '2015-11-20 13:14:12', '2016-01-07 15:51:45', '1');
INSERT INTO `t_data_dictionary` VALUES ('99', 'APPKEYS_DIC_CONTENT', 'jpush app key字典', 'jpush app key字典', '2015-12-02 16:58:46', '2015-12-02 16:58:46', '1');
INSERT INTO `t_data_dictionary` VALUES ('101', 'DIC_VIDEO_AUDIT_ERRORMSG', '商品视频审核失败原因', '商品视频审核失败原因', '2015-12-24 14:50:55', '2015-12-24 14:50:55', '1');
INSERT INTO `t_data_dictionary` VALUES ('103', 'PURCHASE_ORDER_WEB_STATUS', '代购单前台状态', '代购单前台状态', '2016-01-22 10:16:36', '2016-01-22 10:16:36', '1');
INSERT INTO `t_data_dictionary` VALUES ('105', 'DIC_PURCHASE_SERVICE_ITEM', '代购服务项', '代购服务项', '2016-01-22 10:20:54', '2016-01-22 10:20:54', '1');
INSERT INTO `t_data_dictionary` VALUES ('107', 'SHOP_CLOSE_REASON', '关闭/注销店铺原因', '关店和注销店铺的原因', '2016-03-10 10:38:07', '2016-03-10 10:38:07', '1');
INSERT INTO `t_data_dictionary` VALUES ('108', 'CLIENT_SOURCE', '客户来源', '客户来源', '2016-09-06 16:27:11', '2016-09-06 16:27:11', '1');
INSERT INTO `t_data_dictionary` VALUES ('109', 'DIC_COUSTOM_TYPE', '会员身份', '会员身份', '2016-09-08 11:25:45', '2016-09-08 11:25:45', '1');
INSERT INTO `t_data_dictionary` VALUES ('111', 'DIC_CLAIMS_APPLY_REASON', '申请理赔理由', '申请理赔理由', '2016-09-18 14:45:07', '2016-09-18 14:45:07', '1');
INSERT INTO `t_data_dictionary` VALUES ('112', 'DIC_CLAIMS_REQUIRE', '理赔要求', '理赔要求', '2016-09-18 15:22:50', '2016-09-18 15:22:50', '1');
INSERT INTO `t_data_dictionary` VALUES ('115', 'DIC_CLAIMS_APPEAL_RESULTS', '理赔申诉结果', null, '2016-09-21 10:32:17', '2016-09-21 10:32:17', '1');
INSERT INTO `t_data_dictionary` VALUES ('114', 'CREDENTIALS_TYPE', '证件类型', '证件类型', '2016-09-20 11:31:31', '2016-09-20 11:31:31', '1');
INSERT INTO `t_data_dictionary` VALUES ('116', 'DILI_AUTHEN_CENTER_CONFIG', '认证中心配置', '认证中心配置', '2016-09-26 10:46:25', '2016-09-26 10:46:25', '1');
-- ----------------------------
-- Table structure for t_data_dictionary_value
-- ----------------------------
DROP TABLE IF EXISTS `t_data_dictionary_value`;
CREATE TABLE `t_data_dictionary_value` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`dd_id` bigint(20) DEFAULT NULL,
`sort` int(11) DEFAULT NULL,
`code` varchar(256) DEFAULT NULL,
`name` varchar(30) DEFAULT NULL,
`remark` varchar(1000) DEFAULT NULL,
`period_begin` datetime DEFAULT NULL,
`period_end` datetime DEFAULT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`yn` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=664 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_data_dictionary_value
-- ----------------------------
INSERT INTO `t_data_dictionary_value` VALUES ('41', '7', '10', 'SERVICE_WAREHOUSING', '仓储服务', '农副产品仓储服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('3', '2', '10', 'Hours_6', '6', '6小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('4', '2', '20', 'Hours_12', '12', '12小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('5', '2', '30', 'Hours_18', '18', '18小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:41', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('6', '2', '40', 'Hours_24', '24', '24小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('7', '2', '50', 'Hours_30', '30', '30小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:24', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('8', '2', '60', 'Hours_36', '36', '36小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('9', '2', '70', 'Hours_42', '42', '42小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('10', '2', '80', 'Hours_48', '48', '48小时', null, null, '2014-05-27 15:10:00', '2014-07-29 15:35:06', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('11', '3', '10', 'ShanDongShouGuang', '山东寿光农产品批发市场', '山东寿光农产品批发市场', null, null, '2014-05-27 15:10:00', '2014-09-24 18:37:07', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('12', '3', '20', 'SichuanJuhe', '四川成都聚和批发市场', '四川成都聚和批发市场', null, null, '2014-05-27 15:10:00', '2014-11-03 09:37:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('13', '3', '30', 'ShenyangDili', '沈阳地利批发市场', '沈阳地利批发市场', null, null, '2014-05-27 15:10:00', '2014-09-02 10:26:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('14', '3', '40', 'GuiyangDili', '贵阳地利批发市场', '贵阳地利批发市场', null, null, '2014-05-27 15:10:00', '2014-09-02 10:27:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('15', '3', '50', 'QiqihaerHada', '齐齐哈尔哈达批发市场', '齐齐哈尔哈达批发市场', null, null, '2014-05-27 15:10:00', '2014-09-02 10:27:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('16', '3', '60', 'MudanjiangMuda', '牡丹江牡达批发市场', '牡丹江牡达批发市场', null, null, '2014-05-27 15:10:00', '2014-09-02 10:27:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('17', '3', '70', 'HaerbingHada', '哈尔滨哈达批发市场', '哈尔滨哈达批发市场', null, null, '2014-05-27 15:10:00', '2014-09-02 10:28:07', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('18', '4', '10', 'Day_15', '180', '6个月 *商品上架6个月后会自动下架,请随时关注商品的销售状态', null, null, '2014-05-27 15:10:00', '2015-07-03 21:53:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('148', '45', '10', '10', '待付款', '待付款', null, null, '2014-05-28 15:00:00', '2014-08-05 11:01:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('149', '45', '15', '15', '待支付', '待支付,中间状态,不显示', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '0');
INSERT INTO `t_data_dictionary_value` VALUES ('150', '45', '20', '20', '待分单', '待分单', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('151', '45', '30', '30', '已分单', '已分单', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('152', '45', '40', '40', '待提货', '待提货', null, null, '2014-05-28 15:00:00', '2015-05-10 18:00:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('153', '45', '50', '50', '已提货', '已提货', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('154', '45', '60', '60', '已过期', '已过期', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('155', '45', '70', '70', '已取消', '已取消', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('156', '45', '80', '80', '申请退款中', '申请退款中', null, null, '2014-05-28 15:00:00', '2015-04-20 17:25:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('157', '45', '90', '90', '已退款', '已退款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('158', '44', '10', '10', '待付款', '待付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('159', '44', '15', '15', '待支付', '待支付,中间状态,不显示', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '0');
INSERT INTO `t_data_dictionary_value` VALUES ('160', '44', '20', '20', '已付款待确认', '买家已付款,等待平台确认', null, null, '2014-05-28 15:00:00', '2016-09-22 14:41:31', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('161', '44', '30', '30', '备货中', '备货中', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('162', '44', '40', '40', '待提货', '待提货', null, null, '2014-05-28 15:00:00', '2015-05-10 17:57:28', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('163', '44', '50', '50', '交易完成', '交易完成', null, null, '2014-05-28 15:00:00', '2015-04-20 17:09:01', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('164', '44', '60', '60', '已过期', '已过期', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('165', '44', '70', '70', '已取消', '已取消', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('166', '44', '80', '80', '申请退款中', '申请退款中', null, null, '2014-05-28 15:00:00', '2015-04-20 17:09:24', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('167', '44', '90', '90', '已退款', '已退款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('168', '45', '100', '100', '提货超时', '提货超时', null, null, '2014-06-24 14:05:25', '2014-06-24 14:05:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('169', '19', '20', 'SMS_CONTENT_ORDER_DELIVERY', '提货付款短信内容', '尊敬的会员,您的订单号{orderId},订单金额{totalPrice}元。可询400-645-5158', null, null, '0000-00-00 00:00:00', '2015-04-16 00:01:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('170', '19', '30', 'SMS_CONTENT_ORDER_REMITTANCE', '线下汇款短信内容', '尊敬的会员,您的订单号{orderId},订单金额{totalPrice}元,交易识别码{code}。可询400-645-5158', null, null, '0000-00-00 00:00:00', '2015-04-16 00:01:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('171', '46', '10', '10', '园区卡', '园区卡', null, null, '2014-06-24 13:55:27', '2014-06-24 13:55:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('172', '46', '20', '20', '银行卡', '银行卡', null, null, '2014-06-24 13:55:51', '2014-06-24 13:55:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('173', '46', '30', '30', '现金', '现金', null, null, '2014-06-24 13:56:24', '2014-06-24 13:56:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('174', '46', '40', '40', '转账汇款', '转账汇款', null, null, '2014-06-24 13:56:53', '2014-06-24 13:56:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('176', '43', '10', '10', '中国银行', '中国银行', null, null, '2014-06-24 14:06:45', '2014-06-24 14:06:48', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('177', '43', '20', '20', '中国工商银行', '中国工商银行', null, null, '2014-06-24 14:07:22', '2014-06-24 14:07:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('178', '43', '30', '30', '中国建设银行', '中国建设银行', null, null, '2014-06-24 14:08:02', '2014-06-24 14:08:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('179', '43', '40', '40', '中国农业银行', '中国农业银行', null, null, '2014-06-24 14:08:33', '2014-06-24 14:08:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('180', '43', '50', '50', '中信银行', '中信银行', null, null, '2014-06-24 14:09:02', '2014-06-24 14:09:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('181', '47', '10', '12345678', '中国银行', '中国银行', null, null, '2014-06-24 15:16:25', '2014-06-24 15:16:28', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('182', '47', '20', '3456789121', '中信银行', '中信银行', null, null, '2014-06-24 15:16:51', '2014-06-24 15:16:53', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('183', '48', '10', '10', '未匹配', '未匹配', null, null, '2014-06-24 16:03:58', '2014-06-24 16:04:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('184', '48', '20', '20', '匹配', '匹配', null, null, '2014-06-24 16:04:27', '2014-06-24 16:04:30', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('38', '6', '20', 'UNIT_KG', '公斤', '公斤', null, null, '2014-05-28 11:48:12', '2015-06-01 10:09:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('39', '6', '10', 'UNIT_JIN', '斤', '斤', null, null, '2014-05-28 11:48:16', '2015-06-01 10:09:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('40', '6', '30', 'UNIT_TON', '吨', '吨', null, null, '2014-05-28 11:48:23', '2014-05-28 11:48:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('42', '7', '20', 'SERVICE_FRESH_PRECOOLING', '保鲜预冷服务', '农副产品保鲜预冷服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('43', '7', '30', 'SERVICE_LOGISTICS_DISTRIBUTION', '物流配送服务', '农副产品物流配送服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('44', '7', '40', 'SERVICE_FINISHING_GOODS', '理货服务', '农副产品理货服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('45', '7', '50', 'SERVICE_PACKAGE', '包装服务', '农副产品包装服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('46', '8', '10', '10', '不开发票', '不开发票', null, null, '2014-05-28 15:00:00', '2016-09-24 17:11:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('47', '8', '20', '20', '增值税发票', '增值税发票', null, null, '2014-05-28 15:00:00', '2016-09-24 17:15:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('48', '8', '30', '30', '普通发票', '普通发票', null, null, '2014-05-28 15:00:00', '2016-09-24 17:15:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('53', '10', '30', '30', '提货付款', '提货付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('49', '9', '10', '10', '自营/代销', '自营/代销', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('50', '9', '20', '30', '买卖对接', '买卖对接', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('52', '10', '20', '20', '线下付款', '线下付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('51', '10', '10', '10', '线上付款', '线上付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('54', '11', '10', '10', '未付款', '未付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('55', '11', '20', '20', '已付款', '已付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('56', '11', '30', '30', '部分付款', '部分付款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('57', '12', '10', '10', '自营', '自营', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('58', '12', '20', '20', '代销', '代销', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('59', '12', '30', '30', '第三方卖家', '第三方卖家', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('60', '13', '10', '0', '无服务', '无服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('61', '13', '20', '10', '未服务', '未服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('62', '13', '30', '20', '部分服务', '部分服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('63', '13', '40', '30', '已服务', '已服务', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('67', '15', '10', '10', '林业', '林业', null, null, '2014-05-28 15:00:00', '2014-09-02 10:21:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('68', '15', '20', '20', '农业', '农业', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('69', '15', '30', '30', '工业', '工业', null, null, '2014-05-28 15:00:00', '2014-09-02 10:21:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('70', '16', '10', '10', '中国', '中国', null, null, '2014-05-28 15:00:00', '2015-04-14 16:36:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('71', '16', '20', '20', '日本', '日本', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('72', '16', '30', '30', '韩国', '韩国', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('73', '16', '40', '40', '美国', '美国', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('75', '16', '60', '60', '巴西', '巴西', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('76', '16', '70', '70', '俄罗斯', '俄罗斯', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('77', '17', '10', 'EMAIL_SMTP_HOST', 'mail.diligrp.com', '邮箱服务器HOST', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('78', '17', '20', 'EMAIL_SMTP_PORT', '25', '邮箱服务器端口', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('79', '17', '30', 'EMAIL_SMTP_ACCOUNT', 'system@diligrp.com', '邮箱账号', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('80', '17', '40', 'EMAIL_SMTP_PASSWORD', 'g@-GXAWF~Po.t+W', '邮箱密码', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('81', '18', '10', 'EMAIL_CONTENT_VALIDATE_EMAIL', '地利批发邮箱地址验证邮件', '<p>\r\n <span style=\"font-size:16px\"><span style=\"font-size:12px\">您好</span>:</span>\r\n</p>\r\n<p>\r\n <span style=\"font-size:12px\"> 您在申请了验证邮箱,请点击以下链接完成验证操作:</span>\r\n</p>\r\n<p>\r\n <span style=\"font-size:12px\"> <strong>安全提示:</strong><br/> <span \r\n\r\nstyle=\"color:#ff0000\">为了您的账户安全,我们建议您点击以下链接验证邮箱: <a href=\"{url}\">{url}</a> 请在24小时内点击该<br/>链\r\n\r\n接,您也可以将链接复制到浏览器地址栏访问。</span><br/><br/>邮件中包含您的个人信息,建议您保管好本邮件!<br/><br/>请把发件人\r\n\r\n邮箱加入白名单,以确保正常及时接收邮件。 <br/>您之所以收到这封邮件,是因为您曾经注册成为地利批发的\r\n\r\n用户。<br/>本邮件由地利批发系统自动发出,请勿直接回复!<br/>在购物中遇到任何问题,请点击 <a target=\"_blank\" \r\n\r\nhref=\"http://www.1n4j.com/helpcenter.html\">帮助中心</a>。<br/>如果您有任何疑问或建议,请<a target=\"_blank\" \r\n\r\nhref=\"http://www.dili7.com/helpcenter/articles.html?categoryId=3\">联系我们闷闷闷</a>。</span>\r\n</p>', null, null, '2014-05-28 15:00:00', '2016-08-11 15:08:07', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('82', '19', '10', 'SMS_CONTENT_MODIFY_OLD_PHONE', '修改手机激活验证旧手机', '尊敬的用户,您正在修改您的激活手机,您的校验码为{code}。', null, null, '2014-05-28 15:00:00', '2016-01-04 11:13:25', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('83', '20', '10', 'repeat_order', '重复下单', '重复下单', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('84', '20', '20', 'seller_unstockup', '卖家未备货', '卖家未备货', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('85', '20', '30', 'buyer_do_not_want', '我不想买它了', '我不想买它了', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('86', '20', '40', 'others', '其它', '其它', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('87', '21', '10', '10', '卖家待审核', '卖家待审核', null, null, '2014-05-28 15:00:00', '2015-07-03 14:54:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('88', '21', '20', '20', '退款成功', '卖家审核通过', null, null, '2014-05-28 15:00:00', '2016-09-09 15:10:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('89', '21', '30', '30', '卖家审核拒绝', '卖家审核拒绝', null, null, '2014-05-28 15:00:00', '2015-07-03 14:54:21', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('90', '21', '40', '40', '退款申请取消', '退款申请取消', null, null, '2014-05-28 15:00:00', '2016-09-08 18:48:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('91', '22', '10', '10', '订单', '订单', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('92', '22', '20', '20', '退款', '退款', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('93', '22', '30', '30', '供应单', '供应单', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('94', '23', '10', '10', '未结清', '未结清', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('95', '23', '20', '20', '已结清', '已结清', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('96', '23', '30', '30', '已取消', '已取消', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('97', '24', '10', '10', '结入', '结入', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('98', '24', '20', '20', '结出', '结出', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('99', '25', '10', '10', '已申请', '已申请', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('100', '25', '20', '20', '处理中', '处理中', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('101', '25', '30', '30', '已处理', '已处理', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('102', '25', '40', '40', '暂停', '暂停', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('103', '25', '50', '50', '已取消', '已取消', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('109', '36', '10', '10', '已申请', '已申请', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('110', '36', '20', '20', '处理中', '处理中', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('111', '36', '30', '30', '审批通过', '审批通过', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('112', '36', '40', '40', '审批拒绝', '审批拒绝', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('113', '36', '50', '50', '已取消', '已取消', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('114', '37', '10', '1', '个人', '个人', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('115', '37', '20', '2', '企业单位', '企业单位', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('116', '38', '10', '1', '男', '男', null, null, '2014-05-28 15:00:00', '2015-01-29 19:28:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('117', '38', '20', '2', '女', '女', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('118', '38', '30', '3', '保密', '保密', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('119', '39', '10', '1', '身份证', '身份证', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('120', '39', '20', '2', '驾照', '驾照', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('121', '39', '30', '3', '护照', '护照', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('122', '40', '10', '10', '备货中', '备货中', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('123', '40', '20', '20', '备货完成', '备货完成', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('124', '40', '30', '30', '已提货', '已提货', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('125', '40', '40', '40', '已取消', '已取消', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('126', '40', '50', '50', '暂停', '暂停', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('127', '40', '60', '60', '已结算', '已结算', null, null, '2014-05-28 15:00:00', '2014-05-28 15:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('128', '41', '10', '10', '[不在使用]', '[不在使用]', '2015-05-09 00:00:00', '2015-05-09 00:00:00', '2014-05-28 15:00:00', '2015-05-10 19:02:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('387', '41', '11', '10-p10', '待付款-线上付款', '1、买家选择了网上付款,请耐心等待,如果买家未在#orderStatusLastValidTime#前完成支付,订单将自动取消。<br/>\r\n2、如果您与买家达成了新的价格协议,可以点这里<span href=\"#fancy-alert\" class=\"text-button act-cp price-modify\">修改价格</span>', null, null, '2015-04-20 17:15:18', '2015-05-10 19:01:26', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('129', '41', '20', '20', '已付款待确认', '你的订单付款信息正在等待平台审核', null, null, '2014-05-28 15:00:00', '2016-09-21 17:11:57', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('130', '41', '30', '30', '[不在使用]', '[不在使用]', '2015-05-09 00:00:00', '2015-05-09 00:00:00', '2014-05-28 15:00:00', '2015-05-10 19:03:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('389', '41', '31', '30-d10', '备货中-上门自提', '请尽快完成备货,如果您已完成,请点击这里<a href=\"javascript:completeStockUp();\" class=\"submitBtn text-button\">完成备货</a>我们会及时告知买家尽快上门提货。', null, null, '2015-04-20 17:16:27', '2015-05-10 20:33:53', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('131', '41', '40', '40', '待提货', '请及时联系买家上门提货', null, null, '2014-05-28 15:00:00', '2015-10-23 17:31:39', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('583', '6', '34', 'UNIT_JING', '件', '件', null, null, '2015-11-11 10:17:27', '2015-11-11 10:33:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('391', '41', '41', '40-d10', '待收货-上门自提', '订单已于#orderStatusInTime#备货完成,请及时联系买家上门提货 ', null, null, '2015-04-20 17:17:17', '2015-05-10 20:35:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('132', '41', '50', '50', '[不在使用]', '[不在使用]', '2015-05-09 00:00:00', '2015-05-09 00:00:00', '2014-05-28 15:00:00', '2015-05-10 19:07:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('393', '41', '51', '50-p10', '交易完成-线上付款', '订单已于#orderStatusInTime#完成交易,货款将在3-5个工作日内结算到您的账户,请注意查收', null, null, '2015-04-20 17:18:06', '2015-05-10 19:07:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('133', '41', '60', '60', '已过期', '订单因为没及时完成付款,已于#orderStatusInTime#过期', null, null, '2014-05-28 15:00:00', '2015-05-10 19:11:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('134', '41', '70', '70', '已取消', '订单已于#orderStatusInTime#被取消,取消原因:#statusInReason#', null, null, '2014-05-28 15:00:00', '2015-05-10 19:11:31', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('396', '81', '20', '20', '已付款待确认', '已付款待确认', null, null, '2015-04-20 17:20:29', '2016-09-07 16:58:45', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('135', '41', '80', '80', '申请退款中', '买家于#orderStatusInTime#提交了退款申请,请在“销售退款管理”中<a href=\"javascript:dealRefund();\" class=\"a-link\">处理退款</a>,如未在#orderStatusLastValidTime#前处理,订单将被自动退款', null, null, '2014-05-28 15:00:00', '2015-05-10 19:11:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('136', '41', '90', '90', '已退款', '订单已于#orderStatusInTime#完成退款,订单已被取消。', null, null, '2014-05-28 15:00:00', '2015-05-10 19:11:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('395', '81', '10', '10', '待付款', '待付款', null, null, '2015-04-20 17:20:18', '2015-04-20 17:20:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('137', '42', '10', '10', '[不再使用]', '[不再使用]', '2015-05-09 00:00:00', '2015-05-09 00:00:00', '2014-05-28 15:00:00', '2015-05-10 18:29:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('383', '42', '11', '10-p10', '待付款-线上付款', '1、您现在可以点击<a href=\"javascript:pay();\" class=\"submitBtn text-button\">去付款</a>进行网上付款,请在#orderStatusLastValidTime#前完成付款,否则订单会自动取消。<br/> 2、如果你不想购买,<a href=\"javascript:cancelOrder();\" class=\"a-link\">取消订单</a> ', null, null, '2015-04-20 17:10:39', '2015-05-10 20:31:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('138', '42', '20', '20', '已付款待确认', '订单已完成付款操作,请耐心等待平台审核。如有疑问,请联系客服#serviceTelNo#', null, null, '2014-05-28 15:00:00', '2016-09-21 17:03:49', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('139', '42', '30', '30', '备货中[不再使用]', '订单正在备货中,请耐心等待。', '2015-05-09 00:00:00', '2015-05-09 00:00:00', '2014-05-28 15:00:00', '2015-05-10 18:39:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('386', '42', '42', '40-d20', '待收货-送货上门', '订单已于#completeDate#完成发货,请在#deliverDate#前确认收货,超期未确认收货,系统会默认为已收货', null, null, '2015-04-20 17:12:29', '2015-04-20 17:12:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('140', '42', '40', '40', '待提货', '1、订单已于#stockingCompleteTime#备货完成,请在#orderStatusLastValidTime#前上门提货,如不能按期提货,您可以<a href=\"javascript:delayDelivery();\" class=\"submitBtn\">延期提货</a><br/>\r\n2、如您已提货,请点击<a href=\"javascript:completeDelivery();\" class=\"submitBtn\">确认提货</a>超期未确认提货,系统会默认为已提货。<br/>', null, null, '2014-05-28 15:00:00', '2016-09-21 17:22:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('385', '42', '41', '40-d10', '待收货-上门自提', '订单已于#completeDate#备货完成,请在#deliverDate#前上门提货,如您已提货,请点击上方“确认提货”按钮,超期未确认提货,系统会默认为已提货。', null, null, '2015-04-20 17:12:08', '2015-04-20 17:12:08', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('141', '42', '50', '50', '完成交易-待评价', '1、订单已于#orderStatusInTime#完成交易<br/> 2、您现在可以对商品做出评价<a href=\"javascript:comments();\" class=\"submitBtn text-button\">立即评价</a> ', null, null, '2014-05-28 15:00:00', '2015-05-10 20:24:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('392', '41', '42', '40-d20', '待收货-送货上门', ' 订单已于#orderStatusInTime#完成发货,<i class=\"text-orange\">#shipInfo#</i>等待买家确认收货。 ', null, null, '2015-04-20 17:17:36', '2015-05-10 20:35:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('142', '42', '56', '55', '[不再使用]', '[不再使用]', null, null, '2014-05-28 15:00:00', '2015-04-20 17:13:19', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('143', '42', '60', '60', '已过期', '订单因为没及时完成付款,已于#orderStatusInTime#过期', null, null, '2014-05-28 15:00:00', '2015-05-10 18:48:15', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('390', '41', '32', '30-d20', '备货中-送货上门', '请尽快完成发货,如果您已完成,请点击这里<a href=\"#send-pop\" class=\"submitBtn f-fancybox\" >我已发货</a>我们会及时告知买家准备收货。', null, null, '2015-04-20 17:16:46', '2015-05-10 19:04:08', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('144', '42', '70', '70', '已取消', '订单已于#orderStatusInTime#被取消,取消原因:#statusInReason#', null, null, '2014-05-28 15:00:00', '2015-05-10 18:48:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('145', '42', '80', '80', '申请退款中', '您已提交了退款申请,请等待卖家审核。', null, null, '2014-05-28 15:00:00', '2015-04-20 17:13:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('146', '42', '90', '90', '已退款[不再使用]', '卖家于#dealDate#同意了您的退款申请,货款会在3-5个工作日内结算到您的账户,请注意查收', '2015-05-09 00:00:00', '2015-05-09 00:00:00', '2014-05-28 15:00:00', '2015-05-10 18:48:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('388', '41', '12', '10-p20', '待付款-线下付款', '1、买家选择了线下付款,请等待买家付款。 如果买家未在#orderStatusLastValidTime#前完成该操作,订单将自动取消<br/> 2、如果您与买家达成了新的价格协议\r\n\r\n,可以点这里<a href=\"#fancy-alert\" class=\"a-link act-cp price-modify\">修改价格</a> ', null, null, '2015-04-20 17:15:39', '2016-09-24 15:10:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('147', '42', '100', '100', '提货超时', '您的提货时间为#orderStatusLastValidTime#,因您未能及时提货,平台已冻结订单。', null, null, '2014-05-28 15:00:00', '2015-05-10 18:59:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('186', '50', '10', 'others', '其他', '其他', null, null, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('187', '50', '20', 'buyer_do_not_want', '我不想要了', '我不想要了', null, null, '0000-00-00 00:00:00', '2014-09-02 10:16:37', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('188', '50', '30', 'repeat_order', '重复下单', '重复下单', null, null, '0000-00-00 00:00:00', '2014-09-02 10:16:45', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('209', '19', '40', 'SMS_ORDER_NOT_PAIED', '订单提交成功-1小时未支付', '尊敬的采购商,您{orderId}的采购单还未支付,请及时付款,{cancelDate}前未付款系统将取消订单。如有疑问请询400-645-5158', null, null, '2014-07-14 15:25:42', '2015-04-16 00:02:03', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('210', '19', '50', 'SMS_ORDER_SUBMIT_OFFLINE_PAY', '订单提交成功-线下付款', '尊敬的采购商,您提交的采购单{orderId}已提交并选择了线下付款,请到指定银行汇款或到地利物流园区付款。如有疑问请询400-645-5158', null, null, '2014-07-14 15:28:27', '2015-04-16 00:02:12', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('211', '19', '60', 'SMS_ORDER_SUBMIT_LOCAL_PAY', '订单提交成功-提货付款', '尊敬的采购商,您提交的采购单{orderId}已提交并选择了提货付款,请在指定时间内提货并付款。如有疑问请询400-645-5158', null, null, '2014-07-14 15:36:12', '2015-04-16 00:02:28', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('212', '19', '70', 'SMS_ORDER_PAIED_TO_BUYER', '订单支付成功-买家', '尊敬的采购商,您提交的采购单{orderId}已付款,请在指定时间内到提货点提货。如有疑问请询400-645-5158', null, null, '2014-07-14 15:42:02', '2015-04-16 00:02:38', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('213', '19', '80', 'SMS_ORDER_PAIED_TO_SELLER', '订单支付成功-卖家', '尊敬的供应商,您{orderId}的销售单采购商已付款,请在指定时间内完成备货并通知采购商提货。如有疑问请询400-645-5158', null, null, '2014-07-14 15:43:48', '2015-04-16 00:02:46', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('214', '19', '90', 'SMS_SUPPLYER_START_STOCKUP_TO_BUYER', '供应商开始备货', '尊敬的采购商,您提交的采购单{orderId}供应商已开始备货,备货完成后,我们会短信通知您。如有疑问请询400-645-5158', null, null, '2014-07-14 15:46:01', '2015-04-23 18:16:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('215', '19', '100', 'SMS_SUPPLYER_COMPLETE_STOCKUP_TO_BUYER', '供应商完成备货', '尊敬的采购商,您提交的采购单{orderId}供应商已完成备货,请尽快到提货点提货,并完成提货。如有疑问请询400-645-5158', null, null, '2014-07-14 15:47:24', '2015-04-16 00:03:05', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('216', '19', '110', 'SMS_BUYER_APPLY_REFUND_TO_SELLER', '采购商申请退款', '尊敬的供应商,您{action}的销售单采购商因{reason}原因申请退款,请及时处理。如有疑问请询400-645-5158', null, null, '2014-07-14 15:49:20', '2015-04-16 00:07:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('217', '19', '120', 'SMS_SUPPLYER_REFUSE_REFUND_TO_BUYER', '供应商拒绝退款', '尊敬的采购商,您{action}的退款申请,供应商因{reason}原因拒绝退款,订单将继续履行。如有疑问请询400-645-5158', null, null, '2014-07-14 15:55:32', '2015-04-16 00:07:31', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('218', '19', '130', 'SMS_SUPPLYER_APPROVE_REFUND_TO_BUYER', '供应商同意退款', '尊敬的采购商,您{orderId}的退款申请,供应商已同意退款,{refundAmount}元的货款将返还到您付款的银行卡。如有疑问请询400-645-5158', null, null, '2014-07-14 15:58:59', '2015-04-16 00:07:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('219', '19', '140', 'SMS_ORDER_PAIED_ONLINE_TO_SELLER', '订单(线上支付)-第三方卖家', '尊敬的供应商,订单{orderId}买家已付款,请及时备货并送至提货点-{deliveryAddress}。如有疑问请询400-645-5158', null, null, '2014-07-14 16:06:58', '2015-04-16 00:08:36', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('220', '19', '150', 'SMS_ORDER_PAIED_ONLINE_TO_BUYER', '订单支付(线上支付)-买家', '尊敬的采购商,采购单{orderId}已付款,请在指定时间内到提货点提货。如有疑问请询400-645-5158', null, null, '2014-07-14 16:13:04', '2015-04-16 00:08:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('223', '19', '180', 'SMS_ORDER_CANCEL_LOCAL_PAY_TO_BUYER', '取消订单-提货付款', '尊敬的采购商,采购单{orderId}已取消。如有疑问请询400-645-5158', null, null, '2014-07-14 16:22:04', '2015-04-16 00:09:23', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('221', '19', '160', 'SMS_ORDER_PAIED_OFFLINE_TO_BUYER', '订单支付(线下支付)', '尊敬的采购商,采购单{orderId}已付款,请在指定时间内到提货点提货。如有疑问请询400-645-5158', null, null, '2014-07-14 16:16:03', '2015-04-16 00:08:57', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('222', '19', '170', 'SMS_ORDER_PAIED_LOCAL_TO_BUYER', '订单支付(提货付款)', '尊敬的采购商,采购单{orderId}已付款,请在指定时间内到提货点提货。如有疑问请询400-645-5158', null, null, '2014-07-14 16:18:26', '2015-04-16 00:09:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('224', '19', '190', 'SMS_BUYER_APPLY_REFUND_FROM_DILI_TO_BUYER', '申请退款-买家向地利申请', '尊敬的采购商,采购单{orderId}已申请退款({refundAmount}元),等待平台审核。如有疑问请询400-645-5158', null, null, '2014-07-14 16:24:31', '2015-04-16 00:09:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('225', '19', '200', 'SMS_DILI_APPROVE_REFUND_TO_BUYER', '同意退款-地利同意退款', '尊敬的采购商,采购单{orderId}的退款申请已通过。如有疑问请询400-645-5158', null, null, '2014-07-14 16:29:04', '2015-04-16 00:10:01', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('226', '19', '210', 'SMS_DILI_REFUSE_REFUND_TO_BUYER', '拒绝退款-地利拒绝退款', '尊敬的采购商,采购单{orderId}的退款申请被拒绝。如有疑问请询400-645-5158', null, null, '2014-07-14 16:30:41', '2015-04-16 00:10:08', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('227', '19', '220', 'SMS_BUYER_APPLY_REFUND_FROM_SELLER_TO_SELLER', '退款-买向卖退款-第三方卖家', '尊敬的供应商,订单{orderId}买家已申请退款({refundAmount}元),请及时处理。如有疑问请询400-645-5158', null, null, '2014-07-14 16:34:21', '2015-04-16 00:10:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('228', '19', '230', 'SMS_BUYER_APPLY_REFUND_FROM_SELLER_TO_BUYER', '申请退款-买家向卖家申请-买家', '尊敬的采购商,采购单{orderId}已申请退款({refundAmount}元),等待卖家审核。如有疑问请询400-645-5158', null, null, '2014-07-14 16:41:52', '2015-04-16 00:11:03', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('229', '19', '240', 'SMS_SELLER_APPROVE_REFUND_TO_BUYER', '同意退款-卖家同意退款', '尊敬的采购商,采购单{orderId}的退款申请已通过。如有疑问请询400-645-5158', null, null, '2014-07-14 16:43:36', '2015-04-16 00:11:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('230', '19', '250', 'SMS_SELLER_REFUSE_REFUND_TO_BUYER', '拒绝退款-卖家拒绝退款', '尊敬的采购商,采购单{orderId}的退款申请被拒绝。如有疑问请询400-645-5158', null, null, '2014-07-14 16:46:57', '2015-04-16 00:11:21', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('231', '19', '260', 'SMS_ORDER_COMPLETE_STOCKUP_TO_BUYER', '订单备货完成', '尊敬的采购商,采购单{orderId}已备货完成,请及时确认提(收)货。如有疑问请询400-645-5158', null, null, '2014-07-14 16:49:36', '2015-04-23 18:19:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('232', '19', '270', 'SMS_ADJUST_DELIEVERY_TIME_TO_BUYER', '更改提货时间-提货超时状态', '尊敬的采购商,采购单{orderId}未按时提货,提货时间已更改为{delieveryStartTime}-{delieveryEndTime},请在指定时间内到提货点提货。如有疑问请询400-645-5158', null, null, '2014-07-14 17:00:00', '2015-04-16 00:11:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('233', '19', '280', 'SMS_DILI_CANCEL_LOCAL_ORDER_TO_BUYER', '取消订单-地利取消提货付款订单', '尊敬的采购商,采购单{orderId}已取消。如有疑问请询400-645-5158', null, null, '2014-07-14 17:02:28', '2015-04-16 00:11:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('234', '19', '290', 'SMS_DELIEVERY_OVERTIME_REFUND_TO_BUYER', '退款-提货超时状态退款', '尊敬的采购商,采购单{orderId}未按时提货作为退款处理({refundAmount}元)。如有疑问请询400-645-5158', null, null, '2014-07-14 17:04:20', '2015-04-16 00:12:07', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('235', '19', '300', 'SMS_DELIEVERY_OVERTIME_CANCEL_TO_BUYER', '取消-提货超时状态取消', '尊敬的采购商,采购单{orderId}未按时提货,作为取消处理。如有疑问请询400-645-5158', null, null, '2014-07-14 17:07:21', '2015-04-16 00:12:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('236', '19', '310', 'SMS_THIRD_SALE_DELAY_SETTLE_TO_SELLER', '延期结算-买卖对接订单-卖家', '尊敬的供应商,采购单{orderId}已延期结算{delayDays}天,最新自动结算时间是{autoSettleTime}。如有疑问请询400-645-5158', null, null, '2014-07-14 17:09:34', '2015-04-16 00:12:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('237', '19', '320', 'SMS_THIRD_SALE_DELAY_SETTLE_TO_BUYER', '延期结算-买卖对接订单-买家', '尊敬的采购商,采购单{orderId}已延期结算{delayDays}天,最新自动结算时间是{autoSettleTime}。如有疑问请询400-645-5158', null, null, '2014-07-14 17:11:34', '2015-04-16 00:12:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('238', '19', '330', 'SMS_BUYER_CONFIRM_DELIEVERY_TO_BUYER', '确认提货-买家确认提货', '尊敬的采购商,采购单{orderId}已完成提货。如有疑问请询400-645-5158', null, null, '2014-07-14 17:14:11', '2015-04-16 00:13:46', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('239', '19', '340', 'SMS_DILI_CONFIRM_DELIEVERY_TO_BUYER', '确认提货-地利确认提货', '尊敬的采购商,采购单{orderId}已完成提货。如有疑问请询400-645-5158', null, null, '2014-07-14 17:15:53', '2015-04-16 00:13:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('240', '19', '350', 'SMS_CANCEL_SUPPLY_ORDER_TO_SUPPLYER', '取消供应单', '尊敬的地利供应商,供应单{supplyOrderId}已取消。如有疑问请询400-645-5158', null, null, '2014-07-14 17:17:24', '2015-04-16 00:14:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('241', '19', '360', 'SMS_GENERATE_SUPPLY_ORDER_TO_SUPPLYER', '生成供应单', '尊敬的地利供应商,最新供应单{supplyOrderId}到达,请及时备货。如有疑问请询400-645-5158', null, null, '2014-07-14 17:19:15', '2015-04-16 00:14:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('242', '19', '370', 'SMS_SERVICE_APPLY_TO_BUYER', '服务申请', '尊敬的会员,您的{serviceName}申请{serviceId}已提交。如有疑问请询400-645-5158', null, null, '2014-07-14 17:20:52', '2015-04-16 00:14:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('243', '19', '380', 'SMS_SERVICE_PROCESS_TO_BUYER', '服务处理', '尊敬的会员,您的{serviceName}申请{serviceId}已处理。如有疑问请询400-645-5158', null, null, '2014-07-14 17:22:30', '2015-04-16 00:14:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('244', '19', '390', 'SMS_SERVICE_CANCEL_TO_BUYER', '服务取消', '尊敬的会员,您的{serviceName}申请{serviceId}已取消。如有疑问请询400-645-5158', null, null, '2014-07-14 17:23:32', '2015-04-16 00:15:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('273', '6', '35', 'UNIT_MEI', '枚', '枚', null, null, '2014-07-18 17:03:25', '2014-07-18 17:04:49', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('274', '3', '80', 'YunNanKunYang', '云南大理', '我的测试', null, null, '2014-07-21 00:07:20', '2014-08-01 10:16:05', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('275', '60', '1', '1', '1', '1', null, null, '2014-07-21 19:18:41', '2014-07-21 20:02:37', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('276', '60', '2', '2', '1', '1', '2014-07-21 00:00:00', null, '2014-07-21 19:19:15', '2014-07-22 14:52:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('277', '60', '11', '11', '11', '1', null, null, '2014-07-21 20:02:32', '2014-07-25 10:15:23', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('278', '60', '12', '12', '12', '1', null, '2014-07-31 00:00:00', '2014-07-25 10:17:42', '2014-07-25 16:11:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('279', '3', '81', 'BJJQ', '北京昌平库', '罗测试', null, null, '2014-07-25 14:05:14', '2014-07-25 15:13:10', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('280', '3', '82', 'CDJQ', '成都双流库', '罗测试', null, null, '2014-07-25 14:05:30', '2014-07-25 15:13:23', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('281', '3', '83', 'SYJQ', '沈阳长春库', '罗测试', null, null, '2014-07-25 14:05:54', '2014-07-25 15:13:50', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('282', '3', '84', 'LZJQ', '兰州南宁库', '罗测试', null, null, '2014-07-25 14:06:22', '2014-07-25 15:14:14', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('283', '3', '85', 'NJJQ', '南京江宁库', '罗测试', null, null, '2014-07-25 14:07:13', '2014-07-25 15:14:49', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('284', '3', '86', 'GZJQ', '广州越秀库', '罗测试', null, null, '2014-07-25 14:07:44', '2014-07-25 15:15:21', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('285', '3', '87', 'JNJQ', '济南长清库', '罗测试', '2014-07-30 00:00:00', '2014-07-31 00:00:00', '2014-07-25 14:09:09', '2014-08-01 15:20:42', '2');
INSERT INTO `t_data_dictionary_value` VALUES ('286', '4', '11', 'Day_30', '30', '产品30天后自动下架', '2014-08-01 00:00:00', '2014-08-01 00:00:00', '2014-07-25 15:23:27', '2015-07-03 21:53:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('287', '7', '60', 'SERVICE_LIANQINGBAOZHANG', '联勤保障服务', '罗测试', null, null, '2014-07-25 16:21:46', '2014-07-25 16:21:46', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('288', '60', '13', '13', '13', '13', '2014-07-25 00:00:00', '2014-07-31 00:00:00', '2014-07-25 16:21:57', '2014-07-28 19:52:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('289', '6', '37', 'UNIT_Tao', '套', '套', null, null, '2014-07-25 18:54:39', '2014-09-02 10:24:41', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('290', '6', '38', 'UNIT_Jia', '架', '架', null, null, '2014-07-25 18:55:15', '2014-09-02 10:24:49', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('291', '6', '39', 'UNIT_TAI', '台', '台', null, null, '2014-07-25 18:56:01', '2014-09-02 10:24:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('292', '6', '40', 'UNIT_FU', '副', '副', null, null, '2014-07-25 18:56:39', '2014-09-02 10:25:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('295', '2', '1000', 'Hours_96', '96', '96小时', null, null, '2014-07-28 17:27:49', '2014-07-29 15:54:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('302', '19', '400', 'SMS_AUTHEN_PERSONAL_SUCCESS', '实名认证成功', '尊敬的用户,您的账户{name}已通过尾号为{idcard}的身份证实名认证。如有疑问请询400-645-5158', null, null, '2014-08-01 10:22:50', '2015-04-16 00:15:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('303', '19', '410', 'SMS_AUTHEN_PERSONAL_FAIL', '实名认证失败', '尊敬的用户,您的账户{name}的实名认证因{reason}原因认证失败,您可以重新提交实名认证申请。如有疑问请询400-645-5158\r\n', null, null, '2014-08-01 10:23:27', '2015-04-16 00:15:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('304', '19', '420', 'SMS_AUTHEN_ENTERPRISE_SUCCESS', '企业认证成功', '尊敬的用户,您的账户{name}已通过营业执照尾号为{number}的企业认证。如有疑问请询400-645-5158', null, null, '2014-08-01 10:23:56', '2015-04-16 00:16:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('305', '19', '430', 'SMS_AUTHEN_ENTERPRISE_FAIL', '企业认证失败', '尊敬的用户,您的账户{name}的企业认证因{reason}原因认证失败,您可以重新提交企业认证申请。如有疑问请询400-645-5158', null, null, '2014-08-01 10:24:23', '2015-04-16 00:16:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('306', '19', '440', 'SMS_OPEN_STORE_SUCCESS_CONTENT', '开店申请成功', '尊敬的会员,您的开店申请已通过。如有疑问请询400-645-5158', null, null, '2014-08-01 10:24:50', '2015-04-16 00:16:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('307', '19', '450', 'SMS_OPEN_STORE_FAIL_CONTENT', '开店申请失败', '尊敬的会员,您的开店申请被拒绝。如有疑问请询400-645-5158', null, null, '2014-08-01 10:25:27', '2015-04-16 00:16:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('310', '71', '10', 'REASON_DOMAIN', '域名', '域名不符合要求', null, null, '2014-08-04 11:18:27', '2014-08-04 18:31:26', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('311', '71', '20', 'REASON_CATEGORY', '类目', '类目不符合要求', null, null, '2014-08-04 11:18:50', '2014-08-04 11:18:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('312', '71', '100', 'OTHER', '其他', '其他信息', null, null, '2014-08-04 11:19:17', '2014-08-04 11:19:17', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('314', '18', '20', 'EMAIL_CONTENT_FIND_PWD', '地利批发找回密码验证邮件', '<p>\r\n <span style=\"font-size:12px\">您好:<br/> 您在访问地利批发网站时点击了“忘记密码”操作,这是一封密码重置确认邮件。如果您并未尝试修改登录密码,请忽略本邮件。<br/> <strong>安全提示:</strong><br/> <span style=\"color:#ff0000\">安全校验码:{code}<br/> 您可以通过安全校验码重设您的账户登录密码,校验码有效期为24小时,请在有效期内使用,如果<br/>超出有效期请重新获取!</span><br/><br/>邮件中包含您的个人信息,建议您保管好本邮件!<br/><br/>请把发件人邮箱加入白名单,以确保正常及时接收邮件。 <br/>您之所以收到这封邮件,是因为您曾经注册成为地利批发的用户。<br/>本邮件由地利批发系统自动发出,请勿直接回复!<br/>在购物中遇到任何问题,请点击<a href=\"http://www.dili7.com/helpcenter.html\" target=\"_blank\">帮助中心</a>。<br/>如果您有任何疑问或建议,请<a target=\"_blank\" href=\"http://www.dili7.com/helpcenter/articles.html?categoryId=3\">联系我们</a>。</span>\r\n</p>\r\n', null, null, '2014-08-11 16:00:34', '2014-08-14 17:41:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('317', '6', '41', 'UNIT_XINANG', '箱', '箱', null, null, '2014-08-15 08:31:57', '2014-08-15 08:31:57', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('315', '3', '90', 'hadayouyi', '哈尔滨友谊批发市场', '哈尔滨友谊批发市场', '2014-08-12 00:00:00', null, '2014-08-12 10:50:44', '2014-09-24 18:34:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('316', '3', '100', 'haerbinyongxing', '哈尔滨永兴买卖街批发市场', '哈尔滨永兴买卖街批发市场', null, null, '2014-08-12 10:51:20', '2014-08-12 10:51:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('318', '6', '42', 'UNIT_DAI', '袋', '袋', null, null, '2014-08-20 09:11:48', '2014-08-20 09:11:48', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('319', '15', '40', '40', '制造业', '制造业', null, null, '2014-09-02 10:22:02', '2014-09-02 10:22:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('320', '15', '50', '50', '采矿业', '采矿业', null, null, '2014-09-02 10:22:17', '2014-09-02 10:22:17', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('321', '15', '60', '60', '纺织业', '纺织业', null, null, '2014-09-02 10:22:35', '2014-09-02 10:22:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('322', '15', '70', '70', '建筑业', '建筑业', null, null, '2014-09-02 10:22:50', '2014-09-02 10:22:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('323', '15', '80', '80', '交通运输', '交通运输', null, null, '2014-09-02 10:23:06', '2014-09-02 10:23:06', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('324', '15', '90', '90', '批发和零售业', '批发和零售业', null, null, '2014-09-02 10:23:22', '2014-09-02 10:23:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('325', '3', '110', '110', '安塞寿光批发市场', '安塞寿光批发市场', null, null, '2014-09-02 10:29:50', '2014-09-02 10:29:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('326', '3', '120', '120', '东宁宝荣中俄批发市场', '东宁宝荣中俄批发市场', null, null, '2014-09-02 10:30:09', '2014-09-02 10:30:09', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('327', '16', '90', '90', '英国', '英国', null, null, '2014-09-02 10:39:49', '2014-09-02 10:40:01', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('328', '16', '100', '100', '德国', '德国', null, null, '2014-09-02 10:40:16', '2014-09-02 10:40:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('329', '16', '110', '110', '法国', '法国', null, null, '2014-09-02 10:40:32', '2014-09-02 10:40:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('330', '16', '120', '120', '新西兰', '新西兰', null, null, '2014-09-23 15:44:27', '2014-09-23 15:44:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('331', '16', '130', '130', '南非', '南非', null, null, '2014-09-23 15:44:43', '2014-09-23 15:44:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('332', '16', '140', '140', '越南', '越南', null, null, '2014-09-23 15:44:59', '2014-09-23 15:44:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('333', '16', '150', '150', '阿根廷', '阿根廷', null, null, '2014-09-23 15:45:13', '2014-09-23 15:45:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('334', '16', '160', '160', '澳大利亚', '澳大利亚', null, null, '2014-09-23 15:45:28', '2014-09-23 15:45:28', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('335', '16', '170', '170', '智利 ', '智利 ', null, null, '2014-09-23 15:45:43', '2014-09-23 15:45:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('336', '16', '180', '180', '菲律宾', '菲律宾', null, null, '2014-09-23 15:45:58', '2014-09-23 15:45:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('337', '16', '190', '190', '泰国', '泰国', null, null, '2014-09-23 15:46:17', '2014-09-23 15:46:17', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('338', '16', '200', '200', '意大利', '意大利', null, null, '2014-09-23 15:46:45', '2015-04-14 17:58:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('339', '16', '210', '210', '文莱', '文莱', null, null, '2014-09-23 15:47:00', '2015-04-14 17:58:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('340', '16', '220', '220', '其他国家', '国外', null, null, '2014-09-23 15:47:22', '2014-12-24 09:31:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('341', '51', '10', '10', '未报价', '未报价', null, null, '2014-09-03 23:16:10', '2014-09-03 23:16:10', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('342', '51', '20', '20', '商家报价超时', '商家报价超时', null, null, '2014-09-03 23:16:29', '2014-09-03 23:16:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('343', '51', '30', '30', '商家已报价', '商家已报价', null, null, '2014-09-03 23:16:43', '2014-09-03 23:16:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('344', '51', '40', '40', '地利已报价', '地利已报价', null, null, '2014-09-03 23:16:54', '2014-09-03 23:16:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('345', '76', '2', '2', '常用语请添加到描述', '实单采购,请报成本加运费到达价格。', null, null, '2014-09-16 22:24:22', '2014-09-16 22:33:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('346', '76', '0', '0', '常用语请添加到描述', '请贵方给出相应产品最低报价和最优惠的条件。', null, null, '2014-09-16 22:23:49', '2014-09-16 22:33:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('347', '76', '1', '1', '常用语请添加到描述', '只求有货,价钱好商量,请速速联系。', null, null, '2014-09-16 22:24:11', '2014-09-16 22:33:21', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('348', '75', '10', '10', '发布商品', '发布商品', null, null, '2014-08-28 18:53:09', '2014-08-28 18:53:09', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('349', '75', '20', '20', '不发布商品', '不发布商品', null, null, '2014-08-28 18:53:28', '2014-08-28 18:53:28', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('350', '74', '10', '10', '纸箱', '纸质包装箱', null, null, '2014-08-22 18:21:44', '2014-08-22 18:28:36', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('351', '74', '20', '20', '纸质包装袋', '纸质包装袋', null, null, '2014-08-22 18:24:11', '2014-08-22 18:28:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('352', '74', '30', '30', '塑料包装袋', '塑料包装袋', null, null, '2014-08-22 18:24:45', '2014-08-22 18:28:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('353', '2', '0', 'Hours_0', '0', '现货', null, null, '2014-10-20 11:13:40', '2014-10-20 11:13:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('354', '19', '460', 'SMS_ORDER_MODIFY_BY_MANAGER_TO_BUYER', '订单修改提醒买家', '尊敬的采购商,您提交的采购单{orderId}的{action}已修改,请按修改后金额到指定银行汇款或到地利物流园区付款。如有疑问请询400-645-5158', null, null, '2014-10-24 16:01:33', '2015-04-16 00:17:06', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('355', '16', '230', '230', '以色列', '以色列', null, null, '2014-11-07 09:46:39', '2014-11-07 09:46:39', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('356', '16', '240', '240', '荷兰', '荷兰', null, null, '2014-11-07 09:46:58', '2014-11-07 09:46:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('358', '6', '50', '50', '桶', '桶', null, null, '2014-11-07 09:49:22', '2014-11-07 09:49:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('359', '6', '60', '60', '克', '克', null, null, '2014-11-07 09:49:58', '2014-11-07 09:49:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('360', '6', '70', '70', '千克', '千克', null, null, '2014-11-07 09:50:13', '2014-11-07 09:50:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('361', '6', '80', '80', '筐', '筐', null, null, '2014-11-10 18:38:30', '2014-11-10 18:38:30', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('362', '6', '36', 'UNIT_HE', '盒', '盒', null, null, '2014-11-11 13:46:35', '2014-11-11 13:46:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('363', '16', '260', '260', '厄瓜多尔', '厄瓜多尔', null, null, '2014-11-11 15:16:59', '2014-11-11 15:16:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('654', '111', '4', 'shipments_to_ late', '未按约定发货', '未按约定发货', null, null, '2016-09-18 16:12:19', '2016-09-18 16:12:19', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('653', '111', '3', 'badly_broken', '破损严重', '破损严重', null, null, '2016-09-18 16:11:32', '2016-09-18 16:11:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('411', '44', '45', '45', '待收货', '待收货', null, null, '2015-05-10 17:57:56', '2015-05-10 17:57:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('406', '16', '330', '330', '老挝', '正常', null, null, '2015-05-09 12:28:07', '2015-05-09 13:34:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('384', '42', '12', '10-p20', '待付款-线下付款', '1、您选择了线下付款,请在#orderStatusLastValidTime#前联系卖家并付款,否则订单将自动取消。<br/>\r\n2、如果你不想购买,<a href=\"javascript:cancelOrder();\" class=\"a-link\">取消订单</a>', null, null, '2015-04-20 17:10:58', '2015-05-10 18:30:19', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('368', '79', '1', 'shucai', '蔬菜', '介绍蔬菜在手机端显示', '2015-01-23 00:00:00', '2015-01-23 00:00:00', '2015-01-23 17:23:31', '2015-01-23 17:28:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('369', '38', '30', '30', '保密', '保密', null, null, '2015-01-29 19:21:48', '2015-01-29 19:22:15', '0');
INSERT INTO `t_data_dictionary_value` VALUES ('370', '46', '50', '50', '线上付款', '线上付款', null, null, '2015-01-29 19:23:26', '2015-01-29 19:23:26', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('371', '80', '1', '10', '上门自提', '上门自提', null, null, '2015-04-02 17:35:01', '2015-04-02 17:35:01', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('372', '80', '2', '20', '送货上门', '送货上门', null, null, '2015-04-02 17:35:20', '2015-04-02 17:35:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('373', '19', '470', 'SMS_REMIND_STOCKUP_TO_SELLER', '采购商提醒备货', '尊敬的供应商,您{orderId}的销售单还未备货,采购商提醒您尽快备货。如有疑问请询{hotLine}', null, null, '2015-04-02 17:38:57', '2015-04-02 17:38:57', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('374', '19', '480', 'SMS_REMIND_PAY_TO_BUYER', '供应商提醒付款', '尊敬的采购商,您{orderId}的采购单还未付款,供应商提醒您尽快付款。如有疑问请询{hotLine}', null, null, '2015-04-02 17:39:27', '2015-04-02 17:39:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('375', '19', '490', 'SMS_REMIND_PICKUP_TO_BUYER', '供应商提醒提货', '尊敬的采购商,您{orderId}的采购单还未提货,供应商提醒您尽快完成提货。如有疑问请询{hotLine}', null, null, '2015-04-02 17:39:52', '2015-04-02 17:39:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('376', '16', '270', '270', '缅甸', '正常', null, null, '2015-04-14 16:20:14', '2015-04-14 16:20:14', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('377', '16', '280', '280', '印度尼西亚', '正常', null, null, '2015-04-14 16:20:39', '2015-04-14 16:20:39', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('378', '16', '290', '290', '墨西哥', '正常', null, null, '2015-04-14 16:21:00', '2015-04-14 16:21:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('379', '16', '300', '300', '土耳其', '正常', null, null, '2015-04-14 16:21:18', '2015-04-14 16:21:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('380', '16', '310', '310', '秘鲁', '正常', null, null, '2015-04-14 16:21:37', '2015-04-14 16:21:37', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('381', '16', '320', '320', '埃及', '正常使用', null, null, '2015-04-14 16:21:56', '2015-04-15 10:55:31', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('394', '41', '52', '50-p20', '交易完成-线下付款', '订单已于#orderStatusInTime#完成交易', null, null, '2015-04-20 17:18:23', '2015-05-10 19:07:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('397', '81', '30', '30', '备货中', '备货中', null, null, '2015-04-20 17:20:40', '2015-04-20 17:20:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('398', '81', '40', '40', '待提货', '待提货', null, null, '2015-04-20 17:20:51', '2015-05-10 17:54:38', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('399', '81', '50', '50', '交易完成', '交易完成', null, null, '2015-04-20 17:21:02', '2015-04-20 17:21:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('400', '81', '60', '60', '已过期', '已过期', null, null, '2015-04-20 17:21:12', '2015-04-20 17:21:12', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('401', '81', '70', '70', '已取消', '已取消', null, null, '2015-04-20 17:21:23', '2015-04-20 17:21:23', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('402', '81', '80', '80', '申请退款中', '申请退款中', null, null, '2015-04-20 17:21:34', '2015-04-20 17:21:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('403', '81', '90', '90', '已退款', '已退款', null, null, '2015-04-20 17:21:47', '2015-04-20 17:21:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('404', '19', '1', 'SMS_ORDER_THIRD_DELIVERY_VER_CODE_TO_BUYER', '第三订单提货验证码短信买家', '尊敬的用户,订单{orderId}的取货码为{verCode},请取货时向卖家出示该条短信,如有疑问请询{hotLine}', null, null, '2015-04-20 17:22:25', '2015-10-19 11:28:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('405', '19', '2', 'SMS_ORDER_THIRD_DELIVERY_VER_CODE_TO_SELLER', '第三订单提货验证码短信卖家', '尊敬的用户,订单{orderId}的取货码为{verCode},请取货时向买家核对验证码,如有疑问请询{hotLine}', null, null, '2015-04-20 17:22:44', '2015-10-19 11:28:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('407', '81', '45', '45', '待收货', '待收货', null, null, '2015-05-10 17:55:08', '2015-05-10 17:55:08', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('408', '81', '15', '15', '待审核', '待审核(赊帐付款订单)', null, null, '2015-05-10 17:55:43', '2015-05-10 17:55:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('409', '10', '40', '40', '赊账付款', '赊账付款', null, null, '2015-05-10 17:56:25', '2015-05-10 17:56:25', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('410', '44', '15', '15', '待审核', '待审核', null, null, '2015-05-10 17:57:07', '2015-05-10 17:57:07', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('412', '45', '15', '15', '待审核', '待审核', null, null, '2015-05-10 17:59:50', '2015-05-10 17:59:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('413', '45', '45', '45', '待收货', '待收货', null, null, '2015-05-10 18:00:34', '2015-05-10 18:00:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('414', '19', '500', 'SMS_ORDER_THIRD_ONLINE_PAID_TO_SELLER', '第三方订单线上付款已支付卖家', '尊敬的用户,有一条新订单{orderId}已完成网上付款,请及时查看并备货,如有疑问请询{hotLine}', null, null, '2015-05-10 18:02:47', '2015-05-10 18:02:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('415', '19', '510', 'SMS_ORDER_THIRD_SELF_OFFLINE_AUTODELIVERED_HINT', '第三方订单自动完成前短信提醒1', '尊敬的用户,您的订单{orderId}还未完成提货,订单将在{autoDeliveredTime}后自动完成交易,请及时处理,您可以通过延期提货操作延长提货时间,如有疑问请询{hotLine}', null, null, '2015-05-10 18:03:18', '2015-05-10 18:03:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('416', '19', '520', 'SMS_ORDER_THIRD_SELF_ONLINE_AUTODELIVERED_HINT', '第三方订单自动完成前短信提醒2', '尊敬的用户,您的订单{orderId}还未完成提货,订单将在{autoDeliveredTime}后自动完成交易并结算货款给卖家,请及时处理,您可以通过延期提货操作延长提货时间,如有疑问请询{hotLine}', null, null, '2015-05-10 18:03:50', '2015-05-10 18:03:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('417', '19', '530', 'SMS_ORDER_THIRD_DELIVERY_ONLINE_AUTODELIVERED_HINT', '第三方订单自动完成前短信提醒3', '尊敬的用户,您的订单{orderId}还未完成收货,订单将在{autoDeliveredTime}后自动完成交易并结算货款给卖家,请及时处理,您可以通过延期提货操作延长提货时间,如有疑问请询{hotLine}', null, null, '2015-05-10 18:04:29', '2015-05-10 18:04:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('418', '19', '540', 'SMS_ORDER_THIRD_DELIVERY_OFFLINE_AUTODELIVERED_HINT', '第三方订单自动完成前短信提醒4', '尊敬的用户,您的订单{orderId}还未完成收货,订单将在{autoDeliveredTime}后自动完成交易,请及时处理,您可以通过延期收货操作延长收货时间,如有疑问请询{hotLine}', null, null, '2015-05-10 18:04:52', '2015-05-10 18:04:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('419', '19', '550', 'SMS_ORDER_THIRD_BUYER_APPLY_REFUND_TO_SELLER', '第三方订单买家申请退款-卖家', '尊敬的用户,订单{orderId}买家申请了退款,请及时查看并处理,如有疑问请询{hotLine}', null, null, '2015-05-10 18:05:56', '2015-05-10 18:05:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('420', '19', '560', 'SMS_ORDER_THIRD_ONLINE_SELLER_APPROVE_REFUND_TO_BUYER', '第三方订单线上付款卖家同意退款', '尊敬的用户,卖家同意了您的退款申请,订单{orderId}已被取消,退款金额{refundAmount}将在3-10个工作日内结算到您的账户,请注意查收,如有疑问请询{hotLine}', null, null, '2015-05-10 18:06:20', '2015-12-02 16:16:30', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('421', '19', '570', 'SMS_ORDER_THIRD_OFFLINE_SELLER_APPROVE_REFUND_TO_BUYER', '第三订单线下付款卖家同意退款', '尊敬的用户,卖家同意了您的退款申请,您采用了线下付款,请联系卖家退回货款,如有疑问请询{hotLine}', null, null, '2015-05-10 18:06:47', '2015-05-10 18:06:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('422', '19', '580', 'SMS_ORDER_THIRD_OFFLINE_SELLER_REFUSE_REFUND_TO_BUYER', '第三方订单线下付款卖家拒绝退款', '尊敬的用户,您的退款申请被卖家拒绝,请及时查看处理,如有疑问请询{hotLine}', null, null, '2015-05-10 18:07:12', '2015-05-10 18:07:12', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('423', '19', '590', 'SMS_ORDER_THIRD_ONLINE_AUTODELIVERED_TO_BUYER', '第三方订单线上付款自动完成', '尊敬的用户,您的订单{orderId}因未及时确认提货/收货,系统已自动处理,货款已支付给卖家,详询{hotLine}', null, null, '2015-05-10 18:07:42', '2015-12-26 15:22:00', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('424', '19', '600', 'SMS_ORDER_THIRD_OFFLINE_AUTODELIVERED_TO_BUYER', '第三方订单线下付款自动结算', '尊敬的用户,您的订单{orderId}因未及时确认提货/收货,系统已自动处理,货款已支付给卖家{hotLine}', null, null, '2015-05-10 18:08:05', '2015-12-26 15:23:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('425', '19', '610', 'SMS_ORDER_THIRD_CREDIT_PAY_SUBMIT_TO_SELLER', '第三方赊账付款订单提交-卖家', '尊敬的用户,有一条赊账付款订单{orderId},请尽快完成审核,如有疑问请询{hotLine}', null, null, '2015-05-10 18:15:48', '2015-05-10 18:15:48', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('426', '19', '620', 'SMS_ORDER_THIRD_ONLINE_SELLER_REFUSE_REFUND_TO_BUYER', '第三方订单线上付款卖家拒绝退款', '尊敬的用户,您的退款申请被卖家拒绝,请及时查看处理,如有疑问请询{hotLine}', null, null, '2015-05-10 18:16:14', '2015-05-10 18:52:36', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('427', '42', '15', '15', '待审核-赊账付款', '1、您的赊账付款订单卖家正在审核中,订单将在#orderStatusLastValidTime#自动过期,请联系卖家及时确认<br/>\r\n2、如果你不想购买,<a href=\"javascript:cancelOrder();\" class=\"a-link\">取消订单</a>', null, null, '2015-05-10 18:32:22', '2015-05-10 18:32:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('428', '42', '31', '30-p10', '备货中-线上付款', '1、订单正在备货中,请耐心等待。<br/>\r\n2、如果你不想购买了,可以<a href=\"javascript:applyRefund();\" class=\"a-link\">申请退款</a>', null, null, '2015-05-10 18:40:15', '2015-05-10 18:40:15', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('429', '42', '32', '30-p20', '备货中-线下付款', '1、订单正在备货中,请耐心等待。<br/>\r\n2、如果你不想购买了,可以<a href=\"javascript:applyRefund();\" class=\"a-link\">申请退款</a>', null, null, '2015-05-10 18:41:03', '2015-05-10 18:41:03', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('430', '42', '34', '30-p40', '备货中-赊账付款', '订单正在备货中,请耐心等待。', null, null, '2015-05-10 18:41:40', '2015-05-10 18:41:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('431', '42', '44', '40-p40', '待提货-上门自提-赊账付款', '1、订单已于#stockingCompleteTime#备货完成,请在#orderStatusLastValidTime#前上门提货如不能按期提货,您可以<a href=\"javascript:delayDelivery();\" class=\"submitBtn\">延期提货</a><br/>\r\n2、如您已提货,请点击<a href=\"javascript:completeDelivery();\" class=\"submitBtn\">确认提货</a>超期未确认提货,系统会默认为已提货。', null, null, '2015-05-10 18:44:02', '2015-07-03 14:40:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('432', '42', '43', '45', '待收货', '1、卖家已于#stockingCompleteTime#完成发货,#shipInfo#。如不能按期收货,您可以<a href=\"javascript:delayDelivery();\" class=\"submitBtn\">延期收货</a><br/>\r\n2、如果您已经完成收货,请点击这里<a href=\"javascript:completeDelivery();\" class=\"submitBtn\">确认收货</a><br/>', null, null, '2015-05-10 18:46:16', '2016-09-21 17:27:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('433', '42', '45', '45-p40', '待收货-送货上门-赊账付款', '1、卖家已于#stockingCompleteTime#完成发货,#shipInfo#。如不能按期收货,您可以<a href=\"javascript:delayDelivery();\" class=\"submitBtn\">延期提货</a><br/>\r\n2、如果您已经完成收货,请点击这里<a href=\"javascript:completeDelivery();\" class=\"submitBtn\">确认收货</a>', null, null, '2015-05-10 18:46:52', '2016-09-21 17:28:05', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('434', '42', '51', '50-c1', '完成交易-已评价', '订单已于#orderStatusInTime#完成交易', null, null, '2015-05-10 18:47:54', '2015-05-10 18:47:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('435', '42', '91', '90-p10', '已退款-在线支付', '卖家于#orderStatusInTime#同意了您的退款申请,货款会在3-5个工作日内结算到您的账户,请注意查收', null, null, '2015-05-10 18:59:03', '2015-05-10 18:59:03', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('436', '42', '92', '90-p20', '已退款-线下付款', '卖家于#orderStatusInTime#同意了您的退款申请,请确保您已收到了退款。', null, null, '2015-05-10 18:59:36', '2015-05-10 18:59:36', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('437', '41', '15', '15', '待审核-赊账付款', '买家申请赊账付款,请在#orderStatusLastValidTime#前<a href=\"#checkout-pop\" class=\"submitBtn s-fancybox\">审核</a>该申请,否则订单将自动过期', null, null, '2015-05-10 19:02:33', '2015-05-10 19:02:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('438', '41', '45', '45', '待收货', '您已于#orderStatusInTime#完成发货,#shipInfo#等待买家确认收货,您可以 <a href=\"javascript:delayDelivery();\" class=\"submitBtn\">延期收货</a>', null, null, '2015-05-10 19:06:15', '2016-09-21 17:15:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('439', '41', '53', '50-p40', '交易完成-赊账付款', '订单已于#orderStatusInTime#完成交易,请及时联系买家收取赊账货款。', null, null, '2015-05-10 19:11:04', '2015-05-10 19:11:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('440', '82', '10', '10', '农丰网', 'nong12.com', null, null, '2015-05-13 15:17:00', '2015-06-15 21:25:31', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('441', '82', '20', '20', '地利生鲜', 'dilisx.com', '2016-04-24 00:00:00', '2016-04-24 00:00:00', '2015-05-13 15:17:13', '2016-04-25 14:43:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('442', '82', '30', '30', '农业指数', 'nongyezhishu.com', '2015-07-03 00:00:00', '2015-07-03 00:00:00', '2015-05-13 15:17:51', '2015-07-04 03:32:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('443', '82', '40', '40', '农业指数', 'dilindex.com', '2015-07-03 00:00:00', '2015-07-03 00:00:00', '2015-05-13 15:18:13', '2015-07-04 03:41:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('444', '19', '3', 'SMS_CONTENT_ACCOUNT_REGISTRATION', '账户注册', '尊敬的用户,您正在使用本手机注册农丰网,您的验证码为{1},请及时激活您的账户并完善资料。', null, null, '2015-06-01 14:31:34', '2015-09-10 18:12:10', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('445', '19', '4', 'SMS_CONTENT_RETRIEVE_PASSWORD', '密码找回', '尊敬的用户,您正在使用本手机进行密码找回,验证码为{1}。', null, null, '2015-06-01 14:32:07', '2015-09-15 17:35:14', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('446', '82', '50', '50', 'dili7', 'dili7.com', '2016-04-24 00:00:00', '2016-04-24 00:00:00', '2015-06-16 15:01:46', '2016-04-25 14:43:49', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('447', '81', '85', '85', '退款申诉中', '退款申诉中', null, null, '2015-07-03 14:33:14', '2015-07-03 14:33:14', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('448', '42', '85', '85', '退款申诉中', '农丰网正在处理您提出的退款申诉,并会您申诉后三天内处理完成,如有疑问,请联系农丰网客服,#serviceTelNo#', null, null, '2015-07-03 14:34:01', '2015-07-03 14:34:01', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('449', '41', '85', '85', '退款申诉中', '买家已于#orderStatusInTime#申请了退款申诉,我们的客服可能会联系您,您也可咨询农丰网客服,#serviceTelNo#', null, null, '2015-07-03 14:34:44', '2015-07-03 14:34:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('450', '21', '50', '50', '退款申诉处理中', '退款申诉处理中', null, null, '2015-07-03 14:54:41', '2015-07-03 14:54:41', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('451', '21', '60', '60', '退款申诉成功', '退款申诉成功', null, null, '2015-07-03 14:54:52', '2015-07-03 14:54:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('452', '21', '70', '70', '退款申诉失败', '退款申诉失败', null, null, '2015-07-03 14:55:03', '2015-07-03 14:55:03', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('453', '21', '80', '80', '退款申诉取消', '退款申诉取消', null, null, '2015-07-03 14:55:14', '2016-09-14 19:30:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('454', '19', '10020', 'SMS_ORDER_THIRD_BUYER_REFUND_APPEALING_TO_BUYER', '提交退款申诉-通知买家', '尊敬的用户,农丰网已经收到您关于订单{orderId}的退款申诉,我们会在3天内处理,如有疑问请询{hotLine}', null, null, '2015-07-03 14:56:37', '2015-07-03 14:56:37', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('455', '19', '10021', 'SMS_ORDER_THIRD_BUYER_REFUND_APPEALING_TO_SELLER', '提交退款申诉-通知卖家 ', '尊敬的用户,买家对订单{orderId}提交了退款申诉,我们会在3天内处理,您可登录网站查看详情,如有疑问请询{hotLine}', null, null, '2015-07-03 14:57:10', '2015-07-03 14:57:10', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('456', '19', '10022', 'SMS_ORDER_THIRD_REFUND_APPEAL_NOTPASS_TO_SELLER', '退款申诉审核不通过-通知卖家 ', '尊敬的用户,买家针对订单{orderId}提出的退款申诉已处理,经调查,农丰网拒绝了申诉,请登录您的账户中心查看详情,如有疑问请咨询{hotLine}', null, null, '2015-07-03 15:01:04', '2015-07-03 15:01:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('457', '19', '10023', 'SMS_ORDER_THIRD_REFUND_APPEAL_NOTPASS_TO_BUYER', '退款申诉审核不通过-通知买家', '尊敬的用户,对订单{orderId}提交的退款申诉已经处理,经调查,农丰网拒绝了您的申诉,请登录您的账户中心查看详情,如有疑问请咨询{hotLine}', null, null, '2015-07-03 15:01:54', '2015-07-03 15:01:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('458', '19', '10024', 'SMS_ORDER_THIRD_REFUND_APPEAL_PASS_TO_BUYER', '退款申诉审核通过-通知买家', '尊敬的用户,对订单{orderId}提交的退款申诉,我们已经处理,{refundMoney}已经退到您的账户,请登录您的账户中心查看详情', null, null, '2015-07-03 15:02:33', '2015-07-03 15:02:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('459', '19', '10025', 'SMS_ORDER_THIRD_REFUND_APPEAL_PASS_TO_SELLER', '退款申诉审核通过-通知卖家', '尊敬的用户,买家对订单{orderId}提出的退款申诉,我们已经处理, {refundMoney}已退到买家账号,请登录您的账户中心查看详情', null, null, '2015-07-03 15:03:38', '2015-07-03 15:03:38', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('461', '83', '1', '1', '销售', '销售', null, null, '2015-07-29 15:47:27', '2015-07-29 15:47:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('463', '83', '2', '2', '采购', '采购', null, null, '2015-07-29 15:47:39', '2015-07-29 15:47:39', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('465', '85', '1', '1', '图片不合格', '1', null, null, '2015-08-27 10:26:09', '2015-08-27 10:26:09', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('467', '85', '2', '2', '信息不合格', '2', null, null, '2015-08-27 10:26:20', '2015-08-27 10:26:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('469', '87', '1', '1', '酒店', '酒店', null, null, '2015-08-28 14:33:58', '2015-08-28 14:33:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('471', '87', '2', '2', '商超', '商超', null, null, '2015-08-28 14:34:14', '2015-08-28 14:34:14', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('473', '87', '3', '3', '水果超市', '水果超市', null, null, '2015-08-28 14:34:28', '2015-08-28 14:34:28', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('475', '87', '4', '4', '会所', '会所', null, null, '2015-08-28 14:34:41', '2015-08-28 14:34:41', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('477', '87', '5', '5', '食堂', '食堂', null, null, '2015-08-28 14:34:58', '2015-08-28 14:34:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('479', '87', '6', '6', '餐馆', '餐馆', null, null, '2015-08-28 14:35:09', '2015-08-28 14:35:09', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('481', '87', '7', '7', '其他', '其他', null, null, '2015-08-28 14:35:17', '2015-08-28 14:35:17', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('483', '89', '1', '1', '干线物流', '干线物流', null, null, '2015-08-28 14:37:11', '2015-08-28 14:37:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('485', '89', '2', '2', '同城配送', '同城配送', null, null, '2015-08-28 14:37:20', '2015-08-28 14:37:20', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('487', '91', '1', '1', '批发商户', '产地商户', null, null, '2015-08-28 14:38:01', '2015-08-28 21:20:49', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('489', '91', '2', '2', '产地商户', '批发商户', null, null, '2015-08-28 14:38:10', '2015-08-28 21:20:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('491', '91', '3', '3', '农户商户', '农户商户', null, null, '2015-08-28 14:38:19', '2015-08-28 14:38:19', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('493', '91', '4', '4', '零售商户', '零售商户', null, null, '2015-08-28 14:38:32', '2015-08-28 21:21:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('495', '91', '5', '5', '代购商户', '代购商户', null, null, '2015-08-28 14:38:41', '2015-08-28 21:21:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('497', '91', '6', '6', '物流商户', '物流商户', null, null, '2015-08-28 14:38:52', '2015-08-28 21:21:21', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('499', '93', '1', 'SMS_CONTENT_ACCOUNT_REGISTRATION_TMP', '注册验证码(临时)', '35698', null, null, '2015-08-28 19:13:52', '2015-09-10 17:09:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('501', '19', '20000', 'SMS_CONTENT_ACCOUNT_REGISTRATION_TMP', '注册验证码(临时)', '尊敬的用户,您的验证码为{1}打死都不要告诉别人哦!请及时激活您的账户并完善资料。', null, null, '2015-08-28 19:16:39', '2015-08-28 23:20:48', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('503', '42', '13', '10-p20-s', '待付款-线下付款-现场交易', '<div class=\"text-pad\"> <b class=\"pad-tip\">温馨提示:</b> <p class=\"text-p\"> 1、请等待卖家确认本次交易 </p> <p class=\"text-p\"> 2、如果你不想购买,可以<a href=\"javascript:cancelOrder();\" class=\"a-link\">取消订单</a> </p> </div>', '2015-08-27 00:00:00', '2017-08-30 00:00:00', '2015-08-28 21:07:50', '2015-10-23 10:40:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('505', '41', '99', '10-p20-s', '待付款-线下付款-现场交易', '<div class=\"text-pad\"> <b class=\"pad-tip\">温馨提示:</b> <p class=\"text-p\"> 1、请及时确认本次交易的真实性,您可以在#orderStatusLastValidTime#前<span id=\"cancellTradeBtn\" class=\"text-button\">取消</span>本次交易。 </p> <p class=\"text-p\"> 2、如确认无误,请<span class=\"text-button\" id=\"confirmReceiveBtn\">确认收款</span>完成本次交易。 </p> </div>', '2015-08-27 00:00:00', '2019-08-14 00:00:00', '2015-08-28 21:08:56', '2015-08-28 21:08:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('507', '93', '2', 'SMS_CONTENT_ACCOUNT_REGISTRATION', '注册临时码', '35698', null, null, '2015-09-10 14:11:30', '2015-09-10 17:09:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('509', '93', '123', 'SMS_CONTENT_RETRIEVE_PASSWORD', '找回密码短信模板', '35699', null, null, '2015-09-15 17:34:35', '2015-09-15 17:34:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('511', '80', '3', '30', '现场交易', '针对现场交易订单的交货方式', null, null, '2015-09-23 11:21:47', '2015-09-23 11:21:47', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('513', '19', '1000', 'SMS_PAY_TRADE_PASSWORD_RETRIEVE', '支付交易密码找回', '【地利宝】您正在找回支付密码,验证码为{1},请勿将验证码提供给他人,如非本人操作请致电4006455158', null, null, '2015-09-24 18:19:26', '2015-09-24 20:39:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('515', '93', '10', 'SMS_PAY_TRADE_PASSWORD_RETRIEVE', '支付交易密码找回', '39042', null, null, '2015-09-24 18:20:18', '2015-09-24 20:41:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('517', '95', '1', '1', '京', '京', null, null, '2015-09-28 17:09:21', '2015-09-30 17:15:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('519', '95', '2', '2', '津', '津', null, null, '2015-09-28 17:09:32', '2015-09-28 17:09:32', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('521', '95', '3', '3', '沪', '沪', null, null, '2015-09-28 17:09:46', '2015-09-28 17:09:46', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('523', '95', '4', '4', '渝', '渝', null, null, '2015-09-28 17:09:59', '2015-09-28 17:09:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('525', '95', '5', '5', '蒙', '蒙', null, null, '2015-09-28 17:10:10', '2015-09-28 17:10:10', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('527', '95', '6', '6', '新', '新', null, null, '2015-09-28 17:10:25', '2015-09-28 17:10:25', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('529', '95', '7', '7', '藏', '藏', null, null, '2015-09-28 17:10:39', '2015-09-28 17:10:39', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('531', '95', '8', '8', '宁', '宁', null, null, '2015-09-28 17:10:52', '2015-09-28 17:10:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('533', '95', '9', '9', '桂', '桂', null, null, '2015-09-28 17:11:13', '2015-09-28 17:11:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('535', '95', '10', '10', '黑', '黑', null, null, '2015-09-28 17:11:27', '2015-09-28 17:11:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('537', '95', '11', '11', '吉', '吉', null, null, '2015-09-28 17:11:38', '2015-09-28 17:11:38', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('539', '95', '12', '12', '辽', '辽', null, null, '2015-09-28 17:11:51', '2015-09-28 17:11:51', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('541', '95', '13', '13', '晋', '晋', null, null, '2015-09-28 17:12:05', '2015-09-28 17:12:05', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('543', '95', '14', '14', '冀', '冀', null, null, '2015-09-28 17:12:17', '2015-09-28 17:12:17', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('545', '95', '15', '15', '青', '青', null, null, '2015-09-28 17:12:29', '2015-09-28 17:12:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('547', '95', '16', '16', '鲁', '鲁', null, null, '2015-09-28 17:12:40', '2015-09-28 17:12:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('549', '95', '17', '17', '豫', '豫', null, null, '2015-09-28 17:12:52', '2015-09-28 17:12:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('551', '95', '18', '18', '苏', '苏', null, null, '2015-09-28 17:13:04', '2015-09-28 17:13:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('553', '95', '19', '19', '皖', '皖', null, null, '2015-09-28 17:13:16', '2015-09-28 17:13:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('555', '95', '20', '20', '浙', '浙', null, null, '2015-09-28 17:13:40', '2015-09-28 17:13:40', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('557', '95', '21', '21', '闽', '闽', null, null, '2015-09-28 17:13:52', '2015-09-28 17:13:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('559', '95', '22', '22', '赣', '赣', null, null, '2015-09-28 17:14:04', '2015-09-28 17:14:04', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('561', '95', '23', '23', '湘', '湘', null, null, '2015-09-28 17:14:15', '2015-09-28 17:14:15', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('563', '95', '24', '24', '鄂', '鄂', null, null, '2015-09-28 17:14:27', '2015-09-28 17:14:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('565', '95', '25', '25', '粤', '粤', null, null, '2015-09-28 17:14:41', '2015-09-28 17:14:41', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('567', '95', '26', '26', '琼', '琼', null, null, '2015-09-28 17:14:54', '2015-09-28 17:14:54', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('569', '95', '27', '27', '甘', '甘', null, null, '2015-09-28 17:15:05', '2015-09-28 17:15:05', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('571', '95', '28', '28', '陕', '陕', null, null, '2015-09-28 17:15:16', '2015-09-28 17:15:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('573', '95', '29', '29', '黔', '黔', null, null, '2015-09-28 17:15:30', '2015-09-28 17:15:30', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('575', '95', '30', '30', '云', '云', null, null, '2015-09-28 17:15:45', '2015-09-28 17:15:45', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('577', '95', '31', '31', '川', '川', null, null, '2015-09-28 17:15:56', '2015-09-28 17:15:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('579', '42', '46', '40-p10-s', '待提货-线上付款-现场交易', '1、如您已提货,请点击<a href=\"javascript:completeDelivery();\" class=\"submitBtn text-button\">确认提货</a>超期未确认提货,系统会默认为已提货。<br/> 2、如果你不想购买了,可以<a href=\"javascript:applyRefund();\" class=\"a-link\">申请退款</a>', null, null, '2015-10-23 10:31:54', '2015-11-25 18:18:10', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('581', '42', '14', '10-p10-s', '待付款-线上付款-现场交易', '1、请于#orderStatusLastValidTime#前完成付款,否则订单会自动取消。<br/> 2、如果你不想购买,<a href=\"javascript:cancelOrder();\" class=\"a-link\">取消订单</a> ', null, null, '2015-10-23 17:20:52', '2015-10-23 17:20:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('585', '97', '1', 'title', '版本升级通知', '农丰网平台业务升级重要通知', null, null, '2015-11-20 13:15:28', '2016-04-21 16:49:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('587', '97', '2', 'content', 'content', ' 尊敬的农丰网用户,关于本站业务升级的重要通知,请详见站内《关于农丰网平台业务升级重要通知》!感谢您对我们一如既往的支持!', '2016-04-21 00:00:00', '2016-05-21 00:00:00', '2015-11-20 13:16:25', '2016-04-21 16:41:39', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('629', '107', '1', 'SHOP_CLOSE_REASON_01', '店铺长期未经营', '店铺超过一定时间内没有商品,订单', null, null, '2016-03-10 10:39:02', '2016-03-10 10:39:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('589', '99', '1', '081805c00dbabcbd486a189b', 'app-pnr', 'app-pnr', null, null, '2015-12-02 16:59:22', '2015-12-02 16:59:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('591', '101', '1', '1', '拍摄视频与商品不符', '拍摄视频与商品不符', null, null, '2015-12-24 14:51:43', '2015-12-24 14:51:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('593', '93', '4', 'SMS_CONTENT_MODIFY_OLD_PHONE', '更换手机号', '59256', null, null, '2015-12-30 16:33:48', '2015-12-30 16:33:48', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('595', '19', '0', 'SMS_CONTENT_MODIFY_OLD_PHONE_TMP', '修改手机激活验证旧手机', '尊敬的用户,您正在修改您的激活手机,您的校验码为{1}。', null, null, '2016-01-04 10:44:54', '2016-01-04 10:45:11', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('597', '103', '5', '5', '待报价', '待报价', null, null, '2016-01-22 10:17:05', '2016-01-22 10:17:05', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('599', '103', '10', '10', '待付款', '待付款', null, null, '2016-01-22 10:17:18', '2016-01-22 10:17:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('601', '103', '30', '30', '待发货', '待发货', null, null, '2016-01-22 10:17:59', '2016-01-22 10:17:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('603', '103', '45', '45', '待收货', '待收货', null, null, '2016-01-22 10:18:16', '2016-01-22 10:18:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('605', '103', '50', '50', '交易完成', '交易完成', null, null, '2016-01-22 10:18:29', '2016-01-22 10:18:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('607', '103', '60', '60', '已过期', '已过期', null, null, '2016-01-22 10:18:44', '2016-01-22 10:18:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('609', '103', '70', '70', '已取消', '已取消', null, null, '2016-01-22 10:19:37', '2016-01-22 10:19:37', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('611', '103', '80', '80', '申请退款中', '申请退款中', null, null, '2016-01-22 10:19:59', '2016-01-22 10:19:59', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('613', '103', '85', '85', '退款申诉中', '退款申诉中', null, null, '2016-01-22 10:20:10', '2016-01-22 10:20:10', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('615', '103', '90', '90', '已退款', '已退款', null, null, '2016-01-22 10:20:22', '2016-01-22 10:20:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('617', '103', '110', '110', '已拒绝', '已拒绝', null, null, '2016-01-22 10:20:34', '2016-01-22 10:20:34', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('619', '105', '1', '1', '代买货', '代买货', null, null, '2016-01-22 10:21:08', '2016-01-22 10:21:08', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('621', '105', '2', '2', '代验货', '代验货', null, null, '2016-01-22 10:21:18', '2016-01-22 10:21:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('623', '105', '3', '3', '代集货', '代集货', null, null, '2016-01-22 10:21:30', '2016-01-22 10:21:30', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('625', '105', '4', '4', '代发货', '代发货', null, null, '2016-01-22 10:21:42', '2016-01-22 10:21:42', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('627', '80', '4', '40', '物流配送', '物流配送', null, null, '2016-01-22 23:02:42', '2016-01-22 23:03:21', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('631', '107', '2', 'SHOP_CLOSE_REASON_2', '店铺违反相关规定', '店铺因违反相关规则而关闭或注销', null, null, '2016-03-10 10:39:37', '2016-03-10 10:39:37', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('632', '17', '1', 'EMAIL_SMTP_ENABLESSL', 'false', '加密邮件', null, null, '2016-08-11 13:27:36', '2016-09-20 09:55:16', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('633', '16', '1000', '1000', '白俄罗斯', '编码值只能是数字,不要输入其他字符', null, null, '2016-08-11 19:15:21', '2016-09-07 09:58:55', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('634', '18', '1', 'EMAIL_CONTENT_ACCOUNT_REGISTRATION', '注册发送邮件验证码', '非常感谢注册一区一网,您的验证码是{code}', null, null, '2016-09-02 12:05:27', '2016-09-02 12:05:27', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('635', '18', '2', 'EMAIL_CONTENT_RETRIEVE_PASSWORD', '找回密码发送邮件验证码', '您正在使用邮箱找回密码,验证码为{code}。', null, null, '2016-09-02 12:06:33', '2016-09-02 12:06:33', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('636', '108', '1', '111', '北京自贸区', '北京自贸区', null, null, '2016-09-06 16:35:38', '2016-09-06 16:35:38', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('637', '108', '2', '112', '天津自贸区', '天津自贸区', null, null, '2016-09-06 16:36:22', '2016-09-06 16:36:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('638', '11', '15', '15', '已付款待确认', '已付款待确认', null, null, '2016-09-07 17:04:58', '2016-09-07 17:05:29', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('639', '109', '1', '1', '市场商户', '市场商户', null, null, '2016-09-08 11:27:53', '2016-09-08 11:27:53', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('640', '109', '2', '2', '企业单位', '企业单位', null, null, '2016-09-08 11:28:18', '2016-09-08 11:28:18', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('641', '109', '3', '3', '个体经营', '个体经营', null, null, '2016-09-08 11:28:35', '2016-09-08 11:28:35', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('642', '109', '4', '4', '个人', '个人', null, null, '2016-09-08 11:28:50', '2016-09-08 11:28:50', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('643', '21', '90', '90', '等待打款', '线下支付订单,卖家同意退款', null, null, '2016-09-09 17:56:15', '2016-09-09 17:56:25', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('655', '111', '5', 'fake', '假货', '假货', null, null, '2016-09-18 16:12:44', '2016-09-18 16:12:44', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('652', '111', '2', 'cargo_not_match_description', '商品与描述不符', '商品与描述不符', null, null, '2016-09-18 16:11:06', '2016-09-18 16:11:06', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('651', '111', '1', 'not_received_cargo', '未收到货', '未收到货', null, null, '2016-09-18 16:09:43', '2016-09-18 16:09:43', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('647', '112', '1', 'back_money_and_cargo', '退款退货', '退款退货', null, null, '2016-09-18 15:23:58', '2016-09-18 15:23:58', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('648', '112', '2', 'back_some_money', '不退货部分退款', '不退货部分退款', null, null, '2016-09-18 15:25:01', '2016-09-18 15:25:01', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('649', '112', '3', 'change_cargo', '要求换货', '要求换货', null, null, '2016-09-18 15:25:36', '2016-09-18 15:25:36', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('650', '112', '4', 'send_again', '要求补寄', '要求补寄', null, null, '2016-09-18 15:26:15', '2016-09-18 15:26:15', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('656', '111', '6', 'quantity_not_sufficient', '量不足', '量不足', null, null, '2016-09-18 16:13:52', '2016-09-18 16:13:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('657', '111', '7', 'logistics_problem', '物流问题', '物流问题', null, null, '2016-09-18 16:14:56', '2016-09-18 16:14:56', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('658', '111', '8', 'other', '其他', '其他', null, null, '2016-09-18 16:15:13', '2016-09-18 16:15:13', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('659', '114', '1', '301', '身份证', '身份证', null, null, '2016-09-20 11:38:21', '2016-09-20 11:38:21', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('660', '114', '2', '303', '护照', '护照', null, null, '2016-09-20 11:39:02', '2016-09-20 11:39:02', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('661', '115', '1', '1', '退款', '退款', null, null, '2016-09-21 10:36:52', '2016-09-21 10:36:52', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('662', '115', '2', '2', '退款退货', '退款退货', null, null, '2016-09-21 10:37:08', '2016-09-21 10:37:22', '1');
INSERT INTO `t_data_dictionary_value` VALUES ('663', '114', '3', '302', '工商营业执照', '工商营业执照', null, null, '2016-09-20 11:39:02', '2016-09-20 11:39:02', '1');
-- ----------------------------
-- Table structure for t_dili_service
-- ----------------------------
DROP TABLE IF EXISTS `t_dili_service`;
CREATE TABLE `t_dili_service` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`name` varchar(50) DEFAULT NULL COMMENT '服务名称',
`code` varchar(50) DEFAULT NULL COMMENT '服务编码',
`type` tinyint(4) DEFAULT NULL COMMENT '服务类型;1独立服务,2订单服务,3.通用服务',
`remark` varchar(500) DEFAULT NULL COMMENT '服务介绍',
`status` tinyint(4) DEFAULT NULL COMMENT '上架状态,0上架,1下架',
`creator` bigint(20) DEFAULT NULL COMMENT '操作人',
`downDate` datetime DEFAULT NULL COMMENT '下架时间',
`putawayDate` datetime DEFAULT NULL COMMENT '上架时间',
`modified` datetime NOT NULL COMMENT '操作时间',
`created` datetime NOT NULL COMMENT '创建时间',
`yn` tinyint(4) DEFAULT NULL COMMENT 'yn',
`image` varchar(256) DEFAULT NULL COMMENT '地利图片',
`category` tinyint(4) DEFAULT NULL,
`creator_name` varchar(50) DEFAULT NULL COMMENT '创建用户',
`icon` varchar(200) DEFAULT NULL COMMENT '服务小图标',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_dili_service
-- ----------------------------
-- ----------------------------
-- Table structure for t_dili_service_coverage
-- ----------------------------
DROP TABLE IF EXISTS `t_dili_service_coverage`;
CREATE TABLE `t_dili_service_coverage` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`service_id` bigint(20) DEFAULT NULL COMMENT '服务ID',
`coverage_id` bigint(20) DEFAULT NULL COMMENT '可服务区域',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_dili_service_coverage
-- ----------------------------
-- ----------------------------
-- Table structure for t_mail_history
-- ----------------------------
DROP TABLE IF EXISTS `t_mail_history`;
CREATE TABLE `t_mail_history` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`ip` varchar(30) DEFAULT NULL,
`sender` varchar(256) DEFAULT NULL,
`addressee` varchar(256) DEFAULT NULL,
`subject` varchar(256) DEFAULT NULL,
`content` text,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=171 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_mail_history
-- ----------------------------
-- ----------------------------
-- Table structure for t_operation_log
-- ----------------------------
DROP TABLE IF EXISTS `t_operation_log`;
CREATE TABLE `t_operation_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`op_type` tinyint(4) NOT NULL COMMENT '1:店铺审核、\r\n 2:用户锁定、\r\n 3:实名认证、\r\n 4:企业认证',
`data_id` bigint(20) NOT NULL,
`operator` varchar(256) CHARACTER SET utf8 NOT NULL,
`operator_id` bigint(20) NOT NULL,
`op_time` datetime NOT NULL,
`remark` varchar(512) CHARACTER SET utf8 DEFAULT NULL COMMENT '描述',
`op_reason` varchar(512) CHARACTER SET utf8 DEFAULT NULL,
`yn` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: 有效, 2:无效',
`created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'created',
`modified` datetime NOT NULL COMMENT 'modified',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=sjis COMMENT='店铺审核、用户锁定、实名认证、企业认证';
-- ----------------------------
-- Records of t_operation_log
-- ----------------------------
INSERT INTO `t_operation_log` VALUES ('1', '1', '3142', '七巧板管理员', '269', '2016-09-06 10:56:45', null, '', '1', '2016-09-06 10:56:45', '0000-00-00 00:00:00');
-- ----------------------------
-- Table structure for t_packup
-- ----------------------------
DROP TABLE IF EXISTS `t_packup`;
CREATE TABLE `t_packup` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`pickup_name` varchar(128) DEFAULT NULL,
`pickup_code` varchar(128) DEFAULT NULL,
`address_id` bigint(20) DEFAULT NULL,
`address_txt` varchar(256) DEFAULT NULL,
`description` varchar(512) DEFAULT NULL,
`is_market` int(11) DEFAULT NULL COMMENT '是否市场:1、 是市场 2、 不是市场',
`is_default` int(11) DEFAULT NULL COMMENT '是否默认,1、默认 2、非默认',
`longitude` varchar(128) DEFAULT NULL,
`latitude` varchar(128) DEFAULT NULL,
`abbreviation` varchar(128) DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`yn` int(11) NOT NULL DEFAULT '1',
`operate_id` bigint(20) DEFAULT NULL,
`operate_name` varchar(32) DEFAULT NULL,
`state` int(11) DEFAULT NULL,
`parent_pickId` bigint(20) DEFAULT NULL COMMENT '当不是市场的提货点所关联市场的id',
`relation_market` int(11) DEFAULT '0' COMMENT '是否关联市场',
`recommend` tinyint(4) DEFAULT '1',
`myself` tinyint(4) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='提货点和市场的记录';
-- ----------------------------
-- Records of t_packup
-- ----------------------------
INSERT INTO `t_packup` VALUES ('11', '成都大发市场', 'CDDAFA', '1510105', '弥顿道9号', '耗时长', '1', '1', '104.112547', '30.665078', '大发市场', '2016-09-12 14:41:17', '2016-09-12 15:02:44', '1', '260', '超级用户', null, null, null, '1', '1');
-- ----------------------------
-- Table structure for t_packup_contact
-- ----------------------------
DROP TABLE IF EXISTS `t_packup_contact`;
CREATE TABLE `t_packup_contact` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`packup_id` bigint(20) DEFAULT NULL,
`contact_name` varchar(128) DEFAULT NULL,
`contact_tel` varchar(16) DEFAULT NULL,
`craeted` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`yn` int(11) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='提货点联系人';
-- ----------------------------
-- Records of t_packup_contact
-- ----------------------------
INSERT INTO `t_packup_contact` VALUES ('1', '1', '张三', '13000000000', '2016-09-12 14:41:17', '2016-09-12 14:41:17', '1');
-- ----------------------------
-- Table structure for t_pickup_relation_city
-- ----------------------------
DROP TABLE IF EXISTS `t_pickup_relation_city`;
CREATE TABLE `t_pickup_relation_city` (
`packup_id` bigint(20) DEFAULT NULL,
`city_id` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='提货点关联城市中间表';
-- ----------------------------
-- Records of t_pickup_relation_city
-- ----------------------------
INSERT INTO `t_pickup_relation_city` VALUES ('1', '171');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '172');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '173');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3401');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '10');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3501');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3502');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3503');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17105');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3506');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3509');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17108');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3507');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17111');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17112');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17113');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3508');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '3510');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17116');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17117');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17118');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17119');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17124');
INSERT INTO `t_pickup_relation_city` VALUES ('1', '17125');
-- ----------------------------
-- Table structure for t_shop_close_history
-- ----------------------------
DROP TABLE IF EXISTS `t_shop_close_history`;
CREATE TABLE `t_shop_close_history` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`shop_name` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '店铺名称',
`shop_id` bigint(20) DEFAULT NULL COMMENT '店铺ID',
`shop_type` tinyint(4) DEFAULT NULL COMMENT '店铺类型',
`credit_auth` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '诚信认证等级',
`place_auth` tinyint(4) DEFAULT NULL COMMENT '实地认证1:否,2:是',
`is_credit` tinyint(4) DEFAULT NULL COMMENT '是否失信1:否,2:是',
`open_time` datetime DEFAULT NULL COMMENT '开店时间',
`req_close_time` datetime DEFAULT NULL COMMENT '申请关闭时间',
`mobile` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '注册手机',
`state` tinyint(4) DEFAULT NULL COMMENT '1:待审核,2:审核通过,3:审核失败',
`reason` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '原因',
`created` datetime DEFAULT NULL COMMENT '创建时间',
`modified` datetime DEFAULT NULL COMMENT '修改时间',
`yn` tinyint(4) DEFAULT NULL COMMENT '1:有效, 2:无效',
`other_reason` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '其他原因',
`refuse_reason` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '拒绝原因',
`close_type` tinyint(4) DEFAULT NULL COMMENT '4:关闭,5:注销',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of t_shop_close_history
-- ----------------------------
-- ----------------------------
-- Table structure for t_shop_name_modify
-- ----------------------------
DROP TABLE IF EXISTS `t_shop_name_modify`;
CREATE TABLE `t_shop_name_modify` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`new_shop_name` varchar(50) NOT NULL,
`old_shop_name` varchar(50) NOT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`yn` tinyint(4) DEFAULT NULL COMMENT '1:有效, 2:无效',
`shop_id` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`state` tinyint(4) NOT NULL COMMENT '1:待审核,2:审核通过,3:审核失败',
`refuse_reason` varchar(256) DEFAULT NULL COMMENT '审核失败理由',
`audit_time` datetime DEFAULT NULL COMMENT '审核时间',
`audit_user` varchar(50) DEFAULT NULL COMMENT '审核人',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=304 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_shop_name_modify
-- ----------------------------
-- ----------------------------
-- Table structure for t_system_config
-- ----------------------------
DROP TABLE IF EXISTS `t_system_config`;
CREATE TABLE `t_system_config` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`config_name` varchar(255) DEFAULT NULL,
`config_code` varchar(255) DEFAULT NULL,
`VALUE` varchar(1024) DEFAULT NULL,
`remark` varchar(3000) DEFAULT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`yn` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=84 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_system_config
-- ----------------------------
INSERT INTO `t_system_config` VALUES ('12', '私有域名', 'PRIVATE_DOMAIN', 'diligrp,dili7', null, '2014-06-26 10:31:22', '2014-08-22 16:29:48', '1');
INSERT INTO `t_system_config` VALUES ('2', '[订单]线上付款-待付款状态有效时间', 'Order_PaymentWait_ValidIdle', '24', '单位:小时', '2014-06-16 18:00:22', '2014-08-22 16:33:13', '1');
INSERT INTO `t_system_config` VALUES ('3', '[订单]待支付状态有效时间已 无效(不再使用)', 'Order_PaymentIn_ValidIdle', '10', '单位:分钟', '2014-06-16 18:00:42', '2015-01-30 14:33:24', '1');
INSERT INTO `t_system_config` VALUES ('4', '[订单]待分单超时告警时间', 'Order_DivideWait_ValidIdle', '1', '单位:小时', '2014-06-16 18:00:58', '2014-07-16 19:29:15', '1');
INSERT INTO `t_system_config` VALUES ('5', '[订单]第三方订单-待提货-自动结算等待时间', 'Order_Third_DeliveredWait_ValidIdle', '72', '单位:小时', '2014-06-16 18:01:14', '2015-10-16 11:05:54', '1');
INSERT INTO `t_system_config` VALUES ('6', '财务复核(弃用)', 'Financial_Review', '1', '0:不需要财务复核;1:需要财务复核', '2014-06-19 16:22:05', '2016-01-06 10:10:50', '1');
INSERT INTO `t_system_config` VALUES ('19', '[订单]订单确认提货后等待评论有效时间', 'Order_Auto_Commented_ValidIdle', '72', '单位:小时', '2014-07-15 01:38:08', '2015-09-08 15:33:20', '1');
INSERT INTO `t_system_config` VALUES ('20', '[订单]线下付款-待付款状态有效时间', 'Order_Offline_PaymentWait_ValidIdle', '2', '单位:小时', '2014-07-16 19:28:09', '2016-09-13 14:05:33', '1');
INSERT INTO `t_system_config` VALUES ('22', '[订单]订单提交成功,支付方式为在线支付且超过N小时未支付提醒', 'Order_PaymentWait_Prompt_ValidIdle', '1', '单位:小时', '2014-07-17 23:05:21', '2014-07-28 12:44:21', '1');
INSERT INTO `t_system_config` VALUES ('23', '问问', '问问', '问问', '问问', '2014-07-18 11:44:03', '2014-07-25 10:20:10', '2');
INSERT INTO `t_system_config` VALUES ('24', '客服号码', 'Client_Service_Hot_Line', '010-65816592-867', null, '2014-07-22 11:09:35', '2016-05-30 15:08:53', '1');
INSERT INTO `t_system_config` VALUES ('31', '订单', '地方', '多发点', null, '2014-08-04 11:01:00', '2014-08-08 18:36:28', '2');
INSERT INTO `t_system_config` VALUES ('33', '询价失效时间 (弃用)', 'QUOTATION_INQUIRY_INVALID_TIME', '1', '询价失效时间(小时) ', '2014-10-11 20:21:35', '2016-01-06 10:10:27', '1');
INSERT INTO `t_system_config` VALUES ('34', '敏感词过滤(弃用)', 'Minganci', '胡锦涛,习近平,民主,人权', '胡锦涛,习近平,民主,人权', '2014-11-25 19:51:59', '2016-01-06 10:10:09', '1');
INSERT INTO `t_system_config` VALUES ('35', '空间大小', 'spaceSize', '1G', '空间大小', '2014-12-09 23:02:54', '2014-12-09 23:02:54', '1');
INSERT INTO `t_system_config` VALUES ('37', '[订单]第三方订单买家最大允许延期结算次数', 'Order_Third_Buyer_Delay_Payment_Num', '3', '[订单]第三方订单买家最大允许延期结算次数', '2015-04-20 17:23:51', '2015-04-20 17:23:51', '1');
INSERT INTO `t_system_config` VALUES ('36', '[订单]第三方订单自动通过退款申请有效时间', 'Order_Third_AutoRefundPass_Wait_ValidIdle', '24', '(单位:小时)', '2015-04-02 17:36:20', '2015-04-02 17:36:20', '1');
INSERT INTO `t_system_config` VALUES ('38', '[订单]第三方订单卖家最大允许延期结算次数', 'Order_Third_Seller_Delay_Payment_Num', '3', '[订单]第三方订单卖家最大允许延期结算次数', '2015-04-20 17:24:36', '2015-05-13 11:24:08', '1');
INSERT INTO `t_system_config` VALUES ('39', '[订单]赊账付款-待审核状态有效时间', 'Order_Credit_AuditWait_ValidIdle', '2', '单位:小时', '2015-05-10 18:16:55', '2015-05-10 18:16:55', '1');
INSERT INTO `t_system_config` VALUES ('40', '[订单]第三方订单-待收货-自动结算等待时间', 'Order_Third_DeliveredWait_Receive_ValidIdle', '72', '单位:小时', '2015-05-10 18:17:19', '2015-09-23 11:05:22', '1');
INSERT INTO `t_system_config` VALUES ('41', '[订单]第三方订单送货上门线下付款订单自动结算前短信提醒等待时间', 'Order_Third_Delivery_Offline_AutoDelivered_Hint_ValidIdle', '24', '单位:小时', '2015-05-10 18:17:54', '2015-05-10 18:17:54', '1');
INSERT INTO `t_system_config` VALUES ('42', '[订单]第三方订单送货上门线上付款订单自动结算前短信提醒等待时间', 'Order_Third_Delivery_Online_AutoDelivered_Hint_ValidIdle', '24', '单位:小时', '2015-05-10 18:18:19', '2015-05-10 18:18:19', '1');
INSERT INTO `t_system_config` VALUES ('43', '[订单]第三方订单上门自提线上付款订单自动结算前短信提醒等待时间', 'Order_Third_Self_Online_AutoDelivered_Hint_ValidIdle', '24', '单位:小时', '2015-05-10 18:18:45', '2015-05-10 18:18:45', '1');
INSERT INTO `t_system_config` VALUES ('44', '[订单]第三方订单上门自提线下付款订单自动结算前短信提醒等待时间', 'Order_Third_Self_Offline_AutoDelivered_Hint_ValidIdle', '24', '单位:小时', '2015-05-10 18:19:17', '2015-05-10 18:19:17', '1');
INSERT INTO `t_system_config` VALUES ('45', '第三方订单延期结算默认天数', 'Order_Third_delayClearing_DefaultDay', '3', '单位:天', '2015-05-10 18:19:41', '2015-05-10 18:19:41', '1');
INSERT INTO `t_system_config` VALUES ('46', '用户注册万能注册码', 'USER_REGISTER_PASS_KEY', '1579478', '用户注册万能注册码', '2015-06-15 19:54:11', '2016-05-30 17:51:57', '1');
INSERT INTO `t_system_config` VALUES ('47', '[订单]第三方订单买家最大允许提交退款申请次数', 'Order_Third_Buyer_SubmitReOrder_Num', '2', '[订单]第三方订单买家最大允许提交退款申请次数', '2015-07-03 14:32:34', '2015-07-04 00:02:51', '1');
INSERT INTO `t_system_config` VALUES ('49', '修改店铺名间隔时间', 'Modify_Shop_Name_Wait_Time', '0', '修改店铺名间隔时间(单位小时)', '2015-07-16 15:36:41', '2015-07-16 18:20:29', '1');
INSERT INTO `t_system_config` VALUES ('51', '置顶排序商品数量 ', 'Product_Search_Sort_Count', '99', '置顶排序商品数量 ', '2015-08-27 10:25:39', '2015-12-06 13:56:55', '1');
INSERT INTO `t_system_config` VALUES ('53', '现场交易自动收款', 'Order_Spot_Delivered_ValidIdle', '120', '现场交易自动收款', '2015-08-28 14:39:26', '2015-11-20 16:20:44', '1');
INSERT INTO `t_system_config` VALUES ('55', 'PNR-APP首页统计数据乘以倍数', 'PNR_APP_HOME_MULTIPLIER_NUM', '7', 'PNR-APP首页统计数据乘以倍数', '2015-08-28 14:39:43', '2015-08-28 14:39:43', '1');
INSERT INTO `t_system_config` VALUES ('57', '农丰网RSA私钥', 'NONG12_RSA_PRIVATE_KEY', 'MIICdQIBADANBgkqhkiG9w0BAQEFAASCAl8wggJbAgEAAoGBALriso4XTewaj6I8gXIqp8ewl5wIRdpHt/8do4vGjxeREWqKbpGVCPCpTzx1uQKxZJTLY2pBA+OiTWKNh1776f5VvoBI3MzzXp8+s8yvBaXr2I/jImY9xzqlYgLr3x1KKpWSc9pOXu+bZdT1a5EtZtuSJWm6R5eYDjELyl/hKUt5AgMBAAECgYBy1MrcDiu+EJADIuRzDwyq4bI2mMq7FehT5JVSVH4l/+hQq6DG6Wll3tKmFrvIkNF5sAN1DV/jZh3gmY/9aBLdOroIzpRXan9KtY7l7p8/7gyGJ2mewU9EWD4BCIOPjT8ERYnlfmzqVt/hMiW+Pmw7Gya48pWYwBZxxfetSXhdFQJBAPSz2QTuLjE7X9dbO+GLpF/FW6uWurAu21jqWHjN1lqnl9WAfYxWQMwGY4HEOBqBRPpqmPAEZuUITxgcf55I3HsCQQDDg4HzZcYpXlfkjE99x+3/KerI6W6ejMKAFGiKZRJRYL3LGc3teGtZKI3jN6lNHQ1Hsw8iN8bfSYmO3pVo+lebAkALm8CO2FG+qidoyv4zO/GnTXCE2liu5Poo5K0fxfwGPu8YBMlv7+ORCjiMPme+8iT4kDgDIuJSuSsvZKK1OpWjAkAinJtazX+hPzRsH3LLH6PAcllALCMLKnwcVICVT4NIqMmwtObBzXmjlQxZVzc/kY8STF63fgxU5x3VDw6AQSFVAkAo6koD1q+da+l3secMQx9NnduD8P04l/zetnFKHn24HD8RxknzfCq9Sei1G3xlvwqpit++154nxjA2NaAEsw4j', '农丰网RSA私钥', '2015-09-10 14:08:53', '2015-09-10 14:08:53', '1');
INSERT INTO `t_system_config` VALUES ('59', '农丰网RSA公钥', 'NONG12_RSA_PUBLIC_KEY', 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC64rKOF03sGo+iPIFyKqfHsJecCEXaR7f/HaOLxo8XkRFqim6RlQjwqU88dbkCsWSUy2NqQQPjok1ijYde++n+Vb6ASNzM816fPrPMrwWl69iP4yJmPcc6pWIC698dSiqVknPaTl7vm2XU9WuRLWbbkiVpukeXmA4xC8pf4SlLeQIDAQAB', '农丰网RSA公钥', '2015-09-10 14:09:24', '2015-09-10 14:09:24', '1');
INSERT INTO `t_system_config` VALUES ('61', '支付RSA公钥', 'PAY_RSA_PUBLIC_KEY', 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDF0bqg7YL74FvkxEiQVFb4u6nDSZk8aUvi+0pmS86XS7J3nGWhgXidZHlfvecb2tJQyhJzYJRoym5lxjAL0dcTeUkftVXgzYfSJHcrpA8XmRY+B7/uLYkpiL7X5OW2zgkEo9nrfQGKqc+EAzSxEoTwNfwTBcT4wnpd4gFYqTMAQwIDAQAB', '支付RSA公钥', '2015-09-10 14:09:48', '2015-09-30 17:15:09', '1');
INSERT INTO `t_system_config` VALUES ('63', '退款待提货后退款金额比例', 'Order_Refund_Money_Factor ', '1.0', null, '2015-10-13 16:58:39', '2015-10-23 12:15:54', '1');
INSERT INTO `t_system_config` VALUES ('65', '退款比例', 'Order_Refund_Money_Factor', '1.0', null, '2015-10-23 17:59:33', '2015-10-23 17:59:33', '1');
INSERT INTO `t_system_config` VALUES ('67', '上线提醒内容(PC端)', 'ONLINE_REMIND_CONTENT', '温馨提示:不要轻信非农丰网官方任何形式的扣款、缴款等通知,以免上当。详见站内声明', '上线提醒内容', '2015-11-20 12:55:23', '2016-03-10 20:16:49', '1');
INSERT INTO `t_system_config` VALUES ('75', ' 第三方订单付款后多少小时未发货,短信通知卖家', 'Order_Third_Not_Send_Hint_ValidIdle', '1', '单位:小时', '2016-02-18 17:46:03', '2016-02-18 17:46:03', '1');
INSERT INTO `t_system_config` VALUES ('69', '上线提醒开关(PC端)', 'ONLINE_REMIND_SWITCH', '0', '0关闭,1开起,五分钟缓存', '2015-11-20 13:00:13', '2016-03-21 09:38:45', '1');
INSERT INTO `t_system_config` VALUES ('71', '是否展示系统通知(移动端)', 'IS_SHOW_NOTICE', 'yes', '是否展示通知 yes:展示, 其余字符表示不展示', '2015-11-20 13:08:56', '2016-04-21 16:20:22', '1');
INSERT INTO `t_system_config` VALUES ('73', '移动app下载链接', 'APP_DOWNLOAD_LINK', 'http://xiazai.nong12.com/Nong12_V2.3.3.apk', '移动app下载链接', '2015-11-25 15:11:58', '2016-03-10 18:43:53', '1');
INSERT INTO `t_system_config` VALUES ('77', '市场配送列表', 'Order_Third_Market_Delivery', '[{\'marketId\':17,\'userId\':992,\'mobile\':\'0451-86650106\'}]', 'json中marketId是哈达市场的id,userId是哈达市场在农丰网的用户id,mobile是在订单确认页显示用的联系电话', '2016-02-18 17:47:30', '2016-02-18 17:57:31', '1');
INSERT INTO `t_system_config` VALUES ('78', '收货后几天之内能申请理赔', 'AFTER_RECEIVE_CAN_APPLY_CLAIMS_DAYS', '1', '收货后几天之内能申请理赔', '2016-09-14 11:10:44', '2016-09-14 11:10:44', '1');
INSERT INTO `t_system_config` VALUES ('79', '买家最大允许提交理赔申请次数', 'Order_Third_Buyer_SubmitClaimsOrder_Num', '1', '[订单]第三方订单买家最大允许提交理赔申请次数', '2016-09-19 11:22:28', '2016-09-19 11:23:06', '1');
INSERT INTO `t_system_config` VALUES ('80', '订单佣金比例', 'ORDER_BROKERAGE_RATE', '1.5', '订单佣金抽取的比例,百分比;\r\n如:变量值为2,则表示 比例为 2%', '2016-09-19 16:33:43', '2016-09-19 16:33:43', '1');
INSERT INTO `t_system_config` VALUES ('81', '订单佣金抽取的最大值', 'ORDER_BROKERAGE_MAX_VALUE', '1000', '订单佣金抽取的最大值,先按比例计算,超过此阈值,则佣金为此值', '2016-09-19 16:45:46', '2016-09-19 16:45:46', '1');
INSERT INTO `t_system_config` VALUES ('82', '理赔退款比例', 'Order_Claims_Money_Factor', '1.0', '理赔退款比例', '2016-09-20 20:27:38', '2016-09-20 20:27:38', '1');
INSERT INTO `t_system_config` VALUES ('83', '订单完成后允许提交理赔申请的最大小时数(单位:小时)', 'AFTER_RECEIVE_CAN_APPLY_CLAIMS_HOURS', '24', null, '2016-09-21 18:13:59', '2016-09-21 18:13:59', '1');