zh.sql 975 KB
Newer Older
duanledexianxianxian's avatar
duanledexianxianxian committed
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
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100033", "1", "zh-cn", "110000", "北京", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100034", "1", "zh-cn", "120000", "天津", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100035", "1", "zh-cn", "130000", "河北", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100036", "1", "zh-cn", "140000", "山西", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100037", "1", "zh-cn", "150000", "内蒙古", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100038", "1", "zh-cn", "210000", "辽宁", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100039", "1", "zh-cn", "220000", "吉林", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100040", "1", "zh-cn", "230000", "黑龙江", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100041", "1", "zh-cn", "310000", "上海", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100042", "1", "zh-cn", "320000", "江苏", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100043", "1", "zh-cn", "330000", "浙江", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100044", "1", "zh-cn", "340000", "安徽", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100045", "1", "zh-cn", "350000", "福建", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100046", "1", "zh-cn", "360000", "江西", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100047", "1", "zh-cn", "370000", "山东", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100048", "1", "zh-cn", "410000", "河南", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100049", "1", "zh-cn", "420000", "湖北", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100050", "1", "zh-cn", "430000", "湖南", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100051", "1", "zh-cn", "440000", "广东", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100052", "1", "zh-cn", "450000", "广西", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100053", "1", "zh-cn", "460000", "海南", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100054", "1", "zh-cn", "500000", "重庆", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100055", "1", "zh-cn", "510000", "四川", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100056", "1", "zh-cn", "520000", "贵州", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100057", "1", "zh-cn", "530000", "云南", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100058", "1", "zh-cn", "540000", "西藏", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100059", "1", "zh-cn", "610000", "陕西", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100060", "1", "zh-cn", "620000", "甘肃", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100061", "1", "zh-cn", "630000", "青海", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100062", "1", "zh-cn", "640000", "宁夏", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100063", "1", "zh-cn", "650000", "新疆", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100064", "1", "zh-cn", "710000", "台湾", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100065", "1", "zh-cn", "810000", "香港", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100066", "1", "zh-cn", "820000", "澳门", "1", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100067", "100033", "zh-cn", "110100", "北京", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100068", "100034", "zh-cn", "120100", "天津", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100069", "100035", "zh-cn", "130100", "石家庄", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100070", "100035", "zh-cn", "130200", "唐山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100071", "100035", "zh-cn", "130300", "秦皇岛", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100072", "100035", "zh-cn", "130400", "邯郸", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100073", "100035", "zh-cn", "130500", "邢台", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100074", "100035", "zh-cn", "130600", "保定", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100075", "100035", "zh-cn", "130700", "张家口", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100076", "100035", "zh-cn", "130800", "承德", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100077", "100035", "zh-cn", "130900", "沧州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100078", "100035", "zh-cn", "131000", "廊坊", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100079", "100035", "zh-cn", "131100", "衡水", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103656", "100035", "zh-cn", "131200", "定州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103658", "100035", "zh-cn", "131300", "辛集", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100080", "100036", "zh-cn", "140100", "太原", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100081", "100036", "zh-cn", "140200", "大同", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100082", "100036", "zh-cn", "140300", "阳泉", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100083", "100036", "zh-cn", "140400", "长治", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100084", "100036", "zh-cn", "140500", "晋城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100085", "100036", "zh-cn", "140600", "朔州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100086", "100036", "zh-cn", "140700", "晋中", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100087", "100036", "zh-cn", "140800", "运城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100088", "100036", "zh-cn", "140900", "忻州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100089", "100036", "zh-cn", "141000", "临汾", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100090", "100036", "zh-cn", "141100", "吕梁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100091", "100037", "zh-cn", "150100", "呼和浩特", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100092", "100037", "zh-cn", "150200", "包头", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100093", "100037", "zh-cn", "150300", "乌海", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100094", "100037", "zh-cn", "150400", "赤峰", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100095", "100037", "zh-cn", "150500", "通辽", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100096", "100037", "zh-cn", "150600", "鄂尔多斯", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100097", "100037", "zh-cn", "150700", "呼伦贝尔", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100098", "100037", "zh-cn", "150800", "巴彦淖尔", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100099", "100037", "zh-cn", "150900", "乌兰察布", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100100", "100037", "zh-cn", "152200", "兴安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100101", "100037", "zh-cn", "152500", "锡林郭勒", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100102", "100037", "zh-cn", "152900", "阿拉善", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100103", "100038", "zh-cn", "210100", "沈阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100104", "100038", "zh-cn", "210200", "大连", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100105", "100038", "zh-cn", "210300", "鞍山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100106", "100038", "zh-cn", "210400", "抚顺", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100107", "100038", "zh-cn", "210500", "本溪", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100108", "100038", "zh-cn", "210600", "丹东", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100109", "100038", "zh-cn", "210700", "锦州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100110", "100038", "zh-cn", "210800", "营口", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100111", "100038", "zh-cn", "210900", "阜新", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100112", "100038", "zh-cn", "211000", "辽阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100113", "100038", "zh-cn", "211100", "盘锦", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100114", "100038", "zh-cn", "211200", "铁岭", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100115", "100038", "zh-cn", "211300", "朝阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100116", "100038", "zh-cn", "211400", "葫芦岛", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100117", "100039", "zh-cn", "220100", "长春", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100118", "100039", "zh-cn", "220200", "吉林", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100119", "100039", "zh-cn", "220300", "四平", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100120", "100039", "zh-cn", "220400", "辽源", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100121", "100039", "zh-cn", "220500", "通化", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100122", "100039", "zh-cn", "220600", "白山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100123", "100039", "zh-cn", "220700", "松原", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100124", "100039", "zh-cn", "220800", "白城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100125", "100039", "zh-cn", "222400", "延边", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100126", "100040", "zh-cn", "230100", "哈尔滨", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100127", "100040", "zh-cn", "230200", "齐齐哈尔", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100128", "100040", "zh-cn", "230300", "鸡西", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100129", "100040", "zh-cn", "230400", "鹤岗", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100130", "100040", "zh-cn", "230500", "双鸭山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100131", "100040", "zh-cn", "230600", "大庆", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100132", "100040", "zh-cn", "230700", "伊春", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100133", "100040", "zh-cn", "230800", "佳木斯", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100134", "100040", "zh-cn", "230900", "七台河", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100135", "100040", "zh-cn", "231000", "牡丹江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100136", "100040", "zh-cn", "231100", "黑河", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100137", "100040", "zh-cn", "231200", "绥化", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100138", "100040", "zh-cn", "232700", "大兴安岭", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100139", "100041", "zh-cn", "310100", "上海", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100140", "100042", "zh-cn", "320100", "南京", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100141", "100042", "zh-cn", "320200", "无锡", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100142", "100042", "zh-cn", "320300", "徐州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100143", "100042", "zh-cn", "320400", "常州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100144", "100042", "zh-cn", "320500", "苏州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100145", "100042", "zh-cn", "320600", "南通", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100146", "100042", "zh-cn", "320700", "连云港", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100147", "100042", "zh-cn", "320800", "淮安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100148", "100042", "zh-cn", "320900", "盐城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100149", "100042", "zh-cn", "321000", "扬州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100150", "100042", "zh-cn", "321100", "镇江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100151", "100042", "zh-cn", "321200", "泰州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100152", "100042", "zh-cn", "321300", "宿迁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100153", "100043", "zh-cn", "330100", "杭州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100154", "100043", "zh-cn", "330200", "宁波", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100155", "100043", "zh-cn", "330300", "温州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100156", "100043", "zh-cn", "330400", "嘉兴", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100157", "100043", "zh-cn", "330500", "湖州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100158", "100043", "zh-cn", "330600", "绍兴", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100159", "100043", "zh-cn", "330700", "金华", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100160", "100043", "zh-cn", "330800", "衢州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100161", "100043", "zh-cn", "330900", "舟山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100162", "100043", "zh-cn", "331000", "台州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100163", "100043", "zh-cn", "331100", "丽水", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100164", "100044", "zh-cn", "340100", "合肥", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100165", "100044", "zh-cn", "340200", "芜湖", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100166", "100044", "zh-cn", "340300", "蚌埠", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100167", "100044", "zh-cn", "340400", "淮南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100168", "100044", "zh-cn", "340500", "马鞍山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100169", "100044", "zh-cn", "340600", "淮北", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100170", "100044", "zh-cn", "340700", "铜陵", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100171", "100044", "zh-cn", "340800", "安庆", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100172", "100044", "zh-cn", "341000", "黄山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100173", "100044", "zh-cn", "341100", "滁州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100174", "100044", "zh-cn", "341200", "阜阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100175", "100044", "zh-cn", "341300", "宿州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100176", "100044", "zh-cn", "341500", "六安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100177", "100044", "zh-cn", "341600", "亳州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100178", "100044", "zh-cn", "341700", "池州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100179", "100044", "zh-cn", "341800", "宣城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100180", "100045", "zh-cn", "350100", "福州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100181", "100045", "zh-cn", "350200", "厦门", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100182", "100045", "zh-cn", "350300", "莆田", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100183", "100045", "zh-cn", "350400", "三明", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100184", "100045", "zh-cn", "350500", "泉州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100185", "100045", "zh-cn", "350600", "漳州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100186", "100045", "zh-cn", "350700", "南平", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100187", "100045", "zh-cn", "350800", "龙岩", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100188", "100045", "zh-cn", "350900", "宁德", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100189", "100046", "zh-cn", "360100", "南昌", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100190", "100046", "zh-cn", "360200", "景德镇", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100191", "100046", "zh-cn", "360300", "萍乡", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100192", "100046", "zh-cn", "360400", "九江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100193", "100046", "zh-cn", "360500", "新余", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100194", "100046", "zh-cn", "360600", "鹰潭", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100195", "100046", "zh-cn", "360700", "赣州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100196", "100046", "zh-cn", "360800", "吉安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100197", "100046", "zh-cn", "360900", "宜春", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100198", "100046", "zh-cn", "361000", "抚州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100199", "100046", "zh-cn", "361100", "上饶", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100200", "100047", "zh-cn", "370100", "济南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100201", "100047", "zh-cn", "370200", "青岛", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100202", "100047", "zh-cn", "370300", "淄博", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100203", "100047", "zh-cn", "370400", "枣庄", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100204", "100047", "zh-cn", "370500", "东营", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100205", "100047", "zh-cn", "370600", "烟台", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100206", "100047", "zh-cn", "370700", "潍坊", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100207", "100047", "zh-cn", "370800", "济宁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100208", "100047", "zh-cn", "370900", "泰安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100209", "100047", "zh-cn", "371000", "威海", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100210", "100047", "zh-cn", "371100", "日照", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100211", "100047", "zh-cn", "371300", "临沂", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100212", "100047", "zh-cn", "371400", "德州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100213", "100047", "zh-cn", "371500", "聊城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100214", "100047", "zh-cn", "371600", "滨州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100215", "100047", "zh-cn", "371700", "菏泽", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100216", "100048", "zh-cn", "410100", "郑州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100217", "100048", "zh-cn", "410200", "开封", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100218", "100048", "zh-cn", "410300", "洛阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100219", "100048", "zh-cn", "410400", "平顶山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100220", "100048", "zh-cn", "410500", "安阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100221", "100048", "zh-cn", "410600", "鹤壁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100222", "100048", "zh-cn", "410700", "新乡", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100223", "100048", "zh-cn", "410800", "焦作", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100224", "100048", "zh-cn", "410900", "濮阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100225", "100048", "zh-cn", "411000", "许昌", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100226", "100048", "zh-cn", "411100", "漯河", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100227", "100048", "zh-cn", "411200", "三门峡", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100228", "100048", "zh-cn", "411300", "南阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100229", "100048", "zh-cn", "411400", "商丘", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100230", "100048", "zh-cn", "411500", "信阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100231", "100048", "zh-cn", "411600", "周口", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100232", "100048", "zh-cn", "411700", "驻马店", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103654", "100048", "zh-cn", "411800", "济源", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100233", "100049", "zh-cn", "420100", "武汉", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100234", "100049", "zh-cn", "420200", "黄石", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100235", "100049", "zh-cn", "420300", "十堰", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100236", "100049", "zh-cn", "420500", "宜昌", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100237", "100049", "zh-cn", "420600", "襄阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100238", "100049", "zh-cn", "420700", "鄂州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100239", "100049", "zh-cn", "420800", "荆门", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100240", "100049", "zh-cn", "420900", "孝感", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100241", "100049", "zh-cn", "421000", "荆州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100242", "100049", "zh-cn", "421100", "黄冈", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100243", "100049", "zh-cn", "421200", "咸宁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100244", "100049", "zh-cn", "421300", "随州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103647", "100049", "zh-cn", "421400", "仙桃市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103649", "100049", "zh-cn", "421500", "潜江市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103650", "100049", "zh-cn", "421600", "天门市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103652", "100049", "zh-cn", "421700", "神农架林区", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100245", "100049", "zh-cn", "422800", "恩施", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100246", "100050", "zh-cn", "430100", "长沙", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100247", "100050", "zh-cn", "430200", "株洲", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100248", "100050", "zh-cn", "430300", "湘潭", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100249", "100050", "zh-cn", "430400", "衡阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100250", "100050", "zh-cn", "430500", "邵阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100251", "100050", "zh-cn", "430600", "岳阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100252", "100050", "zh-cn", "430700", "常德", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100253", "100050", "zh-cn", "430800", "张家界", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100254", "100050", "zh-cn", "430900", "益阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100255", "100050", "zh-cn", "431000", "郴州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100256", "100050", "zh-cn", "431100", "永州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100257", "100050", "zh-cn", "431200", "怀化", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100258", "100050", "zh-cn", "431300", "娄底", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100259", "100050", "zh-cn", "433100", "湘西", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100260", "100051", "zh-cn", "440100", "广州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100261", "100051", "zh-cn", "440200", "韶关", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100262", "100051", "zh-cn", "440300", "深圳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100263", "100051", "zh-cn", "440400", "珠海", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100264", "100051", "zh-cn", "440500", "汕头", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100265", "100051", "zh-cn", "440600", "佛山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100266", "100051", "zh-cn", "440700", "江门", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100267", "100051", "zh-cn", "440800", "湛江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100268", "100051", "zh-cn", "440900", "茂名", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100269", "100051", "zh-cn", "441200", "肇庆", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100270", "100051", "zh-cn", "441300", "惠州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100271", "100051", "zh-cn", "441400", "梅州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100272", "100051", "zh-cn", "441500", "汕尾", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100273", "100051", "zh-cn", "441600", "河源", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100274", "100051", "zh-cn", "441700", "阳江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100275", "100051", "zh-cn", "441800", "清远", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100276", "100051", "zh-cn", "441900", "东莞", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100277", "100051", "zh-cn", "442000", "中山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100278", "100051", "zh-cn", "445100", "潮州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100279", "100051", "zh-cn", "445200", "揭阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100280", "100051", "zh-cn", "445300", "云浮", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100281", "100052", "zh-cn", "450100", "南宁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100282", "100052", "zh-cn", "450200", "柳州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100283", "100052", "zh-cn", "450300", "桂林", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100284", "100052", "zh-cn", "450400", "梧州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100285", "100052", "zh-cn", "450500", "北海", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100286", "100052", "zh-cn", "450600", "防城港", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100287", "100052", "zh-cn", "450700", "钦州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100288", "100052", "zh-cn", "450800", "贵港", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100289", "100052", "zh-cn", "450900", "玉林", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100290", "100052", "zh-cn", "451000", "百色", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100291", "100052", "zh-cn", "451100", "贺州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100292", "100052", "zh-cn", "451200", "河池", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100293", "100052", "zh-cn", "451300", "来宾", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100294", "100052", "zh-cn", "451400", "崇左", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100295", "100053", "zh-cn", "460100", "海口", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100296", "100053", "zh-cn", "460200", "三亚", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100297", "100053", "zh-cn", "460300", "三沙", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100299", "100053", "zh-cn", "460400", "儋州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103660", "100053", "zh-cn", "460500", "东方市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100000", "100053", "zh-cn", "461000", "五指山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100003", "100053", "zh-cn", "461100", "琼海", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100005", "100053", "zh-cn", "461200", "东方", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100007", "100053", "zh-cn", "461300", "文昌", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100009", "100053", "zh-cn", "461400", "万宁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100011", "100053", "zh-cn", "461500", "定安县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100013", "100053", "zh-cn", "461600", "屯昌县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100015", "100053", "zh-cn", "461700", "澄迈县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100017", "100053", "zh-cn", "461800", "临高县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100019", "100053", "zh-cn", "461900", "白沙黎族自治县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100022", "100053", "zh-cn", "462000", "昌江黎族自治县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100024", "100053", "zh-cn", "462100", "乐东黎族自治县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100026", "100053", "zh-cn", "462200", "陵水黎族自治县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100029", "100053", "zh-cn", "462300", "保亭黎族苗族自治县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100031", "100053", "zh-cn", "462400", "琼中黎族苗族自治县", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100300", "100054", "zh-cn", "500100", "重庆", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100301", "100055", "zh-cn", "510100", "成都", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100302", "100055", "zh-cn", "510300", "自贡", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100303", "100055", "zh-cn", "510400", "攀枝花", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100304", "100055", "zh-cn", "510500", "泸州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100305", "100055", "zh-cn", "510600", "德阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100306", "100055", "zh-cn", "510700", "绵阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100307", "100055", "zh-cn", "510800", "广元", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100308", "100055", "zh-cn", "510900", "遂宁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100309", "100055", "zh-cn", "511000", "内江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100310", "100055", "zh-cn", "511100", "乐山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100311", "100055", "zh-cn", "511300", "南充", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100312", "100055", "zh-cn", "511400", "眉山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100313", "100055", "zh-cn", "511500", "宜宾", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100314", "100055", "zh-cn", "511600", "广安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100315", "100055", "zh-cn", "511700", "达州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100316", "100055", "zh-cn", "511800", "雅安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100317", "100055", "zh-cn", "511900", "巴中", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100318", "100055", "zh-cn", "512000", "资阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100319", "100055", "zh-cn", "513200", "阿坝", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100320", "100055", "zh-cn", "513300", "甘孜", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100321", "100055", "zh-cn", "513400", "凉山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100322", "100056", "zh-cn", "520100", "贵阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100323", "100056", "zh-cn", "520200", "六盘水", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100324", "100056", "zh-cn", "520300", "遵义", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100325", "100056", "zh-cn", "520400", "安顺", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100326", "100056", "zh-cn", "520500", "毕节", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100327", "100056", "zh-cn", "520600", "铜仁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100328", "100056", "zh-cn", "522300", "黔西南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100329", "100056", "zh-cn", "522400", "黔东南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100331", "100056", "zh-cn", "522600", "黔南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100332", "100057", "zh-cn", "530100", "昆明", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100333", "100057", "zh-cn", "530300", "曲靖", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100334", "100057", "zh-cn", "530400", "玉溪", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100335", "100057", "zh-cn", "530500", "保山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100336", "100057", "zh-cn", "530600", "昭通", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100337", "100057", "zh-cn", "530700", "丽江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100338", "100057", "zh-cn", "530800", "普洱", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100339", "100057", "zh-cn", "530900", "临沧", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100340", "100057", "zh-cn", "532300", "楚雄", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100341", "100057", "zh-cn", "532500", "红河", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100342", "100057", "zh-cn", "532600", "文山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100343", "100057", "zh-cn", "532800", "西双版纳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100344", "100057", "zh-cn", "532900", "大理", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100345", "100057", "zh-cn", "533100", "德宏", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100346", "100057", "zh-cn", "533300", "怒江", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100347", "100057", "zh-cn", "533400", "迪庆", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100348", "100058", "zh-cn", "540100", "拉萨", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100349", "100058", "zh-cn", "540200", "日喀则", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100350", "100058", "zh-cn", "540300", "昌都", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100351", "100058", "zh-cn", "540400", "林芝", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100352", "100058", "zh-cn", "540500", "山南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100353", "100058", "zh-cn", "542400", "那曲", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100354", "100058", "zh-cn", "542500", "阿里", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100355", "100059", "zh-cn", "610100", "西安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100356", "100059", "zh-cn", "610200", "铜川", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100357", "100059", "zh-cn", "610300", "宝鸡", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100358", "100059", "zh-cn", "610400", "咸阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100359", "100059", "zh-cn", "610500", "渭南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100360", "100059", "zh-cn", "610600", "延安", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100361", "100059", "zh-cn", "610700", "汉中", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100362", "100059", "zh-cn", "610800", "榆林", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100363", "100059", "zh-cn", "610900", "安康", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100364", "100059", "zh-cn", "611000", "商洛", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103640", "100059", "zh-cn", "611200", "西咸新区", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100365", "100060", "zh-cn", "620100", "兰州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100368", "100060", "zh-cn", "620200", "嘉峪关", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100369", "100060", "zh-cn", "620300", "金昌", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100370", "100060", "zh-cn", "620400", "白银", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100371", "100060", "zh-cn", "620500", "天水", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100372", "100060", "zh-cn", "620600", "武威", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100373", "100060", "zh-cn", "620700", "张掖", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100374", "100060", "zh-cn", "620800", "平凉", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100375", "100060", "zh-cn", "620900", "酒泉", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100376", "100060", "zh-cn", "621000", "庆阳", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100377", "100060", "zh-cn", "621100", "定西", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100378", "100060", "zh-cn", "621200", "陇南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100366", "100060", "zh-cn", "621300", "兰州新区", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100379", "100060", "zh-cn", "622900", "临夏", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100380", "100060", "zh-cn", "623000", "甘南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100381", "100061", "zh-cn", "630100", "西宁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100382", "100061", "zh-cn", "630200", "海东", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100383", "100061", "zh-cn", "632200", "海北", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100384", "100061", "zh-cn", "632300", "黄南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100385", "100061", "zh-cn", "632500", "海南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100386", "100061", "zh-cn", "632600", "果洛", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100387", "100061", "zh-cn", "632700", "玉树", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100388", "100061", "zh-cn", "632800", "海西", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100389", "100062", "zh-cn", "640100", "银川", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100390", "100062", "zh-cn", "640200", "石嘴山", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100391", "100062", "zh-cn", "640300", "吴忠", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100392", "100062", "zh-cn", "640400", "固原", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100393", "100062", "zh-cn", "640500", "中卫", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100394", "100063", "zh-cn", "650100", "乌鲁木齐", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100395", "100063", "zh-cn", "650200", "克拉玛依", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100396", "100063", "zh-cn", "650400", "吐鲁番", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100397", "100063", "zh-cn", "650500", "哈密", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103662", "100063", "zh-cn", "650600", "阿拉尔市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103664", "100063", "zh-cn", "650700", "铁门关市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103666", "100063", "zh-cn", "650800", "图木舒克市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103668", "100063", "zh-cn", "650900", "可克达拉市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103670", "100063", "zh-cn", "651000", "双河市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103672", "100063", "zh-cn", "651100", "五家渠市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103674", "100063", "zh-cn", "651200", "石河子市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103676", "100063", "zh-cn", "651300", "北屯市", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103678", "100063", "zh-cn", "651400", "昆玉市兵团所", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100398", "100063", "zh-cn", "652300", "昌吉", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100399", "100063", "zh-cn", "652700", "博州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100400", "100063", "zh-cn", "652800", "巴州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100401", "100063", "zh-cn", "652900", "阿克苏", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100402", "100063", "zh-cn", "653000", "克州", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100403", "100063", "zh-cn", "653100", "喀什", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100404", "100063", "zh-cn", "653200", "和田", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100405", "100063", "zh-cn", "654000", "伊犁", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100406", "100063", "zh-cn", "654200", "塔城", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100407", "100063", "zh-cn", "654300", "阿勒泰", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100408", "100064", "zh-cn", "710100", "台北", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100409", "100064", "zh-cn", "710200", "高雄", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100410", "100064", "zh-cn", "710300", "台南", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100411", "100064", "zh-cn", "710400", "台中", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100412", "100064", "zh-cn", "710500", "南投", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100413", "100064", "zh-cn", "710600", "基隆", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100414", "100064", "zh-cn", "710700", "新竹", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100415", "100064", "zh-cn", "710800", "嘉义", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100416", "100064", "zh-cn", "710900", "新北", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100417", "100064", "zh-cn", "711000", "宜兰", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100418", "100064", "zh-cn", "711100", "桃园", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100419", "100064", "zh-cn", "711200", "苗栗", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100420", "100064", "zh-cn", "711300", "彰化", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100421", "100064", "zh-cn", "711400", "云林", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100422", "100064", "zh-cn", "711500", "屏东", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100423", "100064", "zh-cn", "711600", "台东", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100424", "100064", "zh-cn", "711700", "花莲", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100425", "100064", "zh-cn", "711800", "澎湖", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100426", "100065", "zh-cn", "810100", "香港", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100427", "100066", "zh-cn", "820100", "澳门", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100428", "100067", "zh-cn", "110101", "东城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100429", "100067", "zh-cn", "110102", "西城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100430", "100067", "zh-cn", "110105", "朝阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100431", "100067", "zh-cn", "110106", "丰台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100432", "100067", "zh-cn", "110107", "石景山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100433", "100067", "zh-cn", "110108", "海淀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100434", "100067", "zh-cn", "110109", "门头沟区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100435", "100067", "zh-cn", "110111", "房山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100436", "100067", "zh-cn", "110112", "通州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100437", "100067", "zh-cn", "110113", "顺义区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100438", "100067", "zh-cn", "110114", "昌平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100439", "100067", "zh-cn", "110115", "大兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100440", "100067", "zh-cn", "110116", "怀柔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100441", "100067", "zh-cn", "110117", "平谷区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100442", "100067", "zh-cn", "110118", "密云区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100443", "100067", "zh-cn", "110119", "延庆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100444", "100068", "zh-cn", "120101", "和平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100445", "100068", "zh-cn", "120102", "河东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100446", "100068", "zh-cn", "120103", "河西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100447", "100068", "zh-cn", "120104", "南开区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100448", "100068", "zh-cn", "120105", "河北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100449", "100068", "zh-cn", "120106", "红桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100450", "100068", "zh-cn", "120110", "东丽区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100451", "100068", "zh-cn", "120111", "西青区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100452", "100068", "zh-cn", "120112", "津南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100453", "100068", "zh-cn", "120113", "北辰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100454", "100068", "zh-cn", "120114", "武清区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100455", "100068", "zh-cn", "120115", "宝坻区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100456", "100068", "zh-cn", "120116", "滨海新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100457", "100068", "zh-cn", "120117", "宁河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100458", "100068", "zh-cn", "120118", "静海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100459", "100068", "zh-cn", "120119", "蓟州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100460", "100069", "zh-cn", "130102", "长安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100461", "100069", "zh-cn", "130104", "桥西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100462", "100069", "zh-cn", "130105", "新华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100463", "100069", "zh-cn", "130107", "井陉矿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100464", "100069", "zh-cn", "130108", "裕华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100465", "100069", "zh-cn", "130109", "藁城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100466", "100069", "zh-cn", "130110", "鹿泉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100467", "100069", "zh-cn", "130111", "栾城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100468", "100069", "zh-cn", "130121", "井陉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100469", "100069", "zh-cn", "130123", "正定县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100470", "100069", "zh-cn", "130125", "行唐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100471", "100069", "zh-cn", "130126", "灵寿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100472", "100069", "zh-cn", "130127", "高邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100473", "100069", "zh-cn", "130128", "深泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100474", "100069", "zh-cn", "130129", "赞皇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100475", "100069", "zh-cn", "130130", "无极县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100476", "100069", "zh-cn", "130131", "平山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100477", "100069", "zh-cn", "130132", "元氏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100478", "100069", "zh-cn", "130133", "赵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100479", "100069", "zh-cn", "130183", "晋州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100480", "100069", "zh-cn", "130184", "新乐市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103685", "100069", "zh-cn", "130185", "高新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100481", "100070", "zh-cn", "130202", "路南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100482", "100070", "zh-cn", "130203", "路北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100483", "100070", "zh-cn", "130204", "古冶区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100484", "100070", "zh-cn", "130205", "开平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100485", "100070", "zh-cn", "130207", "丰南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100486", "100070", "zh-cn", "130208", "丰润区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100487", "100070", "zh-cn", "130209", "曹妃甸区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100488", "100070", "zh-cn", "130223", "滦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100489", "100070", "zh-cn", "130224", "滦南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100490", "100070", "zh-cn", "130225", "乐亭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100491", "100070", "zh-cn", "130227", "迁西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100492", "100070", "zh-cn", "130229", "玉田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100493", "100070", "zh-cn", "130281", "遵化市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100494", "100070", "zh-cn", "130283", "迁安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103686", "100070", "zh-cn", "130284", "高新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100495", "100071", "zh-cn", "130302", "海港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100496", "100071", "zh-cn", "130303", "山海关区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100497", "100071", "zh-cn", "130304", "北戴河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100498", "100071", "zh-cn", "130306", "抚宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100499", "100071", "zh-cn", "130321", "青龙满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100500", "100071", "zh-cn", "130322", "昌黎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100501", "100071", "zh-cn", "130324", "卢龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100502", "100072", "zh-cn", "130402", "邯山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100503", "100072", "zh-cn", "130403", "丛台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100504", "100072", "zh-cn", "130404", "复兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100505", "100072", "zh-cn", "130406", "峰峰矿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100508", "100072", "zh-cn", "130423", "临漳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100509", "100072", "zh-cn", "130424", "成安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100510", "100072", "zh-cn", "130425", "大名县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100511", "100072", "zh-cn", "130426", "涉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100512", "100072", "zh-cn", "130427", "磁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100506", "100072", "zh-cn", "130428", "肥乡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100507", "100072", "zh-cn", "130429", "永年区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100513", "100072", "zh-cn", "130430", "邱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100514", "100072", "zh-cn", "130431", "鸡泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100515", "100072", "zh-cn", "130432", "广平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100516", "100072", "zh-cn", "130433", "馆陶县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100517", "100072", "zh-cn", "130434", "魏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100518", "100072", "zh-cn", "130435", "曲周县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100519", "100072", "zh-cn", "130481", "武安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103684", "100072", "zh-cn", "130482", "邯郸经济开发区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103683", "100072", "zh-cn", "130483", "翼南新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100520", "100073", "zh-cn", "130502", "桥东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100521", "100073", "zh-cn", "130503", "桥西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100522", "100073", "zh-cn", "130521", "邢台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100523", "100073", "zh-cn", "130522", "临城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100524", "100073", "zh-cn", "130523", "内丘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100525", "100073", "zh-cn", "130524", "柏乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100526", "100073", "zh-cn", "130525", "隆尧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100527", "100073", "zh-cn", "130526", "任县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100528", "100073", "zh-cn", "130527", "南和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100529", "100073", "zh-cn", "130528", "宁晋县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100530", "100073", "zh-cn", "130529", "巨鹿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100531", "100073", "zh-cn", "130530", "新河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100532", "100073", "zh-cn", "130531", "广宗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100533", "100073", "zh-cn", "130532", "平乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100534", "100073", "zh-cn", "130533", "威县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100535", "100073", "zh-cn", "130534", "清河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100536", "100073", "zh-cn", "130535", "临西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100537", "100073", "zh-cn", "130581", "南宫市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100538", "100073", "zh-cn", "130582", "沙河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100539", "100074", "zh-cn", "130602", "竞秀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100540", "100074", "zh-cn", "130606", "莲池区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100541", "100074", "zh-cn", "130607", "满城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100542", "100074", "zh-cn", "130608", "清苑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100543", "100074", "zh-cn", "130609", "徐水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100544", "100074", "zh-cn", "130623", "涞水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100545", "100074", "zh-cn", "130624", "阜平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100546", "100074", "zh-cn", "130626", "定兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100547", "100074", "zh-cn", "130627", "唐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100548", "100074", "zh-cn", "130628", "高阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100549", "100074", "zh-cn", "130629", "容城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100550", "100074", "zh-cn", "130630", "涞源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100551", "100074", "zh-cn", "130631", "望都县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100552", "100074", "zh-cn", "130632", "安新县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100553", "100074", "zh-cn", "130633", "易县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100554", "100074", "zh-cn", "130634", "曲阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100555", "100074", "zh-cn", "130635", "蠡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100556", "100074", "zh-cn", "130636", "顺平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100557", "100074", "zh-cn", "130637", "博野县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100558", "100074", "zh-cn", "130638", "雄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100559", "100074", "zh-cn", "130681", "涿州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100560", "100074", "zh-cn", "130683", "安国市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100561", "100074", "zh-cn", "130684", "高碑店市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103687", "100074", "zh-cn", "130685", "高新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100562", "100075", "zh-cn", "130702", "桥东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100563", "100075", "zh-cn", "130703", "桥西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100564", "100075", "zh-cn", "130705", "宣化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100565", "100075", "zh-cn", "130706", "下花园区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100566", "100075", "zh-cn", "130708", "万全区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100567", "100075", "zh-cn", "130709", "崇礼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100568", "100075", "zh-cn", "130722", "张北县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100569", "100075", "zh-cn", "130723", "康保县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100570", "100075", "zh-cn", "130724", "沽源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100571", "100075", "zh-cn", "130725", "尚义县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100572", "100075", "zh-cn", "130726", "蔚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100573", "100075", "zh-cn", "130727", "阳原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100574", "100075", "zh-cn", "130728", "怀安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100575", "100075", "zh-cn", "130730", "怀来县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100576", "100075", "zh-cn", "130731", "涿鹿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100577", "100075", "zh-cn", "130732", "赤城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100578", "100076", "zh-cn", "130802", "双桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100579", "100076", "zh-cn", "130803", "双滦区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100580", "100076", "zh-cn", "130804", "鹰手营子矿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100581", "100076", "zh-cn", "130821", "承德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100582", "100076", "zh-cn", "130822", "兴隆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100588", "100076", "zh-cn", "130823", "平泉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100583", "100076", "zh-cn", "130824", "滦平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100584", "100076", "zh-cn", "130825", "隆化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100585", "100076", "zh-cn", "130826", "丰宁满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100586", "100076", "zh-cn", "130827", "宽城满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100587", "100076", "zh-cn", "130828", "围场满族蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103688", "100076", "zh-cn", "130830", "高新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100589", "100077", "zh-cn", "130902", "新华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100590", "100077", "zh-cn", "130903", "运河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100591", "100077", "zh-cn", "130921", "沧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100592", "100077", "zh-cn", "130922", "青县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100593", "100077", "zh-cn", "130923", "东光县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100594", "100077", "zh-cn", "130924", "海兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100595", "100077", "zh-cn", "130925", "盐山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100596", "100077", "zh-cn", "130926", "肃宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100597", "100077", "zh-cn", "130927", "南皮县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100598", "100077", "zh-cn", "130928", "吴桥县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100599", "100077", "zh-cn", "130929", "献县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100600", "100077", "zh-cn", "130930", "孟村回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100601", "100077", "zh-cn", "130981", "泊头市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100602", "100077", "zh-cn", "130982", "任丘市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100603", "100077", "zh-cn", "130983", "黄骅市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100604", "100077", "zh-cn", "130984", "河间市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103682", "100077", "zh-cn", "130985", "高新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100605", "100078", "zh-cn", "131002", "安次区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100606", "100078", "zh-cn", "131003", "广阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100607", "100078", "zh-cn", "131022", "固安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100608", "100078", "zh-cn", "131023", "永清县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100609", "100078", "zh-cn", "131024", "香河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100610", "100078", "zh-cn", "131025", "大城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100611", "100078", "zh-cn", "131026", "文安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100612", "100078", "zh-cn", "131028", "大厂回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100613", "100078", "zh-cn", "131081", "霸州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100614", "100078", "zh-cn", "131082", "三河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100615", "100079", "zh-cn", "131102", "桃城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100616", "100079", "zh-cn", "131103", "冀州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100617", "100079", "zh-cn", "131121", "枣强县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100618", "100079", "zh-cn", "131122", "武邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100619", "100079", "zh-cn", "131123", "武强县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100620", "100079", "zh-cn", "131124", "饶阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100621", "100079", "zh-cn", "131125", "安平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100622", "100079", "zh-cn", "131126", "故城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100623", "100079", "zh-cn", "131127", "景县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100624", "100079", "zh-cn", "131128", "阜城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100625", "100079", "zh-cn", "131182", "深州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103680", "100079", "zh-cn", "131183", "高新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103681", "100079", "zh-cn", "131184", "滨湖新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103657", "103656", "zh-cn", "131201", "定州", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103659", "103658", "zh-cn", "131301", "辛集", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100626", "100080", "zh-cn", "140105", "小店区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100627", "100080", "zh-cn", "140106", "迎泽区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100628", "100080", "zh-cn", "140107", "杏花岭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100629", "100080", "zh-cn", "140108", "尖草坪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100630", "100080", "zh-cn", "140109", "万柏林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100631", "100080", "zh-cn", "140110", "晋源区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100632", "100080", "zh-cn", "140121", "清徐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100633", "100080", "zh-cn", "140122", "阳曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100634", "100080", "zh-cn", "140123", "娄烦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100635", "100080", "zh-cn", "140181", "古交市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100636", "100081", "zh-cn", "140202", "城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100637", "100081", "zh-cn", "140203", "矿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100638", "100081", "zh-cn", "140211", "南郊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100639", "100081", "zh-cn", "140212", "新荣区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100640", "100081", "zh-cn", "140221", "阳高县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100641", "100081", "zh-cn", "140222", "天镇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100642", "100081", "zh-cn", "140223", "广灵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100643", "100081", "zh-cn", "140224", "灵丘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100644", "100081", "zh-cn", "140225", "浑源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100645", "100081", "zh-cn", "140226", "左云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100646", "100081", "zh-cn", "140227", "大同县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100647", "100082", "zh-cn", "140302", "城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100648", "100082", "zh-cn", "140303", "矿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100649", "100082", "zh-cn", "140311", "郊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100650", "100082", "zh-cn", "140321", "平定县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100651", "100082", "zh-cn", "140322", "盂县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100652", "100083", "zh-cn", "140402", "城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100653", "100083", "zh-cn", "140411", "郊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100654", "100083", "zh-cn", "140421", "长治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100655", "100083", "zh-cn", "140423", "襄垣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100656", "100083", "zh-cn", "140424", "屯留县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100657", "100083", "zh-cn", "140425", "平顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100658", "100083", "zh-cn", "140426", "黎城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100659", "100083", "zh-cn", "140427", "壶关县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100660", "100083", "zh-cn", "140428", "长子县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100661", "100083", "zh-cn", "140429", "武乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100662", "100083", "zh-cn", "140430", "沁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100663", "100083", "zh-cn", "140431", "沁源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100664", "100083", "zh-cn", "140481", "潞城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100665", "100084", "zh-cn", "140502", "城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100666", "100084", "zh-cn", "140521", "沁水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100667", "100084", "zh-cn", "140522", "阳城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100668", "100084", "zh-cn", "140524", "陵川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100669", "100084", "zh-cn", "140525", "泽州县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100670", "100084", "zh-cn", "140581", "高平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100671", "100085", "zh-cn", "140602", "朔城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100672", "100085", "zh-cn", "140603", "平鲁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100673", "100085", "zh-cn", "140621", "山阴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100674", "100085", "zh-cn", "140622", "应县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100675", "100085", "zh-cn", "140623", "右玉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100676", "100085", "zh-cn", "140624", "怀仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100677", "100086", "zh-cn", "140702", "榆次区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100678", "100086", "zh-cn", "140721", "榆社县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100679", "100086", "zh-cn", "140722", "左权县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100680", "100086", "zh-cn", "140723", "和顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100681", "100086", "zh-cn", "140724", "昔阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100682", "100086", "zh-cn", "140725", "寿阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100683", "100086", "zh-cn", "140726", "太谷县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100684", "100086", "zh-cn", "140727", "祁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100685", "100086", "zh-cn", "140728", "平遥县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100686", "100086", "zh-cn", "140729", "灵石县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100687", "100086", "zh-cn", "140781", "介休市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100688", "100087", "zh-cn", "140802", "盐湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100689", "100087", "zh-cn", "140821", "临猗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100690", "100087", "zh-cn", "140822", "万荣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100691", "100087", "zh-cn", "140823", "闻喜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100692", "100087", "zh-cn", "140824", "稷山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100693", "100087", "zh-cn", "140825", "新绛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100694", "100087", "zh-cn", "140826", "绛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100695", "100087", "zh-cn", "140827", "垣曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100696", "100087", "zh-cn", "140828", "夏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100697", "100087", "zh-cn", "140829", "平陆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100698", "100087", "zh-cn", "140830", "芮城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100699", "100087", "zh-cn", "140881", "永济市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100700", "100087", "zh-cn", "140882", "河津市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100701", "100088", "zh-cn", "140902", "忻府区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100702", "100088", "zh-cn", "140921", "定襄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100703", "100088", "zh-cn", "140922", "五台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100704", "100088", "zh-cn", "140923", "代县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100705", "100088", "zh-cn", "140924", "繁峙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100706", "100088", "zh-cn", "140925", "宁武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100707", "100088", "zh-cn", "140926", "静乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100708", "100088", "zh-cn", "140927", "神池县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100709", "100088", "zh-cn", "140928", "五寨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100710", "100088", "zh-cn", "140929", "岢岚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100711", "100088", "zh-cn", "140930", "河曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100712", "100088", "zh-cn", "140931", "保德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100713", "100088", "zh-cn", "140932", "偏关县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100714", "100088", "zh-cn", "140981", "原平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100715", "100089", "zh-cn", "141002", "尧都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100716", "100089", "zh-cn", "141021", "曲沃县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100717", "100089", "zh-cn", "141022", "翼城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100718", "100089", "zh-cn", "141023", "襄汾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100719", "100089", "zh-cn", "141024", "洪洞县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100720", "100089", "zh-cn", "141025", "古县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100721", "100089", "zh-cn", "141026", "安泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100722", "100089", "zh-cn", "141027", "浮山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100723", "100089", "zh-cn", "141028", "吉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100724", "100089", "zh-cn", "141029", "乡宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100725", "100089", "zh-cn", "141030", "大宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100726", "100089", "zh-cn", "141031", "隰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100727", "100089", "zh-cn", "141032", "永和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100728", "100089", "zh-cn", "141033", "蒲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100729", "100089", "zh-cn", "141034", "汾西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100730", "100089", "zh-cn", "141081", "侯马市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100731", "100089", "zh-cn", "141082", "霍州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100732", "100090", "zh-cn", "141102", "离石区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100733", "100090", "zh-cn", "141121", "文水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100734", "100090", "zh-cn", "141122", "交城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100735", "100090", "zh-cn", "141123", "兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100736", "100090", "zh-cn", "141124", "临县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100737", "100090", "zh-cn", "141125", "柳林县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100738", "100090", "zh-cn", "141126", "石楼县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100739", "100090", "zh-cn", "141127", "岚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100740", "100090", "zh-cn", "141128", "方山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100741", "100090", "zh-cn", "141129", "中阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100742", "100090", "zh-cn", "141130", "交口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100743", "100090", "zh-cn", "141181", "孝义市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100744", "100090", "zh-cn", "141182", "汾阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100745", "100091", "zh-cn", "150102", "新城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100746", "100091", "zh-cn", "150103", "回民区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100747", "100091", "zh-cn", "150104", "玉泉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100748", "100091", "zh-cn", "150105", "赛罕区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100749", "100091", "zh-cn", "150121", "土默特左旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100750", "100091", "zh-cn", "150122", "托克托县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100751", "100091", "zh-cn", "150123", "和林格尔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100752", "100091", "zh-cn", "150124", "清水河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100753", "100091", "zh-cn", "150125", "武川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100754", "100092", "zh-cn", "150202", "东河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100755", "100092", "zh-cn", "150203", "昆都仑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100756", "100092", "zh-cn", "150204", "青山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100757", "100092", "zh-cn", "150205", "石拐区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100758", "100092", "zh-cn", "150206", "白云鄂博矿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100759", "100092", "zh-cn", "150207", "九原区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100760", "100092", "zh-cn", "150221", "土默特右旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100761", "100092", "zh-cn", "150222", "固阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100762", "100092", "zh-cn", "150223", "达尔罕茂明安联合旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100763", "100093", "zh-cn", "150302", "海勃湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100764", "100093", "zh-cn", "150303", "海南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100765", "100093", "zh-cn", "150304", "乌达区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100766", "100094", "zh-cn", "150402", "红山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100767", "100094", "zh-cn", "150403", "元宝山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100768", "100094", "zh-cn", "150404", "松山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100769", "100094", "zh-cn", "150421", "阿鲁科尔沁旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100770", "100094", "zh-cn", "150422", "巴林左旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100771", "100094", "zh-cn", "150423", "巴林右旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100772", "100094", "zh-cn", "150424", "林西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100773", "100094", "zh-cn", "150425", "克什克腾旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100774", "100094", "zh-cn", "150426", "翁牛特旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100775", "100094", "zh-cn", "150428", "喀喇沁旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100776", "100094", "zh-cn", "150429", "宁城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100777", "100094", "zh-cn", "150430", "敖汉旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100778", "100095", "zh-cn", "150502", "科尔沁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100779", "100095", "zh-cn", "150521", "科尔沁左翼中旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100780", "100095", "zh-cn", "150522", "科尔沁左翼后旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100781", "100095", "zh-cn", "150523", "开鲁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100782", "100095", "zh-cn", "150524", "库伦旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100783", "100095", "zh-cn", "150525", "奈曼旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100784", "100095", "zh-cn", "150526", "扎鲁特旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100785", "100095", "zh-cn", "150581", "霍林郭勒市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100786", "100096", "zh-cn", "150602", "东胜区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100787", "100096", "zh-cn", "150603", "康巴什区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100788", "100096", "zh-cn", "150621", "达拉特旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100789", "100096", "zh-cn", "150622", "准格尔旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100790", "100096", "zh-cn", "150623", "鄂托克前旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100791", "100096", "zh-cn", "150624", "鄂托克旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100792", "100096", "zh-cn", "150625", "杭锦旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100793", "100096", "zh-cn", "150626", "乌审旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100794", "100096", "zh-cn", "150627", "伊金霍洛旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100795", "100097", "zh-cn", "150702", "海拉尔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100796", "100097", "zh-cn", "150703", "扎赉诺尔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100797", "100097", "zh-cn", "150721", "阿荣旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100798", "100097", "zh-cn", "150722", "莫力达瓦达斡尔族自治旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100799", "100097", "zh-cn", "150723", "鄂伦春自治旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100800", "100097", "zh-cn", "150724", "鄂温克族自治旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100801", "100097", "zh-cn", "150725", "陈巴尔虎旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100802", "100097", "zh-cn", "150726", "新巴尔虎左旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100803", "100097", "zh-cn", "150727", "新巴尔虎右旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100804", "100097", "zh-cn", "150781", "满洲里市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100805", "100097", "zh-cn", "150782", "牙克石市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100806", "100097", "zh-cn", "150783", "扎兰屯市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100807", "100097", "zh-cn", "150784", "额尔古纳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100808", "100097", "zh-cn", "150785", "根河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100809", "100098", "zh-cn", "150802", "临河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100810", "100098", "zh-cn", "150821", "五原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100811", "100098", "zh-cn", "150822", "磴口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100812", "100098", "zh-cn", "150823", "乌拉特前旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100813", "100098", "zh-cn", "150824", "乌拉特中旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100814", "100098", "zh-cn", "150825", "乌拉特后旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100815", "100098", "zh-cn", "150826", "杭锦后旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100816", "100099", "zh-cn", "150902", "集宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100817", "100099", "zh-cn", "150921", "卓资县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100818", "100099", "zh-cn", "150922", "化德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100819", "100099", "zh-cn", "150923", "商都县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100820", "100099", "zh-cn", "150924", "兴和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100821", "100099", "zh-cn", "150925", "凉城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100822", "100099", "zh-cn", "150926", "察哈尔右翼前旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100823", "100099", "zh-cn", "150927", "察哈尔右翼中旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100824", "100099", "zh-cn", "150928", "察哈尔右翼后旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100825", "100099", "zh-cn", "150929", "四子王旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100826", "100099", "zh-cn", "150981", "丰镇市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100827", "100100", "zh-cn", "152201", "乌兰浩特市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100828", "100100", "zh-cn", "152202", "阿尔山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100829", "100100", "zh-cn", "152221", "科尔沁右翼前旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100830", "100100", "zh-cn", "152222", "科尔沁右翼中旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100831", "100100", "zh-cn", "152223", "扎赉特旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100832", "100100", "zh-cn", "152224", "突泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100833", "100101", "zh-cn", "152501", "二连浩特市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100834", "100101", "zh-cn", "152502", "锡林浩特市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100835", "100101", "zh-cn", "152522", "阿巴嘎旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100836", "100101", "zh-cn", "152523", "苏尼特左旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100837", "100101", "zh-cn", "152524", "苏尼特右旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100838", "100101", "zh-cn", "152525", "东乌珠穆沁旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100839", "100101", "zh-cn", "152526", "西乌珠穆沁旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100840", "100101", "zh-cn", "152527", "太仆寺旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100841", "100101", "zh-cn", "152528", "镶黄旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100842", "100101", "zh-cn", "152529", "正镶白旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100843", "100101", "zh-cn", "152530", "正蓝旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100844", "100101", "zh-cn", "152531", "多伦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100845", "100102", "zh-cn", "152921", "阿拉善左旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100846", "100102", "zh-cn", "152922", "阿拉善右旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100847", "100102", "zh-cn", "152923", "额济纳旗", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100848", "100103", "zh-cn", "210102", "和平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100849", "100103", "zh-cn", "210103", "沈河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100850", "100103", "zh-cn", "210104", "大东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100851", "100103", "zh-cn", "210105", "皇姑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100852", "100103", "zh-cn", "210106", "铁西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100853", "100103", "zh-cn", "210111", "苏家屯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100854", "100103", "zh-cn", "210112", "浑南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100855", "100103", "zh-cn", "210113", "沈北新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100856", "100103", "zh-cn", "210114", "于洪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100857", "100103", "zh-cn", "210115", "辽中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100858", "100103", "zh-cn", "210123", "康平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100859", "100103", "zh-cn", "210124", "法库县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100860", "100103", "zh-cn", "210181", "新民市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100861", "100104", "zh-cn", "210202", "中山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100862", "100104", "zh-cn", "210203", "西岗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100863", "100104", "zh-cn", "210204", "沙河口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100864", "100104", "zh-cn", "210211", "甘井子区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100865", "100104", "zh-cn", "210212", "旅顺口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100866", "100104", "zh-cn", "210213", "金州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100867", "100104", "zh-cn", "210214", "普兰店区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100868", "100104", "zh-cn", "210224", "长海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100869", "100104", "zh-cn", "210281", "瓦房店市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100870", "100104", "zh-cn", "210283", "庄河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100871", "100105", "zh-cn", "210302", "铁东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100872", "100105", "zh-cn", "210303", "铁西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100873", "100105", "zh-cn", "210304", "立山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100874", "100105", "zh-cn", "210311", "千山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100875", "100105", "zh-cn", "210321", "台安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100876", "100105", "zh-cn", "210323", "岫岩满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100877", "100105", "zh-cn", "210381", "海城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100878", "100106", "zh-cn", "210402", "新抚区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100879", "100106", "zh-cn", "210403", "东洲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100880", "100106", "zh-cn", "210404", "望花区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100881", "100106", "zh-cn", "210411", "顺城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100882", "100106", "zh-cn", "210421", "抚顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100883", "100106", "zh-cn", "210422", "新宾满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100884", "100106", "zh-cn", "210423", "清原满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100885", "100107", "zh-cn", "210502", "平山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100886", "100107", "zh-cn", "210503", "溪湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100887", "100107", "zh-cn", "210504", "明山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100888", "100107", "zh-cn", "210505", "南芬区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100889", "100107", "zh-cn", "210521", "本溪满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100890", "100107", "zh-cn", "210522", "桓仁满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100891", "100108", "zh-cn", "210602", "元宝区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100892", "100108", "zh-cn", "210603", "振兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100893", "100108", "zh-cn", "210604", "振安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100894", "100108", "zh-cn", "210624", "宽甸满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100895", "100108", "zh-cn", "210681", "东港市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100896", "100108", "zh-cn", "210682", "凤城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100897", "100109", "zh-cn", "210702", "古塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100898", "100109", "zh-cn", "210703", "凌河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100899", "100109", "zh-cn", "210711", "太和区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100900", "100109", "zh-cn", "210726", "黑山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100901", "100109", "zh-cn", "210727", "义县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100902", "100109", "zh-cn", "210781", "凌海市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100903", "100109", "zh-cn", "210782", "北镇市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100904", "100110", "zh-cn", "210802", "站前区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100905", "100110", "zh-cn", "210803", "西市区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100906", "100110", "zh-cn", "210804", "鲅鱼圈区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100907", "100110", "zh-cn", "210811", "老边区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100908", "100110", "zh-cn", "210881", "盖州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100909", "100110", "zh-cn", "210882", "大石桥市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100910", "100111", "zh-cn", "210902", "海州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100911", "100111", "zh-cn", "210903", "新邱区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100912", "100111", "zh-cn", "210904", "太平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100913", "100111", "zh-cn", "210905", "清河门区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100914", "100111", "zh-cn", "210911", "细河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100915", "100111", "zh-cn", "210921", "阜新蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100916", "100111", "zh-cn", "210922", "彰武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100917", "100112", "zh-cn", "211002", "白塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100918", "100112", "zh-cn", "211003", "文圣区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100919", "100112", "zh-cn", "211004", "宏伟区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100920", "100112", "zh-cn", "211005", "弓长岭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100921", "100112", "zh-cn", "211011", "太子河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100922", "100112", "zh-cn", "211021", "辽阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100923", "100112", "zh-cn", "211081", "灯塔市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100924", "100113", "zh-cn", "211102", "双台子区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100925", "100113", "zh-cn", "211103", "兴隆台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100926", "100113", "zh-cn", "211104", "大洼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100927", "100113", "zh-cn", "211122", "盘山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100928", "100114", "zh-cn", "211202", "银州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100929", "100114", "zh-cn", "211204", "清河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100930", "100114", "zh-cn", "211221", "铁岭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100931", "100114", "zh-cn", "211223", "西丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100932", "100114", "zh-cn", "211224", "昌图县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100933", "100114", "zh-cn", "211281", "调兵山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100934", "100114", "zh-cn", "211282", "开原市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100935", "100115", "zh-cn", "211302", "双塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100936", "100115", "zh-cn", "211303", "龙城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100937", "100115", "zh-cn", "211321", "朝阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100938", "100115", "zh-cn", "211322", "建平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100939", "100115", "zh-cn", "211324", "喀喇沁左翼蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100940", "100115", "zh-cn", "211381", "北票市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100941", "100115", "zh-cn", "211382", "凌源市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100942", "100116", "zh-cn", "211402", "连山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100943", "100116", "zh-cn", "211403", "龙港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100944", "100116", "zh-cn", "211404", "南票区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100945", "100116", "zh-cn", "211421", "绥中县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100946", "100116", "zh-cn", "211422", "建昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100947", "100116", "zh-cn", "211481", "兴城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100948", "100117", "zh-cn", "220102", "南关区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100949", "100117", "zh-cn", "220103", "宽城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100950", "100117", "zh-cn", "220104", "朝阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100951", "100117", "zh-cn", "220105", "二道区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100952", "100117", "zh-cn", "220106", "绿园区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100953", "100117", "zh-cn", "220112", "双阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100954", "100117", "zh-cn", "220113", "九台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100955", "100117", "zh-cn", "220122", "农安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100956", "100117", "zh-cn", "220182", "榆树市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100957", "100117", "zh-cn", "220183", "德惠市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100958", "100118", "zh-cn", "220202", "昌邑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100959", "100118", "zh-cn", "220203", "龙潭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100960", "100118", "zh-cn", "220204", "船营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100961", "100118", "zh-cn", "220211", "丰满区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100962", "100118", "zh-cn", "220221", "永吉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100963", "100118", "zh-cn", "220281", "蛟河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100964", "100118", "zh-cn", "220282", "桦甸市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100965", "100118", "zh-cn", "220283", "舒兰市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100966", "100118", "zh-cn", "220284", "磐石市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100967", "100119", "zh-cn", "220302", "铁西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100968", "100119", "zh-cn", "220303", "铁东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100969", "100119", "zh-cn", "220322", "梨树县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100970", "100119", "zh-cn", "220323", "伊通满族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100971", "100119", "zh-cn", "220381", "公主岭市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100972", "100119", "zh-cn", "220382", "双辽市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100973", "100120", "zh-cn", "220402", "龙山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100974", "100120", "zh-cn", "220403", "西安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100975", "100120", "zh-cn", "220421", "东丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100976", "100120", "zh-cn", "220422", "东辽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100977", "100121", "zh-cn", "220502", "东昌区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100978", "100121", "zh-cn", "220503", "二道江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100979", "100121", "zh-cn", "220521", "通化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100980", "100121", "zh-cn", "220523", "辉南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100981", "100121", "zh-cn", "220524", "柳河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100982", "100121", "zh-cn", "220581", "梅河口市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100983", "100121", "zh-cn", "220582", "集安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100984", "100122", "zh-cn", "220602", "浑江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100985", "100122", "zh-cn", "220605", "江源区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100986", "100122", "zh-cn", "220621", "抚松县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100987", "100122", "zh-cn", "220622", "靖宇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100988", "100122", "zh-cn", "220623", "长白朝鲜族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100989", "100122", "zh-cn", "220681", "临江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100990", "100123", "zh-cn", "220702", "宁江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100991", "100123", "zh-cn", "220721", "前郭尔罗斯蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100992", "100123", "zh-cn", "220722", "长岭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100993", "100123", "zh-cn", "220723", "乾安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100994", "100123", "zh-cn", "220781", "扶余市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100995", "100124", "zh-cn", "220802", "洮北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100996", "100124", "zh-cn", "220821", "镇赉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100997", "100124", "zh-cn", "220822", "通榆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100998", "100124", "zh-cn", "220881", "洮南市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100999", "100124", "zh-cn", "220882", "大安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101000", "100125", "zh-cn", "222401", "延吉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101001", "100125", "zh-cn", "222402", "图们市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101002", "100125", "zh-cn", "222403", "敦化市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101003", "100125", "zh-cn", "222404", "珲春市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101004", "100125", "zh-cn", "222405", "龙井市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101005", "100125", "zh-cn", "222406", "和龙市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101006", "100125", "zh-cn", "222424", "汪清县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101007", "100125", "zh-cn", "222426", "安图县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101008", "100126", "zh-cn", "230102", "道里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101009", "100126", "zh-cn", "230103", "南岗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101010", "100126", "zh-cn", "230104", "道外区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101011", "100126", "zh-cn", "230108", "平房区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101012", "100126", "zh-cn", "230109", "松北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101013", "100126", "zh-cn", "230110", "香坊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101014", "100126", "zh-cn", "230111", "呼兰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101015", "100126", "zh-cn", "230112", "阿城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101016", "100126", "zh-cn", "230113", "双城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101017", "100126", "zh-cn", "230123", "依兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101018", "100126", "zh-cn", "230124", "方正县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101019", "100126", "zh-cn", "230125", "宾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101020", "100126", "zh-cn", "230126", "巴彦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101021", "100126", "zh-cn", "230127", "木兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101022", "100126", "zh-cn", "230128", "通河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101023", "100126", "zh-cn", "230129", "延寿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101024", "100126", "zh-cn", "230183", "尚志市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101025", "100126", "zh-cn", "230184", "五常市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101026", "100127", "zh-cn", "230202", "龙沙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101027", "100127", "zh-cn", "230203", "建华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101028", "100127", "zh-cn", "230204", "铁锋区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101029", "100127", "zh-cn", "230205", "昂昂溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101030", "100127", "zh-cn", "230206", "富拉尔基区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101031", "100127", "zh-cn", "230207", "碾子山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101032", "100127", "zh-cn", "230208", "梅里斯达斡尔族区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101033", "100127", "zh-cn", "230221", "龙江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101039", "100127", "zh-cn", "230230", "克东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101040", "100127", "zh-cn", "230231", "拜泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101034", "100127", "zh-cn", "230240", "依安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101035", "100127", "zh-cn", "230241", "泰来县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101036", "100127", "zh-cn", "230242", "甘南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101037", "100127", "zh-cn", "230243", "富裕县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101038", "100127", "zh-cn", "230244", "克山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101041", "100127", "zh-cn", "230245", "讷河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101042", "100128", "zh-cn", "230302", "鸡冠区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101043", "100128", "zh-cn", "230303", "恒山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101044", "100128", "zh-cn", "230304", "滴道区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101045", "100128", "zh-cn", "230305", "梨树区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101046", "100128", "zh-cn", "230306", "城子河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101047", "100128", "zh-cn", "230307", "麻山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101048", "100128", "zh-cn", "230321", "鸡东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101049", "100128", "zh-cn", "230381", "虎林市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101050", "100128", "zh-cn", "230382", "密山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101051", "100129", "zh-cn", "230402", "向阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101052", "100129", "zh-cn", "230403", "工农区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101053", "100129", "zh-cn", "230404", "南山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101054", "100129", "zh-cn", "230405", "兴安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101055", "100129", "zh-cn", "230406", "东山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101056", "100129", "zh-cn", "230407", "兴山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101057", "100129", "zh-cn", "230421", "萝北县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101058", "100129", "zh-cn", "230422", "绥滨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101059", "100130", "zh-cn", "230502", "尖山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101060", "100130", "zh-cn", "230503", "岭东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101061", "100130", "zh-cn", "230505", "四方台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101062", "100130", "zh-cn", "230506", "宝山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101063", "100130", "zh-cn", "230521", "集贤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101064", "100130", "zh-cn", "230522", "友谊县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101065", "100130", "zh-cn", "230523", "宝清县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101066", "100130", "zh-cn", "230524", "饶河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101067", "100131", "zh-cn", "230602", "萨尔图区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101068", "100131", "zh-cn", "230603", "龙凤区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101069", "100131", "zh-cn", "230604", "让胡路区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101070", "100131", "zh-cn", "230605", "红岗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101071", "100131", "zh-cn", "230606", "大同区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101072", "100131", "zh-cn", "230621", "肇州县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101073", "100131", "zh-cn", "230622", "肇源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101074", "100131", "zh-cn", "230623", "林甸县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101075", "100131", "zh-cn", "230624", "杜尔伯特蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101076", "100132", "zh-cn", "230702", "伊春区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101077", "100132", "zh-cn", "230703", "南岔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101078", "100132", "zh-cn", "230704", "友好区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101079", "100132", "zh-cn", "230705", "西林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101080", "100132", "zh-cn", "230706", "翠峦区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101081", "100132", "zh-cn", "230707", "新青区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101082", "100132", "zh-cn", "230708", "美溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101083", "100132", "zh-cn", "230709", "金山屯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101084", "100132", "zh-cn", "230710", "五营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101085", "100132", "zh-cn", "230711", "乌马河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101086", "100132", "zh-cn", "230712", "汤旺河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101087", "100132", "zh-cn", "230713", "带岭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101088", "100132", "zh-cn", "230714", "乌伊岭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101089", "100132", "zh-cn", "230715", "红星区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101090", "100132", "zh-cn", "230716", "上甘岭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101091", "100132", "zh-cn", "230722", "嘉荫县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101092", "100132", "zh-cn", "230781", "铁力市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101093", "100133", "zh-cn", "230803", "向阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101094", "100133", "zh-cn", "230804", "前进区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101095", "100133", "zh-cn", "230805", "东风区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101096", "100133", "zh-cn", "230811", "郊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101097", "100133", "zh-cn", "230822", "桦南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101098", "100133", "zh-cn", "230826", "桦川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101099", "100133", "zh-cn", "230828", "汤原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101100", "100133", "zh-cn", "230881", "同江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101101", "100133", "zh-cn", "230882", "富锦市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101102", "100133", "zh-cn", "230883", "抚远市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101103", "100134", "zh-cn", "230902", "新兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101104", "100134", "zh-cn", "230903", "桃山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101105", "100134", "zh-cn", "230904", "茄子河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101106", "100134", "zh-cn", "230921", "勃利县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101107", "100135", "zh-cn", "231002", "东安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101108", "100135", "zh-cn", "231003", "阳明区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101109", "100135", "zh-cn", "231004", "爱民区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101110", "100135", "zh-cn", "231005", "西安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101111", "100135", "zh-cn", "231025", "林口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101112", "100135", "zh-cn", "231081", "绥芬河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101113", "100135", "zh-cn", "231083", "海林市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101114", "100135", "zh-cn", "231084", "宁安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101115", "100135", "zh-cn", "231085", "穆棱市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101116", "100135", "zh-cn", "231086", "东宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101117", "100136", "zh-cn", "231102", "爱辉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101118", "100136", "zh-cn", "231121", "嫩江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101119", "100136", "zh-cn", "231123", "逊克县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101120", "100136", "zh-cn", "231124", "孙吴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101121", "100136", "zh-cn", "231181", "北安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101122", "100136", "zh-cn", "231182", "五大连池市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101123", "100137", "zh-cn", "231202", "北林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101124", "100137", "zh-cn", "231221", "望奎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101125", "100137", "zh-cn", "231222", "兰西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101126", "100137", "zh-cn", "231223", "青冈县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101127", "100137", "zh-cn", "231224", "庆安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101128", "100137", "zh-cn", "231225", "明水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101129", "100137", "zh-cn", "231226", "绥棱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101130", "100137", "zh-cn", "231281", "安达市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101131", "100137", "zh-cn", "231282", "肇东市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101132", "100137", "zh-cn", "231283", "海伦市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101133", "100138", "zh-cn", "232701", "加格达奇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103691", "100138", "zh-cn", "232702", "松岭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103689", "100138", "zh-cn", "232703", "新林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103690", "100138", "zh-cn", "232704", "呼中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101134", "100138", "zh-cn", "232721", "呼玛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101135", "100138", "zh-cn", "232722", "塔河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101136", "100138", "zh-cn", "232723", "漠河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101137", "100139", "zh-cn", "310101", "黄浦区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101138", "100139", "zh-cn", "310104", "徐汇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101139", "100139", "zh-cn", "310105", "长宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101140", "100139", "zh-cn", "310106", "静安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101141", "100139", "zh-cn", "310107", "普陀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101142", "100139", "zh-cn", "310109", "虹口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101143", "100139", "zh-cn", "310110", "杨浦区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101144", "100139", "zh-cn", "310112", "闵行区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101145", "100139", "zh-cn", "310113", "宝山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101146", "100139", "zh-cn", "310114", "嘉定区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101147", "100139", "zh-cn", "310115", "浦东新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101148", "100139", "zh-cn", "310116", "金山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101149", "100139", "zh-cn", "310117", "松江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101150", "100139", "zh-cn", "310118", "青浦区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101151", "100139", "zh-cn", "310120", "奉贤区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101152", "100139", "zh-cn", "310151", "崇明区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101153", "100140", "zh-cn", "320102", "玄武区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101154", "100140", "zh-cn", "320104", "秦淮区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101155", "100140", "zh-cn", "320105", "建邺区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101156", "100140", "zh-cn", "320106", "鼓楼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101157", "100140", "zh-cn", "320111", "浦口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101158", "100140", "zh-cn", "320113", "栖霞区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101159", "100140", "zh-cn", "320114", "雨花台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101160", "100140", "zh-cn", "320115", "江宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101161", "100140", "zh-cn", "320116", "六合区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101162", "100140", "zh-cn", "320117", "溧水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101163", "100140", "zh-cn", "320118", "高淳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101164", "100141", "zh-cn", "320205", "锡山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101165", "100141", "zh-cn", "320206", "惠山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101166", "100141", "zh-cn", "320211", "滨湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101167", "100141", "zh-cn", "320213", "梁溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101168", "100141", "zh-cn", "320214", "新吴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101169", "100141", "zh-cn", "320281", "江阴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101170", "100141", "zh-cn", "320282", "宜兴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101171", "100142", "zh-cn", "320302", "鼓楼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101172", "100142", "zh-cn", "320303", "云龙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101173", "100142", "zh-cn", "320305", "贾汪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101174", "100142", "zh-cn", "320311", "泉山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101175", "100142", "zh-cn", "320312", "铜山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101176", "100142", "zh-cn", "320321", "丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101177", "100142", "zh-cn", "320322", "沛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101178", "100142", "zh-cn", "320324", "睢宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101179", "100142", "zh-cn", "320381", "新沂市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101180", "100142", "zh-cn", "320382", "邳州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101181", "100143", "zh-cn", "320402", "天宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101182", "100143", "zh-cn", "320404", "钟楼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101183", "100143", "zh-cn", "320411", "新北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101184", "100143", "zh-cn", "320412", "武进区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101185", "100143", "zh-cn", "320413", "金坛区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101186", "100143", "zh-cn", "320481", "溧阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101187", "100144", "zh-cn", "320505", "虎丘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101188", "100144", "zh-cn", "320506", "吴中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101189", "100144", "zh-cn", "320507", "相城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101190", "100144", "zh-cn", "320508", "姑苏区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101191", "100144", "zh-cn", "320509", "吴江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101192", "100144", "zh-cn", "320581", "常熟市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101193", "100144", "zh-cn", "320582", "张家港市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101194", "100144", "zh-cn", "320583", "昆山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101195", "100144", "zh-cn", "320585", "太仓市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101196", "100145", "zh-cn", "320602", "崇川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101197", "100145", "zh-cn", "320611", "港闸区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101198", "100145", "zh-cn", "320612", "通州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101199", "100145", "zh-cn", "320621", "海安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101200", "100145", "zh-cn", "320623", "如东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101201", "100145", "zh-cn", "320681", "启东市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101202", "100145", "zh-cn", "320682", "如皋市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101203", "100145", "zh-cn", "320684", "海门市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101204", "100146", "zh-cn", "320703", "连云区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101205", "100146", "zh-cn", "320706", "海州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101206", "100146", "zh-cn", "320707", "赣榆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101207", "100146", "zh-cn", "320722", "东海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101208", "100146", "zh-cn", "320723", "灌云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101209", "100146", "zh-cn", "320724", "灌南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101210", "100147", "zh-cn", "320803", "淮安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101211", "100147", "zh-cn", "320804", "淮阴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101212", "100147", "zh-cn", "320812", "清江浦区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101213", "100147", "zh-cn", "320813", "洪泽区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101214", "100147", "zh-cn", "320826", "涟水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101215", "100147", "zh-cn", "320830", "盱眙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101216", "100147", "zh-cn", "320831", "金湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101217", "100148", "zh-cn", "320902", "亭湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101218", "100148", "zh-cn", "320903", "盐都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101219", "100148", "zh-cn", "320904", "大丰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101220", "100148", "zh-cn", "320921", "响水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101221", "100148", "zh-cn", "320922", "滨海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101222", "100148", "zh-cn", "320923", "阜宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101223", "100148", "zh-cn", "320924", "射阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101224", "100148", "zh-cn", "320925", "建湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101225", "100148", "zh-cn", "320981", "东台市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101226", "100149", "zh-cn", "321002", "广陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101227", "100149", "zh-cn", "321003", "邗江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101228", "100149", "zh-cn", "321012", "江都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101229", "100149", "zh-cn", "321023", "宝应县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101230", "100149", "zh-cn", "321081", "仪征市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101231", "100149", "zh-cn", "321084", "高邮市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101232", "100150", "zh-cn", "321102", "京口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101233", "100150", "zh-cn", "321111", "润州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101234", "100150", "zh-cn", "321112", "丹徒区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101235", "100150", "zh-cn", "321181", "丹阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101236", "100150", "zh-cn", "321182", "扬中市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101237", "100150", "zh-cn", "321183", "句容市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101238", "100151", "zh-cn", "321202", "海陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101239", "100151", "zh-cn", "321203", "高港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101240", "100151", "zh-cn", "321204", "姜堰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101241", "100151", "zh-cn", "321281", "兴化市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101242", "100151", "zh-cn", "321282", "靖江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101243", "100151", "zh-cn", "321283", "泰兴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101244", "100152", "zh-cn", "321302", "宿城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101245", "100152", "zh-cn", "321311", "宿豫区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101246", "100152", "zh-cn", "321322", "沭阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101247", "100152", "zh-cn", "321323", "泗阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101248", "100152", "zh-cn", "321324", "泗洪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101249", "100153", "zh-cn", "330102", "上城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101250", "100153", "zh-cn", "330103", "下城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101251", "100153", "zh-cn", "330104", "江干区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101252", "100153", "zh-cn", "330105", "拱墅区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101253", "100153", "zh-cn", "330106", "西湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101254", "100153", "zh-cn", "330108", "滨江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101255", "100153", "zh-cn", "330109", "萧山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101256", "100153", "zh-cn", "330110", "余杭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101257", "100153", "zh-cn", "330111", "富阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101258", "100153", "zh-cn", "330122", "桐庐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101259", "100153", "zh-cn", "330127", "淳安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101260", "100153", "zh-cn", "330182", "建德市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101261", "100153", "zh-cn", "330185", "临安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101262", "100154", "zh-cn", "330203", "海曙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101263", "100154", "zh-cn", "330205", "江北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101264", "100154", "zh-cn", "330206", "北仑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101265", "100154", "zh-cn", "330211", "镇海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101266", "100154", "zh-cn", "330212", "鄞州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101268", "100154", "zh-cn", "330225", "象山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101269", "100154", "zh-cn", "330226", "宁海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101270", "100154", "zh-cn", "330281", "余姚市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101271", "100154", "zh-cn", "330282", "慈溪市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101267", "100154", "zh-cn", "330283", "奉化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101272", "100155", "zh-cn", "330302", "鹿城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101273", "100155", "zh-cn", "330303", "龙湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101274", "100155", "zh-cn", "330304", "瓯海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101275", "100155", "zh-cn", "330305", "洞头区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101276", "100155", "zh-cn", "330324", "永嘉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101277", "100155", "zh-cn", "330326", "平阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101278", "100155", "zh-cn", "330327", "苍南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101279", "100155", "zh-cn", "330328", "文成县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101280", "100155", "zh-cn", "330329", "泰顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101281", "100155", "zh-cn", "330381", "瑞安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101282", "100155", "zh-cn", "330382", "乐清市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101283", "100156", "zh-cn", "330402", "南湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101284", "100156", "zh-cn", "330411", "秀洲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101285", "100156", "zh-cn", "330421", "嘉善县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101286", "100156", "zh-cn", "330424", "海盐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101287", "100156", "zh-cn", "330481", "海宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101288", "100156", "zh-cn", "330482", "平湖市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101289", "100156", "zh-cn", "330483", "桐乡市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101290", "100157", "zh-cn", "330502", "吴兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101291", "100157", "zh-cn", "330503", "南浔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101292", "100157", "zh-cn", "330521", "德清县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101293", "100157", "zh-cn", "330522", "长兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101294", "100157", "zh-cn", "330523", "安吉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101295", "100158", "zh-cn", "330602", "越城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101296", "100158", "zh-cn", "330603", "柯桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101297", "100158", "zh-cn", "330604", "上虞区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101298", "100158", "zh-cn", "330624", "新昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101299", "100158", "zh-cn", "330681", "诸暨市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101300", "100158", "zh-cn", "330683", "嵊州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101301", "100159", "zh-cn", "330702", "婺城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101302", "100159", "zh-cn", "330703", "金东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101303", "100159", "zh-cn", "330723", "武义县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101304", "100159", "zh-cn", "330726", "浦江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101305", "100159", "zh-cn", "330727", "磐安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101306", "100159", "zh-cn", "330781", "兰溪市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101307", "100159", "zh-cn", "330782", "义乌市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101308", "100159", "zh-cn", "330783", "东阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101309", "100159", "zh-cn", "330784", "永康市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101310", "100160", "zh-cn", "330802", "柯城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101311", "100160", "zh-cn", "330803", "衢江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101312", "100160", "zh-cn", "330822", "常山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101313", "100160", "zh-cn", "330824", "开化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101314", "100160", "zh-cn", "330825", "龙游县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101315", "100160", "zh-cn", "330881", "江山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101316", "100161", "zh-cn", "330902", "定海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101317", "100161", "zh-cn", "330903", "普陀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101318", "100161", "zh-cn", "330921", "岱山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101319", "100161", "zh-cn", "330922", "嵊泗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101320", "100162", "zh-cn", "331002", "椒江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101321", "100162", "zh-cn", "331003", "黄岩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101322", "100162", "zh-cn", "331004", "路桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101328", "100162", "zh-cn", "331021", "玉环市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101323", "100162", "zh-cn", "331022", "三门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101324", "100162", "zh-cn", "331023", "天台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101325", "100162", "zh-cn", "331024", "仙居县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101326", "100162", "zh-cn", "331081", "温岭市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101327", "100162", "zh-cn", "331082", "临海市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101329", "100163", "zh-cn", "331102", "莲都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101330", "100163", "zh-cn", "331121", "青田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101331", "100163", "zh-cn", "331122", "缙云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101332", "100163", "zh-cn", "331123", "遂昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101333", "100163", "zh-cn", "331124", "松阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101334", "100163", "zh-cn", "331125", "云和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101335", "100163", "zh-cn", "331126", "庆元县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101336", "100163", "zh-cn", "331127", "景宁畲族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101337", "100163", "zh-cn", "331181", "龙泉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101338", "100164", "zh-cn", "340102", "瑶海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101339", "100164", "zh-cn", "340103", "庐阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101340", "100164", "zh-cn", "340104", "蜀山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101341", "100164", "zh-cn", "340111", "包河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101342", "100164", "zh-cn", "340121", "长丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101343", "100164", "zh-cn", "340122", "肥东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101344", "100164", "zh-cn", "340123", "肥西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101345", "100164", "zh-cn", "340124", "庐江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101346", "100164", "zh-cn", "340181", "巢湖市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101347", "100165", "zh-cn", "340202", "镜湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101348", "100165", "zh-cn", "340203", "弋江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101349", "100165", "zh-cn", "340207", "鸠江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101350", "100165", "zh-cn", "340208", "三山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101351", "100165", "zh-cn", "340221", "芜湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101352", "100165", "zh-cn", "340222", "繁昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101353", "100165", "zh-cn", "340223", "南陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101354", "100165", "zh-cn", "340225", "无为县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101355", "100166", "zh-cn", "340302", "龙子湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101356", "100166", "zh-cn", "340303", "蚌山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101357", "100166", "zh-cn", "340304", "禹会区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101358", "100166", "zh-cn", "340311", "淮上区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101359", "100166", "zh-cn", "340321", "怀远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101360", "100166", "zh-cn", "340322", "五河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101361", "100166", "zh-cn", "340323", "固镇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101362", "100167", "zh-cn", "340402", "大通区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101363", "100167", "zh-cn", "340403", "田家庵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101364", "100167", "zh-cn", "340404", "谢家集区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101365", "100167", "zh-cn", "340405", "八公山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101366", "100167", "zh-cn", "340406", "潘集区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101367", "100167", "zh-cn", "340421", "凤台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101368", "100167", "zh-cn", "340422", "寿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101369", "100168", "zh-cn", "340503", "花山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101370", "100168", "zh-cn", "340504", "雨山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101371", "100168", "zh-cn", "340506", "博望区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101372", "100168", "zh-cn", "340521", "当涂县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101373", "100168", "zh-cn", "340522", "含山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101374", "100168", "zh-cn", "340523", "和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101375", "100169", "zh-cn", "340602", "杜集区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101376", "100169", "zh-cn", "340603", "相山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101377", "100169", "zh-cn", "340604", "烈山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101378", "100169", "zh-cn", "340621", "濉溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101379", "100170", "zh-cn", "340705", "铜官区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101380", "100170", "zh-cn", "340706", "义安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101381", "100170", "zh-cn", "340711", "郊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101382", "100170", "zh-cn", "340722", "枞阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101383", "100171", "zh-cn", "340802", "迎江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101384", "100171", "zh-cn", "340803", "大观区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101385", "100171", "zh-cn", "340811", "宜秀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101386", "100171", "zh-cn", "340822", "怀宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101387", "100171", "zh-cn", "340824", "潜山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101388", "100171", "zh-cn", "340825", "太湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101389", "100171", "zh-cn", "340826", "宿松县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101390", "100171", "zh-cn", "340827", "望江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101391", "100171", "zh-cn", "340828", "岳西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101392", "100171", "zh-cn", "340881", "桐城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101393", "100172", "zh-cn", "341002", "屯溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101394", "100172", "zh-cn", "341003", "黄山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101395", "100172", "zh-cn", "341004", "徽州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101396", "100172", "zh-cn", "341021", "歙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101397", "100172", "zh-cn", "341022", "休宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101398", "100172", "zh-cn", "341023", "黟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101399", "100172", "zh-cn", "341024", "祁门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101400", "100173", "zh-cn", "341102", "琅琊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101401", "100173", "zh-cn", "341103", "南谯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101402", "100173", "zh-cn", "341122", "来安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101403", "100173", "zh-cn", "341124", "全椒县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101404", "100173", "zh-cn", "341125", "定远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101405", "100173", "zh-cn", "341126", "凤阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101406", "100173", "zh-cn", "341181", "天长市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101407", "100173", "zh-cn", "341182", "明光市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101408", "100174", "zh-cn", "341202", "颍州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101409", "100174", "zh-cn", "341203", "颍东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101410", "100174", "zh-cn", "341204", "颍泉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101411", "100174", "zh-cn", "341221", "临泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101412", "100174", "zh-cn", "341222", "太和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101413", "100174", "zh-cn", "341225", "阜南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101414", "100174", "zh-cn", "341226", "颍上县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101415", "100174", "zh-cn", "341282", "界首市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101416", "100175", "zh-cn", "341302", "埇桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101417", "100175", "zh-cn", "341321", "砀山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101418", "100175", "zh-cn", "341322", "萧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101419", "100175", "zh-cn", "341323", "灵璧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101420", "100175", "zh-cn", "341324", "泗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101421", "100176", "zh-cn", "341502", "金安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101422", "100176", "zh-cn", "341503", "裕安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101423", "100176", "zh-cn", "341504", "叶集区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101424", "100176", "zh-cn", "341522", "霍邱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101425", "100176", "zh-cn", "341523", "舒城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101426", "100176", "zh-cn", "341524", "金寨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101427", "100176", "zh-cn", "341525", "霍山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101428", "100177", "zh-cn", "341602", "谯城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101429", "100177", "zh-cn", "341621", "涡阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101430", "100177", "zh-cn", "341622", "蒙城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101431", "100177", "zh-cn", "341623", "利辛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101432", "100178", "zh-cn", "341702", "贵池区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101433", "100178", "zh-cn", "341721", "东至县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101434", "100178", "zh-cn", "341722", "石台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101435", "100178", "zh-cn", "341723", "青阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101436", "100179", "zh-cn", "341802", "宣州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101437", "100179", "zh-cn", "341821", "郎溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101438", "100179", "zh-cn", "341822", "广德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101439", "100179", "zh-cn", "341823", "泾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101440", "100179", "zh-cn", "341824", "绩溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101441", "100179", "zh-cn", "341825", "旌德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101442", "100179", "zh-cn", "341881", "宁国市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101444", "100180", "zh-cn", "350103", "台江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101445", "100180", "zh-cn", "350104", "仓山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101446", "100180", "zh-cn", "350105", "马尾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101447", "100180", "zh-cn", "350111", "晋安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101448", "100180", "zh-cn", "350121", "闽侯县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101449", "100180", "zh-cn", "350122", "连江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101450", "100180", "zh-cn", "350123", "罗源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101451", "100180", "zh-cn", "350124", "闽清县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101452", "100180", "zh-cn", "350125", "永泰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101453", "100180", "zh-cn", "350128", "平潭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101454", "100180", "zh-cn", "350181", "福清市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101455", "100180", "zh-cn", "350182", "长乐市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101443", "100180", "zh-cn", "350183", "鼓楼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101456", "100181", "zh-cn", "350203", "思明区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101457", "100181", "zh-cn", "350205", "海沧区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101458", "100181", "zh-cn", "350206", "湖里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101459", "100181", "zh-cn", "350211", "集美区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101460", "100181", "zh-cn", "350212", "同安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101461", "100181", "zh-cn", "350213", "翔安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101462", "100182", "zh-cn", "350302", "城厢区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101463", "100182", "zh-cn", "350303", "涵江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101464", "100182", "zh-cn", "350304", "荔城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101465", "100182", "zh-cn", "350305", "秀屿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101466", "100182", "zh-cn", "350322", "仙游县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101467", "100183", "zh-cn", "350402", "梅列区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101468", "100183", "zh-cn", "350403", "三元区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101469", "100183", "zh-cn", "350421", "明溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101470", "100183", "zh-cn", "350423", "清流县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101471", "100183", "zh-cn", "350424", "宁化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101472", "100183", "zh-cn", "350425", "大田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101473", "100183", "zh-cn", "350426", "尤溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101474", "100183", "zh-cn", "350427", "沙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101475", "100183", "zh-cn", "350428", "将乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101476", "100183", "zh-cn", "350429", "泰宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101477", "100183", "zh-cn", "350430", "建宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101478", "100183", "zh-cn", "350481", "永安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101479", "100184", "zh-cn", "350502", "鲤城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101480", "100184", "zh-cn", "350503", "丰泽区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101481", "100184", "zh-cn", "350504", "洛江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101482", "100184", "zh-cn", "350505", "泉港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101483", "100184", "zh-cn", "350521", "惠安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101484", "100184", "zh-cn", "350524", "安溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101485", "100184", "zh-cn", "350525", "永春县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101486", "100184", "zh-cn", "350526", "德化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101487", "100184", "zh-cn", "350527", "金门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101488", "100184", "zh-cn", "350581", "石狮市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101489", "100184", "zh-cn", "350582", "晋江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101490", "100184", "zh-cn", "350583", "南安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101491", "100185", "zh-cn", "350602", "芗城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101492", "100185", "zh-cn", "350603", "龙文区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101493", "100185", "zh-cn", "350622", "云霄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101494", "100185", "zh-cn", "350623", "漳浦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101495", "100185", "zh-cn", "350624", "诏安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101496", "100185", "zh-cn", "350625", "长泰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101497", "100185", "zh-cn", "350626", "东山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101498", "100185", "zh-cn", "350627", "南靖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101499", "100185", "zh-cn", "350628", "平和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101500", "100185", "zh-cn", "350629", "华安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101501", "100185", "zh-cn", "350681", "龙海市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101502", "100186", "zh-cn", "350702", "延平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101503", "100186", "zh-cn", "350703", "建阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101504", "100186", "zh-cn", "350721", "顺昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101505", "100186", "zh-cn", "350722", "浦城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101506", "100186", "zh-cn", "350723", "光泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101507", "100186", "zh-cn", "350724", "松溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101508", "100186", "zh-cn", "350725", "政和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101509", "100186", "zh-cn", "350781", "邵武市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101510", "100186", "zh-cn", "350782", "武夷山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101511", "100186", "zh-cn", "350783", "建瓯市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101512", "100187", "zh-cn", "350802", "新罗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101514", "100187", "zh-cn", "350821", "长汀县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101515", "100187", "zh-cn", "350823", "上杭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101516", "100187", "zh-cn", "350824", "武平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101517", "100187", "zh-cn", "350825", "连城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101518", "100187", "zh-cn", "350881", "漳平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101513", "100187", "zh-cn", "350882", "永定区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101519", "100188", "zh-cn", "350902", "蕉城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101520", "100188", "zh-cn", "350921", "霞浦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101521", "100188", "zh-cn", "350922", "古田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101522", "100188", "zh-cn", "350923", "屏南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101523", "100188", "zh-cn", "350924", "寿宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101524", "100188", "zh-cn", "350925", "周宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101525", "100188", "zh-cn", "350926", "柘荣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101526", "100188", "zh-cn", "350981", "福安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101527", "100188", "zh-cn", "350982", "福鼎市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101528", "100189", "zh-cn", "360102", "东湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101529", "100189", "zh-cn", "360103", "西湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101530", "100189", "zh-cn", "360104", "青云谱区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101531", "100189", "zh-cn", "360105", "湾里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101532", "100189", "zh-cn", "360111", "青山湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101533", "100189", "zh-cn", "360112", "新建区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101534", "100189", "zh-cn", "360121", "南昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101535", "100189", "zh-cn", "360123", "安义县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101536", "100189", "zh-cn", "360124", "进贤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101537", "100190", "zh-cn", "360202", "昌江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101538", "100190", "zh-cn", "360203", "珠山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101539", "100190", "zh-cn", "360222", "浮梁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101540", "100190", "zh-cn", "360281", "乐平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101541", "100191", "zh-cn", "360302", "安源区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101542", "100191", "zh-cn", "360313", "湘东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101543", "100191", "zh-cn", "360321", "莲花县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101544", "100191", "zh-cn", "360322", "上栗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101545", "100191", "zh-cn", "360323", "芦溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101546", "100192", "zh-cn", "360402", "濂溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101547", "100192", "zh-cn", "360403", "浔阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101548", "100192", "zh-cn", "360421", "九江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101549", "100192", "zh-cn", "360423", "武宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101550", "100192", "zh-cn", "360424", "修水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101551", "100192", "zh-cn", "360425", "永修县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101552", "100192", "zh-cn", "360426", "德安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101553", "100192", "zh-cn", "360428", "都昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101554", "100192", "zh-cn", "360429", "湖口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101555", "100192", "zh-cn", "360430", "彭泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101556", "100192", "zh-cn", "360481", "瑞昌市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101557", "100192", "zh-cn", "360482", "共青城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101558", "100192", "zh-cn", "360483", "庐山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101559", "100193", "zh-cn", "360502", "渝水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101560", "100193", "zh-cn", "360521", "分宜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101561", "100194", "zh-cn", "360602", "月湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101562", "100194", "zh-cn", "360622", "余江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101563", "100194", "zh-cn", "360681", "贵溪市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101564", "100195", "zh-cn", "360702", "章贡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101565", "100195", "zh-cn", "360703", "南康区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101567", "100195", "zh-cn", "360722", "信丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101568", "100195", "zh-cn", "360723", "大余县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101569", "100195", "zh-cn", "360724", "上犹县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101570", "100195", "zh-cn", "360725", "崇义县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101571", "100195", "zh-cn", "360726", "安远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101572", "100195", "zh-cn", "360727", "龙南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101573", "100195", "zh-cn", "360728", "定南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101574", "100195", "zh-cn", "360729", "全南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101575", "100195", "zh-cn", "360730", "宁都县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101576", "100195", "zh-cn", "360731", "于都县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101577", "100195", "zh-cn", "360732", "兴国县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101578", "100195", "zh-cn", "360733", "会昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101579", "100195", "zh-cn", "360734", "寻乌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101580", "100195", "zh-cn", "360735", "石城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101581", "100195", "zh-cn", "360781", "瑞金市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101566", "100195", "zh-cn", "360782", "赣县区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101582", "100196", "zh-cn", "360802", "吉州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101583", "100196", "zh-cn", "360803", "青原区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101584", "100196", "zh-cn", "360821", "吉安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101585", "100196", "zh-cn", "360822", "吉水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101586", "100196", "zh-cn", "360823", "峡江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101587", "100196", "zh-cn", "360824", "新干县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101588", "100196", "zh-cn", "360825", "永丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101589", "100196", "zh-cn", "360826", "泰和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101590", "100196", "zh-cn", "360827", "遂川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101591", "100196", "zh-cn", "360828", "万安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101592", "100196", "zh-cn", "360829", "安福县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101593", "100196", "zh-cn", "360830", "永新县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101594", "100196", "zh-cn", "360881", "井冈山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101595", "100197", "zh-cn", "360902", "袁州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101596", "100197", "zh-cn", "360921", "奉新县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101597", "100197", "zh-cn", "360922", "万载县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101598", "100197", "zh-cn", "360923", "上高县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101599", "100197", "zh-cn", "360924", "宜丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101600", "100197", "zh-cn", "360925", "靖安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101601", "100197", "zh-cn", "360926", "铜鼓县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101602", "100197", "zh-cn", "360981", "丰城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101603", "100197", "zh-cn", "360982", "樟树市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101604", "100197", "zh-cn", "360983", "高安市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101605", "100198", "zh-cn", "361002", "临川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101607", "100198", "zh-cn", "361021", "南城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101608", "100198", "zh-cn", "361022", "黎川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101609", "100198", "zh-cn", "361023", "南丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101610", "100198", "zh-cn", "361024", "崇仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101611", "100198", "zh-cn", "361025", "乐安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101612", "100198", "zh-cn", "361026", "宜黄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101613", "100198", "zh-cn", "361027", "金溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101614", "100198", "zh-cn", "361028", "资溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101615", "100198", "zh-cn", "361030", "广昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101606", "100198", "zh-cn", "361031", "东乡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101616", "100199", "zh-cn", "361102", "信州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101617", "100199", "zh-cn", "361103", "广丰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101618", "100199", "zh-cn", "361121", "上饶县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101619", "100199", "zh-cn", "361123", "玉山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101620", "100199", "zh-cn", "361124", "铅山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101621", "100199", "zh-cn", "361125", "横峰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101622", "100199", "zh-cn", "361126", "弋阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101623", "100199", "zh-cn", "361127", "余干县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101624", "100199", "zh-cn", "361128", "鄱阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101625", "100199", "zh-cn", "361129", "万年县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101626", "100199", "zh-cn", "361130", "婺源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101627", "100199", "zh-cn", "361181", "德兴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101628", "100200", "zh-cn", "370102", "历下区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101630", "100200", "zh-cn", "370104", "槐荫区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101631", "100200", "zh-cn", "370105", "天桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101632", "100200", "zh-cn", "370112", "历城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101633", "100200", "zh-cn", "370113", "长清区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101635", "100200", "zh-cn", "370124", "平阴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101636", "100200", "zh-cn", "370125", "济阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101637", "100200", "zh-cn", "370126", "商河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100021", "100200", "zh-cn", "370127", "莱芜区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100002", "100200", "zh-cn", "370128", "钢城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101629", "100200", "zh-cn", "370130", "市中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101634", "100200", "zh-cn", "370131", "章丘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101638", "100201", "zh-cn", "370202", "市南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101639", "100201", "zh-cn", "370203", "市北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101641", "100201", "zh-cn", "370212", "崂山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101642", "100201", "zh-cn", "370213", "李沧区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101643", "100201", "zh-cn", "370214", "城阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101640", "100201", "zh-cn", "370230", "黄岛区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101645", "100201", "zh-cn", "370231", "即墨区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101644", "100201", "zh-cn", "370281", "胶州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101646", "100201", "zh-cn", "370283", "平度市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101647", "100201", "zh-cn", "370285", "莱西市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101648", "100202", "zh-cn", "370302", "淄川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101649", "100202", "zh-cn", "370303", "张店区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101650", "100202", "zh-cn", "370304", "博山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101651", "100202", "zh-cn", "370305", "临淄区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101652", "100202", "zh-cn", "370306", "周村区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101653", "100202", "zh-cn", "370321", "桓台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101654", "100202", "zh-cn", "370322", "高青县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101655", "100202", "zh-cn", "370323", "沂源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101657", "100203", "zh-cn", "370403", "薛城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101658", "100203", "zh-cn", "370404", "峄城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101659", "100203", "zh-cn", "370405", "台儿庄区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101660", "100203", "zh-cn", "370406", "山亭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101656", "100203", "zh-cn", "370410", "市中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101661", "100203", "zh-cn", "370481", "滕州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101662", "100204", "zh-cn", "370502", "东营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101663", "100204", "zh-cn", "370503", "河口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101664", "100204", "zh-cn", "370505", "垦利区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101665", "100204", "zh-cn", "370522", "利津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101666", "100204", "zh-cn", "370523", "广饶县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101667", "100205", "zh-cn", "370602", "芝罘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101668", "100205", "zh-cn", "370611", "福山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101669", "100205", "zh-cn", "370612", "牟平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101670", "100205", "zh-cn", "370613", "莱山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101671", "100205", "zh-cn", "370634", "长岛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101672", "100205", "zh-cn", "370681", "龙口市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101673", "100205", "zh-cn", "370682", "莱阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101674", "100205", "zh-cn", "370683", "莱州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101675", "100205", "zh-cn", "370684", "蓬莱市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101676", "100205", "zh-cn", "370685", "招远市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101677", "100205", "zh-cn", "370686", "栖霞市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101678", "100205", "zh-cn", "370687", "海阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101679", "100206", "zh-cn", "370702", "潍城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101680", "100206", "zh-cn", "370703", "寒亭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101681", "100206", "zh-cn", "370704", "坊子区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101682", "100206", "zh-cn", "370705", "奎文区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101683", "100206", "zh-cn", "370724", "临朐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101684", "100206", "zh-cn", "370725", "昌乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101685", "100206", "zh-cn", "370781", "青州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101686", "100206", "zh-cn", "370782", "诸城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101687", "100206", "zh-cn", "370783", "寿光市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101688", "100206", "zh-cn", "370784", "安丘市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101689", "100206", "zh-cn", "370785", "高密市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101690", "100206", "zh-cn", "370786", "昌邑市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101691", "100207", "zh-cn", "370811", "任城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101692", "100207", "zh-cn", "370812", "兖州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101693", "100207", "zh-cn", "370826", "微山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101694", "100207", "zh-cn", "370827", "鱼台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101695", "100207", "zh-cn", "370828", "金乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101696", "100207", "zh-cn", "370829", "嘉祥县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101697", "100207", "zh-cn", "370830", "汶上县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101698", "100207", "zh-cn", "370831", "泗水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101699", "100207", "zh-cn", "370832", "梁山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101700", "100207", "zh-cn", "370881", "曲阜市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101701", "100207", "zh-cn", "370883", "邹城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101703", "100208", "zh-cn", "370911", "岱岳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101704", "100208", "zh-cn", "370921", "宁阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101705", "100208", "zh-cn", "370923", "东平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101706", "100208", "zh-cn", "370982", "新泰市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101707", "100208", "zh-cn", "370983", "肥城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101702", "100208", "zh-cn", "370990", "泰山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101708", "100209", "zh-cn", "371002", "环翠区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101709", "100209", "zh-cn", "371003", "文登区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101710", "100209", "zh-cn", "371082", "荣成市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101711", "100209", "zh-cn", "371083", "乳山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101712", "100210", "zh-cn", "371102", "东港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101713", "100210", "zh-cn", "371103", "岚山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101714", "100210", "zh-cn", "371121", "五莲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101715", "100210", "zh-cn", "371122", "莒县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101716", "100211", "zh-cn", "371302", "兰山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101717", "100211", "zh-cn", "371311", "罗庄区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101718", "100211", "zh-cn", "371312", "河东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101719", "100211", "zh-cn", "371321", "沂南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101720", "100211", "zh-cn", "371322", "郯城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101721", "100211", "zh-cn", "371323", "沂水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101722", "100211", "zh-cn", "371324", "兰陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101723", "100211", "zh-cn", "371325", "费县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101724", "100211", "zh-cn", "371326", "平邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101725", "100211", "zh-cn", "371327", "莒南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101726", "100211", "zh-cn", "371328", "蒙阴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101727", "100211", "zh-cn", "371329", "临沭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101728", "100212", "zh-cn", "371402", "德城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101729", "100212", "zh-cn", "371403", "陵城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101730", "100212", "zh-cn", "371422", "宁津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101731", "100212", "zh-cn", "371423", "庆云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101732", "100212", "zh-cn", "371424", "临邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101733", "100212", "zh-cn", "371425", "齐河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101734", "100212", "zh-cn", "371426", "平原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101735", "100212", "zh-cn", "371427", "夏津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101736", "100212", "zh-cn", "371428", "武城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101737", "100212", "zh-cn", "371481", "乐陵市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101738", "100212", "zh-cn", "371482", "禹城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101739", "100213", "zh-cn", "371502", "东昌府区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101740", "100213", "zh-cn", "371521", "阳谷县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101741", "100213", "zh-cn", "371522", "莘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101742", "100213", "zh-cn", "371523", "茌平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101743", "100213", "zh-cn", "371524", "东阿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101744", "100213", "zh-cn", "371525", "冠县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101745", "100213", "zh-cn", "371526", "高唐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101746", "100213", "zh-cn", "371581", "临清市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101747", "100214", "zh-cn", "371602", "滨城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101748", "100214", "zh-cn", "371603", "沾化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101749", "100214", "zh-cn", "371621", "惠民县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101750", "100214", "zh-cn", "371622", "阳信县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101751", "100214", "zh-cn", "371623", "无棣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101752", "100214", "zh-cn", "371625", "博兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101753", "100214", "zh-cn", "371626", "邹平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101754", "100215", "zh-cn", "371702", "牡丹区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101755", "100215", "zh-cn", "371703", "定陶区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101756", "100215", "zh-cn", "371721", "曹县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101757", "100215", "zh-cn", "371722", "单县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101758", "100215", "zh-cn", "371723", "成武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101759", "100215", "zh-cn", "371724", "巨野县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101760", "100215", "zh-cn", "371725", "郓城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101761", "100215", "zh-cn", "371726", "鄄城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101762", "100215", "zh-cn", "371728", "东明县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101763", "100216", "zh-cn", "410102", "中原区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101764", "100216", "zh-cn", "410103", "二七区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101765", "100216", "zh-cn", "410104", "管城回族区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101766", "100216", "zh-cn", "410105", "金水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101767", "100216", "zh-cn", "410106", "上街区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101768", "100216", "zh-cn", "410108", "惠济区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101769", "100216", "zh-cn", "410122", "中牟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101770", "100216", "zh-cn", "410181", "巩义市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101771", "100216", "zh-cn", "410182", "荥阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101772", "100216", "zh-cn", "410183", "新密市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101773", "100216", "zh-cn", "410184", "新郑市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101774", "100216", "zh-cn", "410185", "登封市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101775", "100217", "zh-cn", "410202", "龙亭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101776", "100217", "zh-cn", "410203", "顺河回族区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101778", "100217", "zh-cn", "410205", "禹王台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101779", "100217", "zh-cn", "410212", "祥符区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101780", "100217", "zh-cn", "410221", "杞县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101781", "100217", "zh-cn", "410222", "通许县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101782", "100217", "zh-cn", "410223", "尉氏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101783", "100217", "zh-cn", "410225", "兰考县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101777", "100217", "zh-cn", "410230", "鼓楼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101784", "100218", "zh-cn", "410302", "老城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101785", "100218", "zh-cn", "410303", "西工区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101786", "100218", "zh-cn", "410304", "瀍河回族区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101787", "100218", "zh-cn", "410305", "涧西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101788", "100218", "zh-cn", "410306", "吉利区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101789", "100218", "zh-cn", "410311", "洛龙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101790", "100218", "zh-cn", "410322", "孟津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101791", "100218", "zh-cn", "410323", "新安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101792", "100218", "zh-cn", "410324", "栾川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101793", "100218", "zh-cn", "410325", "嵩县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101794", "100218", "zh-cn", "410326", "汝阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101795", "100218", "zh-cn", "410327", "宜阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101796", "100218", "zh-cn", "410328", "洛宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101797", "100218", "zh-cn", "410329", "伊川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101798", "100218", "zh-cn", "410381", "偃师市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101800", "100219", "zh-cn", "410403", "卫东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101801", "100219", "zh-cn", "410404", "石龙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101802", "100219", "zh-cn", "410411", "湛河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101803", "100219", "zh-cn", "410421", "宝丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101804", "100219", "zh-cn", "410422", "叶县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101805", "100219", "zh-cn", "410423", "鲁山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101806", "100219", "zh-cn", "410425", "郏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101807", "100219", "zh-cn", "410481", "舞钢市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101808", "100219", "zh-cn", "410482", "汝州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101799", "100219", "zh-cn", "410485", "新华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101809", "100220", "zh-cn", "410502", "文峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101810", "100220", "zh-cn", "410503", "北关区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101811", "100220", "zh-cn", "410505", "殷都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101812", "100220", "zh-cn", "410506", "龙安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101813", "100220", "zh-cn", "410522", "安阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101814", "100220", "zh-cn", "410523", "汤阴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101815", "100220", "zh-cn", "410526", "滑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101816", "100220", "zh-cn", "410527", "内黄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101817", "100220", "zh-cn", "410581", "林州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101818", "100221", "zh-cn", "410602", "鹤山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101819", "100221", "zh-cn", "410603", "山城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101820", "100221", "zh-cn", "410611", "淇滨区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101821", "100221", "zh-cn", "410621", "浚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101822", "100221", "zh-cn", "410622", "淇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101823", "100222", "zh-cn", "410702", "红旗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101824", "100222", "zh-cn", "410703", "卫滨区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101825", "100222", "zh-cn", "410704", "凤泉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101826", "100222", "zh-cn", "410711", "牧野区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101827", "100222", "zh-cn", "410721", "新乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101828", "100222", "zh-cn", "410724", "获嘉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101829", "100222", "zh-cn", "410725", "原阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101830", "100222", "zh-cn", "410726", "延津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101831", "100222", "zh-cn", "410727", "封丘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101832", "100222", "zh-cn", "410728", "长垣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101833", "100222", "zh-cn", "410781", "卫辉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101834", "100222", "zh-cn", "410782", "辉县市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101835", "100223", "zh-cn", "410802", "解放区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101836", "100223", "zh-cn", "410803", "中站区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101837", "100223", "zh-cn", "410804", "马村区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101838", "100223", "zh-cn", "410811", "山阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101839", "100223", "zh-cn", "410821", "修武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101840", "100223", "zh-cn", "410822", "博爱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101841", "100223", "zh-cn", "410823", "武陟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101842", "100223", "zh-cn", "410825", "温县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101843", "100223", "zh-cn", "410882", "沁阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101844", "100223", "zh-cn", "410883", "孟州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101845", "100224", "zh-cn", "410902", "华龙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101846", "100224", "zh-cn", "410922", "清丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101847", "100224", "zh-cn", "410923", "南乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101848", "100224", "zh-cn", "410926", "范县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101849", "100224", "zh-cn", "410927", "台前县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101850", "100224", "zh-cn", "410928", "濮阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101851", "100225", "zh-cn", "411002", "魏都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101853", "100225", "zh-cn", "411024", "鄢陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101854", "100225", "zh-cn", "411025", "襄城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101855", "100225", "zh-cn", "411081", "禹州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101856", "100225", "zh-cn", "411082", "长葛市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101852", "100225", "zh-cn", "411085", "建安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101857", "100226", "zh-cn", "411102", "源汇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101858", "100226", "zh-cn", "411103", "郾城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101859", "100226", "zh-cn", "411104", "召陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101860", "100226", "zh-cn", "411121", "舞阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101861", "100226", "zh-cn", "411122", "临颍县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101862", "100227", "zh-cn", "411202", "湖滨区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101863", "100227", "zh-cn", "411203", "陕州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101864", "100227", "zh-cn", "411221", "渑池县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101865", "100227", "zh-cn", "411224", "卢氏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101866", "100227", "zh-cn", "411281", "义马市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101867", "100227", "zh-cn", "411282", "灵宝市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101868", "100228", "zh-cn", "411302", "宛城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101869", "100228", "zh-cn", "411303", "卧龙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101870", "100228", "zh-cn", "411321", "南召县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101871", "100228", "zh-cn", "411322", "方城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101872", "100228", "zh-cn", "411323", "西峡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101873", "100228", "zh-cn", "411324", "镇平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101874", "100228", "zh-cn", "411325", "内乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101875", "100228", "zh-cn", "411326", "淅川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101876", "100228", "zh-cn", "411327", "社旗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101877", "100228", "zh-cn", "411328", "唐河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101878", "100228", "zh-cn", "411329", "新野县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101879", "100228", "zh-cn", "411330", "桐柏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101880", "100228", "zh-cn", "411381", "邓州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101881", "100229", "zh-cn", "411402", "梁园区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101882", "100229", "zh-cn", "411403", "睢阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101883", "100229", "zh-cn", "411421", "民权县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101884", "100229", "zh-cn", "411422", "睢县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101885", "100229", "zh-cn", "411423", "宁陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101886", "100229", "zh-cn", "411424", "柘城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101887", "100229", "zh-cn", "411425", "虞城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101888", "100229", "zh-cn", "411426", "夏邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101889", "100229", "zh-cn", "411481", "永城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101890", "100230", "zh-cn", "411502", "浉河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101891", "100230", "zh-cn", "411503", "平桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101892", "100230", "zh-cn", "411521", "罗山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101893", "100230", "zh-cn", "411522", "光山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101894", "100230", "zh-cn", "411523", "新县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101895", "100230", "zh-cn", "411524", "商城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101896", "100230", "zh-cn", "411525", "固始县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101897", "100230", "zh-cn", "411526", "潢川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101898", "100230", "zh-cn", "411527", "淮滨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101899", "100230", "zh-cn", "411528", "息县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101900", "100231", "zh-cn", "411602", "川汇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101901", "100231", "zh-cn", "411621", "扶沟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101902", "100231", "zh-cn", "411622", "西华县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101903", "100231", "zh-cn", "411623", "商水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101904", "100231", "zh-cn", "411624", "沈丘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101905", "100231", "zh-cn", "411625", "郸城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101906", "100231", "zh-cn", "411626", "淮阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101907", "100231", "zh-cn", "411627", "太康县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101908", "100231", "zh-cn", "411628", "鹿邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101909", "100231", "zh-cn", "411681", "项城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101910", "100232", "zh-cn", "411702", "驿城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101911", "100232", "zh-cn", "411721", "西平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101912", "100232", "zh-cn", "411722", "上蔡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101913", "100232", "zh-cn", "411723", "平舆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101914", "100232", "zh-cn", "411724", "正阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101915", "100232", "zh-cn", "411725", "确山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101916", "100232", "zh-cn", "411726", "泌阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101917", "100232", "zh-cn", "411727", "汝南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101918", "100232", "zh-cn", "411728", "遂平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101919", "100232", "zh-cn", "411729", "新蔡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103655", "103654", "zh-cn", "411801", "济源", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101920", "100233", "zh-cn", "420102", "江岸区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101921", "100233", "zh-cn", "420103", "江汉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101922", "100233", "zh-cn", "420104", "硚口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101923", "100233", "zh-cn", "420105", "汉阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101924", "100233", "zh-cn", "420106", "武昌区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101926", "100233", "zh-cn", "420111", "洪山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101927", "100233", "zh-cn", "420112", "东西湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101928", "100233", "zh-cn", "420113", "汉南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101929", "100233", "zh-cn", "420114", "蔡甸区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101930", "100233", "zh-cn", "420115", "江夏区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101931", "100233", "zh-cn", "420116", "黄陂区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101932", "100233", "zh-cn", "420117", "新洲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101925", "100233", "zh-cn", "420118", "青山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101933", "100234", "zh-cn", "420202", "黄石港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101934", "100234", "zh-cn", "420203", "西塞山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101935", "100234", "zh-cn", "420204", "下陆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101936", "100234", "zh-cn", "420205", "铁山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101937", "100234", "zh-cn", "420222", "阳新县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101938", "100234", "zh-cn", "420281", "大冶市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101939", "100235", "zh-cn", "420302", "茅箭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101940", "100235", "zh-cn", "420303", "张湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101941", "100235", "zh-cn", "420304", "郧阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101942", "100235", "zh-cn", "420322", "郧西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101943", "100235", "zh-cn", "420323", "竹山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101944", "100235", "zh-cn", "420324", "竹溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101945", "100235", "zh-cn", "420325", "房县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101946", "100235", "zh-cn", "420381", "丹江口市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101947", "100236", "zh-cn", "420502", "西陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101948", "100236", "zh-cn", "420503", "伍家岗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101949", "100236", "zh-cn", "420504", "点军区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101950", "100236", "zh-cn", "420505", "猇亭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101951", "100236", "zh-cn", "420506", "夷陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101952", "100236", "zh-cn", "420525", "远安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101953", "100236", "zh-cn", "420526", "兴山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101954", "100236", "zh-cn", "420527", "秭归县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101955", "100236", "zh-cn", "420528", "长阳土家族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101956", "100236", "zh-cn", "420529", "五峰土家族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101957", "100236", "zh-cn", "420581", "宜都市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101958", "100236", "zh-cn", "420582", "当阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101959", "100236", "zh-cn", "420583", "枝江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101960", "100237", "zh-cn", "420602", "襄城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101961", "100237", "zh-cn", "420606", "樊城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101962", "100237", "zh-cn", "420607", "襄州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101963", "100237", "zh-cn", "420624", "南漳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101964", "100237", "zh-cn", "420625", "谷城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101965", "100237", "zh-cn", "420626", "保康县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101966", "100237", "zh-cn", "420682", "老河口市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101967", "100237", "zh-cn", "420683", "枣阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101968", "100237", "zh-cn", "420684", "宜城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101969", "100238", "zh-cn", "420702", "梁子湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101970", "100238", "zh-cn", "420703", "华容区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101971", "100238", "zh-cn", "420704", "鄂城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101972", "100239", "zh-cn", "420802", "东宝区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101973", "100239", "zh-cn", "420804", "掇刀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101974", "100239", "zh-cn", "420821", "京山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101975", "100239", "zh-cn", "420822", "沙洋县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101976", "100239", "zh-cn", "420881", "钟祥市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101977", "100240", "zh-cn", "420902", "孝南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101978", "100240", "zh-cn", "420921", "孝昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101979", "100240", "zh-cn", "420922", "大悟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101980", "100240", "zh-cn", "420923", "云梦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101981", "100240", "zh-cn", "420981", "应城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101982", "100240", "zh-cn", "420982", "安陆市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101983", "100240", "zh-cn", "420984", "汉川市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101984", "100241", "zh-cn", "421002", "沙市区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101985", "100241", "zh-cn", "421003", "荆州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101986", "100241", "zh-cn", "421022", "公安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101987", "100241", "zh-cn", "421023", "监利县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101988", "100241", "zh-cn", "421024", "江陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101989", "100241", "zh-cn", "421081", "石首市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101990", "100241", "zh-cn", "421083", "洪湖市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101991", "100241", "zh-cn", "421087", "松滋市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101992", "100242", "zh-cn", "421102", "黄州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101993", "100242", "zh-cn", "421121", "团风县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101994", "100242", "zh-cn", "421122", "红安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101995", "100242", "zh-cn", "421123", "罗田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101996", "100242", "zh-cn", "421124", "英山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101997", "100242", "zh-cn", "421125", "浠水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101998", "100242", "zh-cn", "421126", "蕲春县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("101999", "100242", "zh-cn", "421127", "黄梅县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102000", "100242", "zh-cn", "421181", "麻城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102001", "100242", "zh-cn", "421182", "武穴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102002", "100243", "zh-cn", "421202", "咸安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102003", "100243", "zh-cn", "421221", "嘉鱼县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102004", "100243", "zh-cn", "421222", "通城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102005", "100243", "zh-cn", "421223", "崇阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102006", "100243", "zh-cn", "421224", "通山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102007", "100243", "zh-cn", "421281", "赤壁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102008", "100244", "zh-cn", "421303", "曾都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102009", "100244", "zh-cn", "421321", "随县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102010", "100244", "zh-cn", "421381", "广水市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103648", "103647", "zh-cn", "421401", "仙桃市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103651", "103650", "zh-cn", "421601", "天门市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103653", "103652", "zh-cn", "421701", "神农架林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102011", "100245", "zh-cn", "422801", "恩施市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102012", "100245", "zh-cn", "422802", "利川市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102013", "100245", "zh-cn", "422822", "建始县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102014", "100245", "zh-cn", "422823", "巴东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102015", "100245", "zh-cn", "422825", "宣恩县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102016", "100245", "zh-cn", "422826", "咸丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102017", "100245", "zh-cn", "422827", "来凤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102018", "100245", "zh-cn", "422828", "鹤峰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102019", "100246", "zh-cn", "430102", "芙蓉区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102020", "100246", "zh-cn", "430103", "天心区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102021", "100246", "zh-cn", "430104", "岳麓区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102022", "100246", "zh-cn", "430105", "开福区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102023", "100246", "zh-cn", "430111", "雨花区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102024", "100246", "zh-cn", "430112", "望城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102025", "100246", "zh-cn", "430121", "长沙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102026", "100246", "zh-cn", "430181", "浏阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102027", "100246", "zh-cn", "430182", "宁乡市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102028", "100247", "zh-cn", "430202", "荷塘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102029", "100247", "zh-cn", "430203", "芦淞区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102030", "100247", "zh-cn", "430204", "石峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102031", "100247", "zh-cn", "430211", "天元区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102032", "100247", "zh-cn", "430221", "株洲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102033", "100247", "zh-cn", "430223", "攸县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102034", "100247", "zh-cn", "430224", "茶陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102035", "100247", "zh-cn", "430225", "炎陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102036", "100247", "zh-cn", "430281", "醴陵市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102037", "100248", "zh-cn", "430302", "雨湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102038", "100248", "zh-cn", "430304", "岳塘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102039", "100248", "zh-cn", "430321", "湘潭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102040", "100248", "zh-cn", "430381", "湘乡市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102041", "100248", "zh-cn", "430382", "韶山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102042", "100249", "zh-cn", "430405", "珠晖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102043", "100249", "zh-cn", "430406", "雁峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102044", "100249", "zh-cn", "430407", "石鼓区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102045", "100249", "zh-cn", "430408", "蒸湘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102046", "100249", "zh-cn", "430412", "南岳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102047", "100249", "zh-cn", "430421", "衡阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102048", "100249", "zh-cn", "430422", "衡南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102049", "100249", "zh-cn", "430423", "衡山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102050", "100249", "zh-cn", "430424", "衡东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102051", "100249", "zh-cn", "430426", "祁东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102052", "100249", "zh-cn", "430481", "耒阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102053", "100249", "zh-cn", "430482", "常宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102054", "100250", "zh-cn", "430502", "双清区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102055", "100250", "zh-cn", "430503", "大祥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102056", "100250", "zh-cn", "430511", "北塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102057", "100250", "zh-cn", "430521", "邵东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102058", "100250", "zh-cn", "430522", "新邵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102059", "100250", "zh-cn", "430523", "邵阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102060", "100250", "zh-cn", "430524", "隆回县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102061", "100250", "zh-cn", "430525", "洞口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102062", "100250", "zh-cn", "430527", "绥宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102063", "100250", "zh-cn", "430528", "新宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102064", "100250", "zh-cn", "430529", "城步苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102065", "100250", "zh-cn", "430581", "武冈市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102066", "100251", "zh-cn", "430602", "岳阳楼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102067", "100251", "zh-cn", "430603", "云溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102068", "100251", "zh-cn", "430611", "君山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102069", "100251", "zh-cn", "430621", "岳阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102070", "100251", "zh-cn", "430623", "华容县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102071", "100251", "zh-cn", "430624", "湘阴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102072", "100251", "zh-cn", "430626", "平江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102073", "100251", "zh-cn", "430681", "汨罗市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102074", "100251", "zh-cn", "430682", "临湘市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102075", "100252", "zh-cn", "430702", "武陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102076", "100252", "zh-cn", "430703", "鼎城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102077", "100252", "zh-cn", "430721", "安乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102078", "100252", "zh-cn", "430722", "汉寿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102079", "100252", "zh-cn", "430723", "澧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102080", "100252", "zh-cn", "430724", "临澧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102081", "100252", "zh-cn", "430725", "桃源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102082", "100252", "zh-cn", "430726", "石门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102083", "100252", "zh-cn", "430781", "津市市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102085", "100253", "zh-cn", "430811", "武陵源区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102086", "100253", "zh-cn", "430821", "慈利县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102087", "100253", "zh-cn", "430822", "桑植县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102084", "100253", "zh-cn", "430825", "永定区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102088", "100254", "zh-cn", "430902", "资阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102089", "100254", "zh-cn", "430903", "赫山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102090", "100254", "zh-cn", "430921", "南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102091", "100254", "zh-cn", "430922", "桃江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102092", "100254", "zh-cn", "430923", "安化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102093", "100254", "zh-cn", "430981", "沅江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102094", "100255", "zh-cn", "431002", "北湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102095", "100255", "zh-cn", "431003", "苏仙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102096", "100255", "zh-cn", "431021", "桂阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102097", "100255", "zh-cn", "431022", "宜章县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102098", "100255", "zh-cn", "431023", "永兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102099", "100255", "zh-cn", "431024", "嘉禾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102100", "100255", "zh-cn", "431025", "临武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102101", "100255", "zh-cn", "431026", "汝城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102102", "100255", "zh-cn", "431027", "桂东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102103", "100255", "zh-cn", "431028", "安仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102104", "100255", "zh-cn", "431081", "资兴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102105", "100256", "zh-cn", "431102", "零陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102106", "100256", "zh-cn", "431103", "冷水滩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102107", "100256", "zh-cn", "431121", "祁阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102108", "100256", "zh-cn", "431122", "东安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102109", "100256", "zh-cn", "431123", "双牌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102110", "100256", "zh-cn", "431124", "道县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102111", "100256", "zh-cn", "431125", "江永县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102112", "100256", "zh-cn", "431126", "宁远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102113", "100256", "zh-cn", "431127", "蓝山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102114", "100256", "zh-cn", "431128", "新田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102115", "100256", "zh-cn", "431129", "江华瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102116", "100257", "zh-cn", "431202", "鹤城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102117", "100257", "zh-cn", "431221", "中方县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102118", "100257", "zh-cn", "431222", "沅陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102119", "100257", "zh-cn", "431223", "辰溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102120", "100257", "zh-cn", "431224", "溆浦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102121", "100257", "zh-cn", "431225", "会同县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102122", "100257", "zh-cn", "431226", "麻阳苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102123", "100257", "zh-cn", "431227", "新晃侗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102124", "100257", "zh-cn", "431228", "芷江侗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102125", "100257", "zh-cn", "431229", "靖州苗族侗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102126", "100257", "zh-cn", "431230", "通道侗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102127", "100257", "zh-cn", "431281", "洪江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103646", "100257", "zh-cn", "431282", "洪江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102128", "100258", "zh-cn", "431302", "娄星区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102129", "100258", "zh-cn", "431321", "双峰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102130", "100258", "zh-cn", "431322", "新化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102131", "100258", "zh-cn", "431381", "冷水江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102132", "100258", "zh-cn", "431382", "涟源市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102133", "100259", "zh-cn", "433101", "吉首市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102134", "100259", "zh-cn", "433122", "泸溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102135", "100259", "zh-cn", "433123", "凤凰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102136", "100259", "zh-cn", "433124", "花垣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102137", "100259", "zh-cn", "433125", "保靖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102138", "100259", "zh-cn", "433126", "古丈县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102139", "100259", "zh-cn", "433127", "永顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102140", "100259", "zh-cn", "433130", "龙山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102141", "100260", "zh-cn", "440103", "荔湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102142", "100260", "zh-cn", "440104", "越秀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102143", "100260", "zh-cn", "440105", "海珠区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102144", "100260", "zh-cn", "440106", "天河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102146", "100260", "zh-cn", "440112", "黄埔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102147", "100260", "zh-cn", "440113", "番禺区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102148", "100260", "zh-cn", "440114", "花都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102149", "100260", "zh-cn", "440115", "南沙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102150", "100260", "zh-cn", "440117", "从化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102151", "100260", "zh-cn", "440118", "增城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102145", "100260", "zh-cn", "440120", "白云区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102152", "100261", "zh-cn", "440203", "武江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102153", "100261", "zh-cn", "440204", "浈江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102154", "100261", "zh-cn", "440205", "曲江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102155", "100261", "zh-cn", "440222", "始兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102156", "100261", "zh-cn", "440224", "仁化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102157", "100261", "zh-cn", "440229", "翁源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102158", "100261", "zh-cn", "440232", "乳源瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102159", "100261", "zh-cn", "440233", "新丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102160", "100261", "zh-cn", "440281", "乐昌市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102161", "100261", "zh-cn", "440282", "南雄市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102162", "100262", "zh-cn", "440303", "罗湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102163", "100262", "zh-cn", "440304", "福田区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102165", "100262", "zh-cn", "440306", "宝安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102166", "100262", "zh-cn", "440307", "龙岗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102167", "100262", "zh-cn", "440308", "盐田区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102164", "100262", "zh-cn", "440309", "南山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102168", "100262", "zh-cn", "440310", "龙华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102169", "100262", "zh-cn", "440311", "坪山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102170", "100263", "zh-cn", "440402", "香洲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102171", "100263", "zh-cn", "440403", "斗门区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102172", "100263", "zh-cn", "440404", "金湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102173", "100263", "zh-cn", "440405", "香洲区(由澳门特别行政区实施管辖)", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102174", "100264", "zh-cn", "440507", "龙湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102175", "100264", "zh-cn", "440511", "金平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102176", "100264", "zh-cn", "440512", "濠江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102177", "100264", "zh-cn", "440513", "潮阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102178", "100264", "zh-cn", "440514", "潮南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102179", "100264", "zh-cn", "440515", "澄海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102180", "100264", "zh-cn", "440523", "南澳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102181", "100265", "zh-cn", "440604", "禅城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102182", "100265", "zh-cn", "440605", "南海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102183", "100265", "zh-cn", "440606", "顺德区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102184", "100265", "zh-cn", "440607", "三水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102185", "100265", "zh-cn", "440608", "高明区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102186", "100266", "zh-cn", "440703", "蓬江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102187", "100266", "zh-cn", "440704", "江海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102188", "100266", "zh-cn", "440705", "新会区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102189", "100266", "zh-cn", "440781", "台山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102190", "100266", "zh-cn", "440783", "开平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102191", "100266", "zh-cn", "440784", "鹤山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102192", "100266", "zh-cn", "440785", "恩平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102193", "100267", "zh-cn", "440802", "赤坎区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102194", "100267", "zh-cn", "440803", "霞山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102195", "100267", "zh-cn", "440804", "坡头区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102196", "100267", "zh-cn", "440811", "麻章区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102197", "100267", "zh-cn", "440823", "遂溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102198", "100267", "zh-cn", "440825", "徐闻县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102199", "100267", "zh-cn", "440881", "廉江市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102200", "100267", "zh-cn", "440882", "雷州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102201", "100267", "zh-cn", "440883", "吴川市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102202", "100268", "zh-cn", "440902", "茂南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102203", "100268", "zh-cn", "440904", "电白区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102204", "100268", "zh-cn", "440981", "高州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102205", "100268", "zh-cn", "440982", "化州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102206", "100268", "zh-cn", "440983", "信宜市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102207", "100269", "zh-cn", "441202", "端州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102208", "100269", "zh-cn", "441203", "鼎湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102209", "100269", "zh-cn", "441204", "高要区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102210", "100269", "zh-cn", "441223", "广宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102211", "100269", "zh-cn", "441224", "怀集县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102212", "100269", "zh-cn", "441225", "封开县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102213", "100269", "zh-cn", "441226", "德庆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102214", "100269", "zh-cn", "441284", "四会市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102215", "100270", "zh-cn", "441302", "惠城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102216", "100270", "zh-cn", "441303", "惠阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102217", "100270", "zh-cn", "441322", "博罗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102218", "100270", "zh-cn", "441323", "惠东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102219", "100270", "zh-cn", "441324", "龙门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102220", "100271", "zh-cn", "441402", "梅江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102221", "100271", "zh-cn", "441403", "梅县区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102222", "100271", "zh-cn", "441422", "大埔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102223", "100271", "zh-cn", "441423", "丰顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102224", "100271", "zh-cn", "441424", "五华县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102225", "100271", "zh-cn", "441426", "平远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102226", "100271", "zh-cn", "441427", "蕉岭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102227", "100271", "zh-cn", "441481", "兴宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102229", "100272", "zh-cn", "441521", "海丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102230", "100272", "zh-cn", "441523", "陆河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102228", "100272", "zh-cn", "441525", "城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102231", "100272", "zh-cn", "441581", "陆丰市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102232", "100273", "zh-cn", "441602", "源城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102233", "100273", "zh-cn", "441621", "紫金县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102234", "100273", "zh-cn", "441622", "龙川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102235", "100273", "zh-cn", "441623", "连平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102236", "100273", "zh-cn", "441624", "和平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102237", "100273", "zh-cn", "441625", "东源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102238", "100274", "zh-cn", "441702", "江城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102239", "100274", "zh-cn", "441704", "阳东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102240", "100274", "zh-cn", "441721", "阳西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102241", "100274", "zh-cn", "441781", "阳春市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102242", "100275", "zh-cn", "441802", "清城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102243", "100275", "zh-cn", "441803", "清新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102244", "100275", "zh-cn", "441821", "佛冈县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102245", "100275", "zh-cn", "441823", "阳山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102246", "100275", "zh-cn", "441825", "连山壮族瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102247", "100275", "zh-cn", "441826", "连南瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102248", "100275", "zh-cn", "441881", "英德市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102249", "100275", "zh-cn", "441882", "连州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102250", "100276", "zh-cn", "441901", "东莞市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102251", "100277", "zh-cn", "442001", "中山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102252", "100278", "zh-cn", "445102", "湘桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102253", "100278", "zh-cn", "445103", "潮安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102254", "100278", "zh-cn", "445122", "饶平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102255", "100279", "zh-cn", "445202", "榕城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102256", "100279", "zh-cn", "445203", "揭东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102257", "100279", "zh-cn", "445222", "揭西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102258", "100279", "zh-cn", "445224", "惠来县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102259", "100279", "zh-cn", "445281", "普宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102260", "100280", "zh-cn", "445302", "云城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102261", "100280", "zh-cn", "445303", "云安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102262", "100280", "zh-cn", "445321", "新兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102263", "100280", "zh-cn", "445322", "郁南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102264", "100280", "zh-cn", "445381", "罗定市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102265", "100281", "zh-cn", "450102", "兴宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102266", "100281", "zh-cn", "450103", "青秀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102267", "100281", "zh-cn", "450105", "江南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102268", "100281", "zh-cn", "450107", "西乡塘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102269", "100281", "zh-cn", "450108", "良庆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102270", "100281", "zh-cn", "450109", "邕宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102271", "100281", "zh-cn", "450110", "武鸣区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102272", "100281", "zh-cn", "450123", "隆安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102273", "100281", "zh-cn", "450124", "马山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102274", "100281", "zh-cn", "450125", "上林县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102275", "100281", "zh-cn", "450126", "宾阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102276", "100281", "zh-cn", "450127", "横县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102278", "100282", "zh-cn", "450203", "鱼峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102279", "100282", "zh-cn", "450204", "柳南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102280", "100282", "zh-cn", "450205", "柳北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102281", "100282", "zh-cn", "450206", "柳江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102282", "100282", "zh-cn", "450222", "柳城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102283", "100282", "zh-cn", "450223", "鹿寨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102284", "100282", "zh-cn", "450224", "融安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102285", "100282", "zh-cn", "450225", "融水苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102286", "100282", "zh-cn", "450226", "三江侗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102277", "100282", "zh-cn", "450227", "城中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102287", "100283", "zh-cn", "450302", "秀峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102288", "100283", "zh-cn", "450303", "叠彩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102289", "100283", "zh-cn", "450304", "象山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102290", "100283", "zh-cn", "450305", "七星区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102291", "100283", "zh-cn", "450311", "雁山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102292", "100283", "zh-cn", "450312", "临桂区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102293", "100283", "zh-cn", "450321", "阳朔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102294", "100283", "zh-cn", "450323", "灵川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102295", "100283", "zh-cn", "450324", "全州县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102296", "100283", "zh-cn", "450325", "兴安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102297", "100283", "zh-cn", "450326", "永福县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102298", "100283", "zh-cn", "450327", "灌阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102299", "100283", "zh-cn", "450328", "龙胜各族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102300", "100283", "zh-cn", "450329", "资源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102301", "100283", "zh-cn", "450330", "平乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102302", "100283", "zh-cn", "450331", "荔浦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102303", "100283", "zh-cn", "450332", "恭城瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102304", "100284", "zh-cn", "450403", "万秀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102305", "100284", "zh-cn", "450405", "长洲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102306", "100284", "zh-cn", "450406", "龙圩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102307", "100284", "zh-cn", "450421", "苍梧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102308", "100284", "zh-cn", "450422", "藤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102309", "100284", "zh-cn", "450423", "蒙山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102310", "100284", "zh-cn", "450481", "岑溪市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102311", "100285", "zh-cn", "450502", "海城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102312", "100285", "zh-cn", "450503", "银海区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102313", "100285", "zh-cn", "450512", "铁山港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102314", "100285", "zh-cn", "450521", "合浦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102315", "100286", "zh-cn", "450602", "港口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102316", "100286", "zh-cn", "450603", "防城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102317", "100286", "zh-cn", "450621", "上思县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102318", "100286", "zh-cn", "450681", "东兴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102319", "100287", "zh-cn", "450702", "钦南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102320", "100287", "zh-cn", "450703", "钦北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102321", "100287", "zh-cn", "450721", "灵山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102322", "100287", "zh-cn", "450722", "浦北县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102323", "100288", "zh-cn", "450802", "港北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102324", "100288", "zh-cn", "450803", "港南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102325", "100288", "zh-cn", "450804", "覃塘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102326", "100288", "zh-cn", "450821", "平南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102327", "100288", "zh-cn", "450881", "桂平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102328", "100289", "zh-cn", "450902", "玉州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102329", "100289", "zh-cn", "450903", "福绵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102330", "100289", "zh-cn", "450921", "容县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102331", "100289", "zh-cn", "450922", "陆川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102332", "100289", "zh-cn", "450923", "博白县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102333", "100289", "zh-cn", "450924", "兴业县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102334", "100289", "zh-cn", "450981", "北流市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102335", "100290", "zh-cn", "451002", "右江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102336", "100290", "zh-cn", "451021", "田阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102337", "100290", "zh-cn", "451022", "田东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102338", "100290", "zh-cn", "451023", "平果县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102339", "100290", "zh-cn", "451024", "德保县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102340", "100290", "zh-cn", "451026", "那坡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102341", "100290", "zh-cn", "451027", "凌云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102342", "100290", "zh-cn", "451028", "乐业县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102343", "100290", "zh-cn", "451029", "田林县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102344", "100290", "zh-cn", "451030", "西林县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102345", "100290", "zh-cn", "451031", "隆林各族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102346", "100290", "zh-cn", "451081", "靖西市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102347", "100291", "zh-cn", "451102", "八步区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102348", "100291", "zh-cn", "451103", "平桂区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102349", "100291", "zh-cn", "451121", "昭平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102350", "100291", "zh-cn", "451122", "钟山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102351", "100291", "zh-cn", "451123", "富川瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102352", "100292", "zh-cn", "451202", "金城江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102354", "100292", "zh-cn", "451221", "南丹县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102355", "100292", "zh-cn", "451222", "天峨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102356", "100292", "zh-cn", "451223", "凤山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102357", "100292", "zh-cn", "451224", "东兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102358", "100292", "zh-cn", "451225", "罗城仫佬族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102359", "100292", "zh-cn", "451226", "环江毛南族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102360", "100292", "zh-cn", "451227", "巴马瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102361", "100292", "zh-cn", "451228", "都安瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102362", "100292", "zh-cn", "451229", "大化瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102353", "100292", "zh-cn", "451230", "宜州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102363", "100293", "zh-cn", "451302", "兴宾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102364", "100293", "zh-cn", "451321", "忻城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102365", "100293", "zh-cn", "451322", "象州县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102366", "100293", "zh-cn", "451323", "武宣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102367", "100293", "zh-cn", "451324", "金秀瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102368", "100293", "zh-cn", "451381", "合山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102369", "100294", "zh-cn", "451402", "江州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102370", "100294", "zh-cn", "451421", "扶绥县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102371", "100294", "zh-cn", "451422", "宁明县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102372", "100294", "zh-cn", "451423", "龙州县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102373", "100294", "zh-cn", "451424", "大新县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102374", "100294", "zh-cn", "451425", "天等县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102375", "100294", "zh-cn", "451481", "凭祥市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102376", "100295", "zh-cn", "460105", "秀英区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102378", "100295", "zh-cn", "460107", "琼山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102379", "100295", "zh-cn", "460108", "美兰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102377", "100295", "zh-cn", "460109", "龙华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102380", "100296", "zh-cn", "460202", "海棠区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102381", "100296", "zh-cn", "460203", "吉阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102382", "100296", "zh-cn", "460204", "天涯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102383", "100296", "zh-cn", "460205", "崖州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100298", "100297", "zh-cn", "460301", "三沙", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102387", "100299", "zh-cn", "460401", "儋州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103661", "103660", "zh-cn", "460501", "东方市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100001", "100000", "zh-cn", "461001", "五指山", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100004", "100003", "zh-cn", "461101", "琼海", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100006", "100005", "zh-cn", "461201", "东方", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100008", "100007", "zh-cn", "461301", "文昌", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100010", "100009", "zh-cn", "461401", "万宁", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100012", "100011", "zh-cn", "461501", "定安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100014", "100013", "zh-cn", "461601", "屯昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100016", "100015", "zh-cn", "461701", "澄迈县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100018", "100017", "zh-cn", "461801", "临高县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100020", "100019", "zh-cn", "461901", "白沙黎族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100023", "100022", "zh-cn", "462001", "昌江黎族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100025", "100024", "zh-cn", "462101", "乐东黎族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100027", "100026", "zh-cn", "462201", "陵水黎族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100030", "100029", "zh-cn", "462301", "保亭黎族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100032", "100031", "zh-cn", "462401", "琼中黎族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102388", "100300", "zh-cn", "500101", "万州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102389", "100300", "zh-cn", "500102", "涪陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102390", "100300", "zh-cn", "500103", "渝中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102391", "100300", "zh-cn", "500104", "大渡口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102394", "100300", "zh-cn", "500106", "沙坪坝区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102395", "100300", "zh-cn", "500107", "九龙坡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102396", "100300", "zh-cn", "500108", "南岸区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102397", "100300", "zh-cn", "500109", "北碚区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102398", "100300", "zh-cn", "500110", "綦江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102399", "100300", "zh-cn", "500111", "大足区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102400", "100300", "zh-cn", "500112", "渝北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102401", "100300", "zh-cn", "500113", "巴南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102402", "100300", "zh-cn", "500114", "黔江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102403", "100300", "zh-cn", "500115", "长寿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102404", "100300", "zh-cn", "500116", "江津区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102405", "100300", "zh-cn", "500117", "合川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102406", "100300", "zh-cn", "500118", "永川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102407", "100300", "zh-cn", "500119", "南川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102408", "100300", "zh-cn", "500120", "璧山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100028", "100300", "zh-cn", "500121", "万盛经济技术开发区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102409", "100300", "zh-cn", "500151", "铜梁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102410", "100300", "zh-cn", "500152", "潼南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102411", "100300", "zh-cn", "500153", "荣昌区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102412", "100300", "zh-cn", "500154", "开州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102413", "100300", "zh-cn", "500155", "梁平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102392", "100300", "zh-cn", "500156", "江北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102415", "100300", "zh-cn", "500158", "武隆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102416", "100300", "zh-cn", "500229", "城口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102417", "100300", "zh-cn", "500230", "丰都县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102418", "100300", "zh-cn", "500231", "垫江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102419", "100300", "zh-cn", "500233", "忠县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102420", "100300", "zh-cn", "500235", "云阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102421", "100300", "zh-cn", "500236", "奉节县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102422", "100300", "zh-cn", "500237", "巫山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102423", "100300", "zh-cn", "500238", "巫溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102424", "100300", "zh-cn", "500240", "石柱土家族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102425", "100300", "zh-cn", "500241", "秀山土家族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102426", "100300", "zh-cn", "500242", "酉阳土家族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102427", "100300", "zh-cn", "500243", "彭水苗族土家族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102393", "100054", "zh-cn", "500250", "江北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102414", "100054", "zh-cn", "500251", "武隆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102428", "100301", "zh-cn", "510104", "锦江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102429", "100301", "zh-cn", "510105", "青羊区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102430", "100301", "zh-cn", "510106", "金牛区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102431", "100301", "zh-cn", "510107", "武侯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102432", "100301", "zh-cn", "510108", "成华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102433", "100301", "zh-cn", "510112", "龙泉驿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102434", "100301", "zh-cn", "510113", "青白江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102435", "100301", "zh-cn", "510114", "新都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102436", "100301", "zh-cn", "510115", "温江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102437", "100301", "zh-cn", "510116", "双流区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102439", "100301", "zh-cn", "510121", "金堂县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102440", "100301", "zh-cn", "510129", "大邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102441", "100301", "zh-cn", "510131", "蒲江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102442", "100301", "zh-cn", "510132", "新津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102443", "100301", "zh-cn", "510181", "都江堰市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102444", "100301", "zh-cn", "510182", "彭州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102445", "100301", "zh-cn", "510183", "邛崃市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102446", "100301", "zh-cn", "510184", "崇州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102447", "100301", "zh-cn", "510185", "简阳市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102438", "100301", "zh-cn", "510186", "郫都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102448", "100302", "zh-cn", "510302", "自流井区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102449", "100302", "zh-cn", "510303", "贡井区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102451", "100302", "zh-cn", "510311", "沿滩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102452", "100302", "zh-cn", "510321", "荣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102453", "100302", "zh-cn", "510322", "富顺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102450", "100302", "zh-cn", "510325", "大安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102456", "100303", "zh-cn", "510411", "仁和区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102457", "100303", "zh-cn", "510421", "米易县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102458", "100303", "zh-cn", "510422", "盐边县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102455", "100303", "zh-cn", "510423", "东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102454", "100303", "zh-cn", "510424", "西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102459", "100304", "zh-cn", "510502", "江阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102460", "100304", "zh-cn", "510503", "纳溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102461", "100304", "zh-cn", "510504", "龙马潭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102462", "100304", "zh-cn", "510521", "泸县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102463", "100304", "zh-cn", "510522", "合江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102464", "100304", "zh-cn", "510524", "叙永县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102465", "100304", "zh-cn", "510525", "古蔺县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102466", "100305", "zh-cn", "510603", "旌阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102467", "100305", "zh-cn", "510623", "中江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102468", "100305", "zh-cn", "510626", "罗江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102469", "100305", "zh-cn", "510681", "广汉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102470", "100305", "zh-cn", "510682", "什邡市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102471", "100305", "zh-cn", "510683", "绵竹市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102472", "100306", "zh-cn", "510703", "涪城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102473", "100306", "zh-cn", "510704", "游仙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102474", "100306", "zh-cn", "510705", "安州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102475", "100306", "zh-cn", "510722", "三台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102476", "100306", "zh-cn", "510723", "盐亭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102477", "100306", "zh-cn", "510725", "梓潼县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102478", "100306", "zh-cn", "510726", "北川羌族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102479", "100306", "zh-cn", "510727", "平武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102480", "100306", "zh-cn", "510781", "江油市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102481", "100307", "zh-cn", "510802", "利州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102482", "100307", "zh-cn", "510811", "昭化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102483", "100307", "zh-cn", "510812", "朝天区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102484", "100307", "zh-cn", "510821", "旺苍县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102485", "100307", "zh-cn", "510822", "青川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102486", "100307", "zh-cn", "510823", "剑阁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102487", "100307", "zh-cn", "510824", "苍溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102488", "100308", "zh-cn", "510903", "船山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102489", "100308", "zh-cn", "510904", "安居区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102490", "100308", "zh-cn", "510921", "蓬溪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102491", "100308", "zh-cn", "510922", "射洪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102492", "100308", "zh-cn", "510923", "大英县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102493", "100309", "zh-cn", "511002", "市中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102494", "100309", "zh-cn", "511011", "东兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102495", "100309", "zh-cn", "511024", "威远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102496", "100309", "zh-cn", "511025", "资中县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102497", "100309", "zh-cn", "511028", "隆昌市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102498", "100310", "zh-cn", "511102", "市中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102499", "100310", "zh-cn", "511111", "沙湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102500", "100310", "zh-cn", "511112", "五通桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102501", "100310", "zh-cn", "511113", "金口河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102502", "100310", "zh-cn", "511123", "犍为县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102503", "100310", "zh-cn", "511124", "井研县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102504", "100310", "zh-cn", "511126", "夹江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102505", "100310", "zh-cn", "511129", "沐川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102506", "100310", "zh-cn", "511132", "峨边彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102507", "100310", "zh-cn", "511133", "马边彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102508", "100310", "zh-cn", "511181", "峨眉山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102509", "100311", "zh-cn", "511302", "顺庆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102510", "100311", "zh-cn", "511303", "高坪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102511", "100311", "zh-cn", "511304", "嘉陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102512", "100311", "zh-cn", "511321", "南部县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102513", "100311", "zh-cn", "511322", "营山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102514", "100311", "zh-cn", "511323", "蓬安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102515", "100311", "zh-cn", "511324", "仪陇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102516", "100311", "zh-cn", "511325", "西充县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102517", "100311", "zh-cn", "511381", "阆中市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102518", "100312", "zh-cn", "511402", "东坡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102519", "100312", "zh-cn", "511403", "彭山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102520", "100312", "zh-cn", "511421", "仁寿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102521", "100312", "zh-cn", "511423", "洪雅县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102522", "100312", "zh-cn", "511424", "丹棱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102523", "100312", "zh-cn", "511425", "青神县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102524", "100313", "zh-cn", "511502", "翠屏区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102525", "100313", "zh-cn", "511503", "南溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102526", "100313", "zh-cn", "511521", "宜宾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102527", "100313", "zh-cn", "511523", "江安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102528", "100313", "zh-cn", "511524", "长宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102529", "100313", "zh-cn", "511525", "高县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102530", "100313", "zh-cn", "511526", "珙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102531", "100313", "zh-cn", "511527", "筠连县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102532", "100313", "zh-cn", "511528", "兴文县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102533", "100313", "zh-cn", "511529", "屏山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102534", "100314", "zh-cn", "511602", "广安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102535", "100314", "zh-cn", "511603", "前锋区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102536", "100314", "zh-cn", "511621", "岳池县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102537", "100314", "zh-cn", "511622", "武胜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102538", "100314", "zh-cn", "511623", "邻水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102539", "100314", "zh-cn", "511681", "华蓥市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102540", "100315", "zh-cn", "511702", "通川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102541", "100315", "zh-cn", "511703", "达川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102542", "100315", "zh-cn", "511722", "宣汉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102543", "100315", "zh-cn", "511723", "开江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102544", "100315", "zh-cn", "511724", "大竹县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102545", "100315", "zh-cn", "511725", "渠县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102546", "100315", "zh-cn", "511781", "万源市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102547", "100316", "zh-cn", "511802", "雨城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102548", "100316", "zh-cn", "511803", "名山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102549", "100316", "zh-cn", "511822", "荥经县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102550", "100316", "zh-cn", "511823", "汉源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102551", "100316", "zh-cn", "511824", "石棉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102552", "100316", "zh-cn", "511825", "天全县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102553", "100316", "zh-cn", "511826", "芦山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102554", "100316", "zh-cn", "511827", "宝兴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102555", "100317", "zh-cn", "511902", "巴州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102556", "100317", "zh-cn", "511903", "恩阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102557", "100317", "zh-cn", "511921", "通江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102558", "100317", "zh-cn", "511922", "南江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102559", "100317", "zh-cn", "511923", "平昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102560", "100318", "zh-cn", "512002", "雁江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102561", "100318", "zh-cn", "512021", "安岳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102562", "100318", "zh-cn", "512022", "乐至县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102563", "100319", "zh-cn", "513201", "马尔康市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102564", "100319", "zh-cn", "513221", "汶川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102565", "100319", "zh-cn", "513222", "理县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102566", "100319", "zh-cn", "513223", "茂县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102567", "100319", "zh-cn", "513224", "松潘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102568", "100319", "zh-cn", "513225", "九寨沟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102569", "100319", "zh-cn", "513226", "金川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102570", "100319", "zh-cn", "513227", "小金县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102571", "100319", "zh-cn", "513228", "黑水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102572", "100319", "zh-cn", "513230", "壤塘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102573", "100319", "zh-cn", "513231", "阿坝县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102574", "100319", "zh-cn", "513232", "若尔盖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102575", "100319", "zh-cn", "513233", "红原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102576", "100320", "zh-cn", "513301", "康定市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102577", "100320", "zh-cn", "513322", "泸定县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102578", "100320", "zh-cn", "513323", "丹巴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102579", "100320", "zh-cn", "513324", "九龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102580", "100320", "zh-cn", "513325", "雅江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102581", "100320", "zh-cn", "513326", "道孚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102582", "100320", "zh-cn", "513327", "炉霍县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102583", "100320", "zh-cn", "513328", "甘孜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102584", "100320", "zh-cn", "513329", "新龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102585", "100320", "zh-cn", "513330", "德格县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102586", "100320", "zh-cn", "513331", "白玉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102587", "100320", "zh-cn", "513332", "石渠县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102588", "100320", "zh-cn", "513333", "色达县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102589", "100320", "zh-cn", "513334", "理塘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102590", "100320", "zh-cn", "513335", "巴塘县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102591", "100320", "zh-cn", "513336", "乡城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102592", "100320", "zh-cn", "513337", "稻城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102593", "100320", "zh-cn", "513338", "得荣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102594", "100321", "zh-cn", "513401", "西昌市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102595", "100321", "zh-cn", "513422", "木里藏族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102596", "100321", "zh-cn", "513423", "盐源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102597", "100321", "zh-cn", "513424", "德昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102598", "100321", "zh-cn", "513425", "会理县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102599", "100321", "zh-cn", "513426", "会东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102600", "100321", "zh-cn", "513427", "宁南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102601", "100321", "zh-cn", "513428", "普格县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102602", "100321", "zh-cn", "513429", "布拖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102603", "100321", "zh-cn", "513430", "金阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102604", "100321", "zh-cn", "513431", "昭觉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102605", "100321", "zh-cn", "513432", "喜德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102606", "100321", "zh-cn", "513433", "冕宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102607", "100321", "zh-cn", "513434", "越西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102608", "100321", "zh-cn", "513435", "甘洛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102609", "100321", "zh-cn", "513436", "美姑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102610", "100321", "zh-cn", "513437", "雷波县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102611", "100322", "zh-cn", "520102", "南明区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102612", "100322", "zh-cn", "520103", "云岩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102613", "100322", "zh-cn", "520111", "花溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102614", "100322", "zh-cn", "520112", "乌当区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102616", "100322", "zh-cn", "520115", "观山湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102617", "100322", "zh-cn", "520121", "开阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102618", "100322", "zh-cn", "520122", "息烽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102619", "100322", "zh-cn", "520123", "修文县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102620", "100322", "zh-cn", "520181", "清镇市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102615", "100322", "zh-cn", "520182", "白云区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102621", "100323", "zh-cn", "520201", "钟山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102622", "100323", "zh-cn", "520203", "六枝特区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102623", "100323", "zh-cn", "520221", "水城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102624", "100323", "zh-cn", "520222", "盘州市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102625", "100324", "zh-cn", "520302", "红花岗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102626", "100324", "zh-cn", "520303", "汇川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102627", "100324", "zh-cn", "520304", "播州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102628", "100324", "zh-cn", "520322", "桐梓县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102629", "100324", "zh-cn", "520323", "绥阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102630", "100324", "zh-cn", "520324", "正安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102631", "100324", "zh-cn", "520325", "道真仡佬族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102632", "100324", "zh-cn", "520326", "务川仡佬族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102633", "100324", "zh-cn", "520327", "凤冈县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102634", "100324", "zh-cn", "520328", "湄潭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102635", "100324", "zh-cn", "520329", "余庆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102636", "100324", "zh-cn", "520330", "习水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102637", "100324", "zh-cn", "520381", "赤水市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102638", "100324", "zh-cn", "520382", "仁怀市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102639", "100325", "zh-cn", "520402", "西秀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102640", "100325", "zh-cn", "520403", "平坝区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102641", "100325", "zh-cn", "520422", "普定县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102642", "100325", "zh-cn", "520423", "镇宁布依族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102643", "100325", "zh-cn", "520424", "关岭布依族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102644", "100325", "zh-cn", "520425", "紫云苗族布依族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102645", "100326", "zh-cn", "520502", "七星关区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102646", "100326", "zh-cn", "520521", "大方县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102647", "100326", "zh-cn", "520522", "黔西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102648", "100326", "zh-cn", "520523", "金沙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102649", "100326", "zh-cn", "520524", "织金县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102650", "100326", "zh-cn", "520525", "纳雍县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102651", "100326", "zh-cn", "520526", "威宁彝族回族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102652", "100326", "zh-cn", "520527", "赫章县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102653", "100327", "zh-cn", "520602", "碧江区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102654", "100327", "zh-cn", "520603", "万山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102655", "100327", "zh-cn", "520621", "江口县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102656", "100327", "zh-cn", "520622", "玉屏侗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102657", "100327", "zh-cn", "520623", "石阡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102658", "100327", "zh-cn", "520624", "思南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102659", "100327", "zh-cn", "520625", "印江土家族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102660", "100327", "zh-cn", "520626", "德江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102661", "100327", "zh-cn", "520627", "沿河土家族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102662", "100327", "zh-cn", "520628", "松桃苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102663", "100328", "zh-cn", "522301", "兴义市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102664", "100328", "zh-cn", "522322", "兴仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102665", "100328", "zh-cn", "522323", "普安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102666", "100328", "zh-cn", "522324", "晴隆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102667", "100328", "zh-cn", "522325", "贞丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102668", "100328", "zh-cn", "522326", "望谟县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102669", "100328", "zh-cn", "522327", "册亨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102670", "100328", "zh-cn", "522328", "安龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100330", "100329", "zh-cn", "522401", "黔东南", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102671", "100331", "zh-cn", "522601", "凯里市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102672", "100331", "zh-cn", "522622", "黄平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102673", "100331", "zh-cn", "522623", "施秉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102674", "100331", "zh-cn", "522624", "三穗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102675", "100331", "zh-cn", "522625", "镇远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102676", "100331", "zh-cn", "522626", "岑巩县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102677", "100331", "zh-cn", "522627", "天柱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102678", "100331", "zh-cn", "522628", "锦屏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102679", "100331", "zh-cn", "522629", "剑河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102680", "100331", "zh-cn", "522630", "台江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102681", "100331", "zh-cn", "522631", "黎平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102682", "100331", "zh-cn", "522632", "榕江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102683", "100331", "zh-cn", "522633", "从江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102684", "100331", "zh-cn", "522634", "雷山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102685", "100331", "zh-cn", "522635", "麻江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102686", "100331", "zh-cn", "522636", "丹寨县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102699", "100332", "zh-cn", "530102", "五华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102700", "100332", "zh-cn", "530103", "盘龙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102701", "100332", "zh-cn", "530111", "官渡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102702", "100332", "zh-cn", "530112", "西山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102703", "100332", "zh-cn", "530113", "东川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102704", "100332", "zh-cn", "530114", "呈贡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102706", "100332", "zh-cn", "530124", "富民县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102707", "100332", "zh-cn", "530125", "宜良县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102708", "100332", "zh-cn", "530126", "石林彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102709", "100332", "zh-cn", "530127", "嵩明县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102710", "100332", "zh-cn", "530128", "禄劝彝族苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102711", "100332", "zh-cn", "530129", "寻甸回族彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102712", "100332", "zh-cn", "530181", "安宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102705", "100332", "zh-cn", "530182", "晋宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102713", "100333", "zh-cn", "530302", "麒麟区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102714", "100333", "zh-cn", "530303", "沾益区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102715", "100333", "zh-cn", "530321", "马龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102716", "100333", "zh-cn", "530322", "陆良县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102717", "100333", "zh-cn", "530323", "师宗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102718", "100333", "zh-cn", "530324", "罗平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102719", "100333", "zh-cn", "530325", "富源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102720", "100333", "zh-cn", "530326", "会泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102721", "100333", "zh-cn", "530381", "宣威市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102722", "100334", "zh-cn", "530402", "红塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102723", "100334", "zh-cn", "530403", "江川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102724", "100334", "zh-cn", "530422", "澄江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102725", "100334", "zh-cn", "530423", "通海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102726", "100334", "zh-cn", "530424", "华宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102727", "100334", "zh-cn", "530425", "易门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102728", "100334", "zh-cn", "530426", "峨山彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102729", "100334", "zh-cn", "530427", "新平彝族傣族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102730", "100334", "zh-cn", "530428", "元江哈尼族彝族傣族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102731", "100335", "zh-cn", "530502", "隆阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102732", "100335", "zh-cn", "530521", "施甸县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102733", "100335", "zh-cn", "530523", "龙陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102734", "100335", "zh-cn", "530524", "昌宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102735", "100335", "zh-cn", "530581", "腾冲市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102736", "100336", "zh-cn", "530602", "昭阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102737", "100336", "zh-cn", "530621", "鲁甸县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102738", "100336", "zh-cn", "530622", "巧家县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102739", "100336", "zh-cn", "530623", "盐津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102740", "100336", "zh-cn", "530624", "大关县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102741", "100336", "zh-cn", "530625", "永善县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102742", "100336", "zh-cn", "530626", "绥江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102743", "100336", "zh-cn", "530627", "镇雄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102744", "100336", "zh-cn", "530628", "彝良县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102745", "100336", "zh-cn", "530629", "威信县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102746", "100336", "zh-cn", "530630", "水富县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102747", "100337", "zh-cn", "530702", "古城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102748", "100337", "zh-cn", "530721", "玉龙纳西族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102749", "100337", "zh-cn", "530722", "永胜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102750", "100337", "zh-cn", "530723", "华坪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102751", "100337", "zh-cn", "530724", "宁蒗彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102752", "100338", "zh-cn", "530802", "思茅区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102753", "100338", "zh-cn", "530821", "宁洱哈尼族彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102754", "100338", "zh-cn", "530822", "墨江哈尼族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102755", "100338", "zh-cn", "530823", "景东彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102756", "100338", "zh-cn", "530824", "景谷傣族彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102757", "100338", "zh-cn", "530825", "镇沅彝族哈尼族拉祜族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102758", "100338", "zh-cn", "530826", "江城哈尼族彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102759", "100338", "zh-cn", "530827", "孟连傣族拉祜族佤族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102760", "100338", "zh-cn", "530828", "澜沧拉祜族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102761", "100338", "zh-cn", "530829", "西盟佤族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102762", "100339", "zh-cn", "530902", "临翔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102763", "100339", "zh-cn", "530921", "凤庆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102764", "100339", "zh-cn", "530922", "云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102765", "100339", "zh-cn", "530923", "永德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102766", "100339", "zh-cn", "530924", "镇康县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102767", "100339", "zh-cn", "530925", "双江拉祜族佤族布朗族傣族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102768", "100339", "zh-cn", "530926", "耿马傣族佤族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102769", "100339", "zh-cn", "530927", "沧源佤族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102770", "100340", "zh-cn", "532301", "楚雄市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102771", "100340", "zh-cn", "532322", "双柏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102772", "100340", "zh-cn", "532323", "牟定县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102773", "100340", "zh-cn", "532324", "南华县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102774", "100340", "zh-cn", "532325", "姚安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102775", "100340", "zh-cn", "532326", "大姚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102776", "100340", "zh-cn", "532327", "永仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102777", "100340", "zh-cn", "532328", "元谋县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102778", "100340", "zh-cn", "532329", "武定县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102779", "100340", "zh-cn", "532331", "禄丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102780", "100341", "zh-cn", "532501", "个旧市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102781", "100341", "zh-cn", "532502", "开远市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102782", "100341", "zh-cn", "532503", "蒙自市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102783", "100341", "zh-cn", "532504", "弥勒市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102784", "100341", "zh-cn", "532523", "屏边苗族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102785", "100341", "zh-cn", "532524", "建水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102786", "100341", "zh-cn", "532525", "石屏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102787", "100341", "zh-cn", "532527", "泸西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102788", "100341", "zh-cn", "532528", "元阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102789", "100341", "zh-cn", "532529", "红河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102790", "100341", "zh-cn", "532530", "金平苗族瑶族傣族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102791", "100341", "zh-cn", "532531", "绿春县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102792", "100341", "zh-cn", "532532", "河口瑶族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102793", "100342", "zh-cn", "532601", "文山市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102794", "100342", "zh-cn", "532622", "砚山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102795", "100342", "zh-cn", "532623", "西畴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102796", "100342", "zh-cn", "532624", "麻栗坡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102797", "100342", "zh-cn", "532625", "马关县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102798", "100342", "zh-cn", "532626", "丘北县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102799", "100342", "zh-cn", "532627", "广南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102800", "100342", "zh-cn", "532628", "富宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102801", "100343", "zh-cn", "532801", "景洪市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102802", "100343", "zh-cn", "532822", "勐海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102803", "100343", "zh-cn", "532823", "勐腊县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102804", "100344", "zh-cn", "532901", "大理市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102805", "100344", "zh-cn", "532922", "漾濞彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102806", "100344", "zh-cn", "532923", "祥云县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102807", "100344", "zh-cn", "532924", "宾川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102808", "100344", "zh-cn", "532925", "弥渡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102809", "100344", "zh-cn", "532926", "南涧彝族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102810", "100344", "zh-cn", "532927", "巍山彝族回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102811", "100344", "zh-cn", "532928", "永平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102812", "100344", "zh-cn", "532929", "云龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102813", "100344", "zh-cn", "532930", "洱源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102814", "100344", "zh-cn", "532931", "剑川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102815", "100344", "zh-cn", "532932", "鹤庆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102816", "100345", "zh-cn", "533102", "瑞丽市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102817", "100345", "zh-cn", "533103", "芒市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102818", "100345", "zh-cn", "533122", "梁河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102819", "100345", "zh-cn", "533123", "盈江县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102820", "100345", "zh-cn", "533124", "陇川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102821", "100346", "zh-cn", "533301", "泸水市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102822", "100346", "zh-cn", "533323", "福贡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102823", "100346", "zh-cn", "533324", "贡山独龙族怒族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102824", "100346", "zh-cn", "533325", "兰坪白族普米族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102825", "100347", "zh-cn", "533401", "香格里拉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102826", "100347", "zh-cn", "533422", "德钦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102827", "100347", "zh-cn", "533423", "维西傈僳族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102829", "100348", "zh-cn", "540103", "堆龙德庆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102830", "100348", "zh-cn", "540121", "林周县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102831", "100348", "zh-cn", "540122", "当雄县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102832", "100348", "zh-cn", "540123", "尼木县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102833", "100348", "zh-cn", "540124", "曲水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102834", "100348", "zh-cn", "540126", "达孜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102835", "100348", "zh-cn", "540127", "墨竹工卡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102828", "100348", "zh-cn", "540128", "城关区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102836", "100349", "zh-cn", "540202", "桑珠孜区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102837", "100349", "zh-cn", "540221", "南木林县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102838", "100349", "zh-cn", "540222", "江孜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102839", "100349", "zh-cn", "540223", "定日县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102840", "100349", "zh-cn", "540224", "萨迦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102841", "100349", "zh-cn", "540225", "拉孜县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102842", "100349", "zh-cn", "540226", "昂仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102843", "100349", "zh-cn", "540227", "谢通门县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102844", "100349", "zh-cn", "540228", "白朗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102845", "100349", "zh-cn", "540229", "仁布县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102846", "100349", "zh-cn", "540230", "康马县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102847", "100349", "zh-cn", "540231", "定结县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102848", "100349", "zh-cn", "540232", "仲巴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102849", "100349", "zh-cn", "540233", "亚东县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102850", "100349", "zh-cn", "540234", "吉隆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102851", "100349", "zh-cn", "540235", "聂拉木县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102852", "100349", "zh-cn", "540236", "萨嘎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102853", "100349", "zh-cn", "540237", "岗巴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102854", "100350", "zh-cn", "540302", "卡若区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102855", "100350", "zh-cn", "540321", "江达县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102856", "100350", "zh-cn", "540322", "贡觉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102857", "100350", "zh-cn", "540323", "类乌齐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102858", "100350", "zh-cn", "540324", "丁青县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102859", "100350", "zh-cn", "540325", "察雅县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102860", "100350", "zh-cn", "540326", "八宿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102861", "100350", "zh-cn", "540327", "左贡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102862", "100350", "zh-cn", "540328", "芒康县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102863", "100350", "zh-cn", "540329", "洛隆县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102864", "100350", "zh-cn", "540330", "边坝县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102865", "100351", "zh-cn", "540402", "巴宜区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102866", "100351", "zh-cn", "540421", "工布江达县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102867", "100351", "zh-cn", "540422", "米林县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102868", "100351", "zh-cn", "540423", "墨脱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102869", "100351", "zh-cn", "540424", "波密县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102870", "100351", "zh-cn", "540425", "察隅县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102871", "100351", "zh-cn", "540426", "朗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102872", "100352", "zh-cn", "540502", "乃东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102873", "100352", "zh-cn", "540521", "扎囊县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102874", "100352", "zh-cn", "540522", "贡嘎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102875", "100352", "zh-cn", "540523", "桑日县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102876", "100352", "zh-cn", "540524", "琼结县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102877", "100352", "zh-cn", "540525", "曲松县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102878", "100352", "zh-cn", "540526", "措美县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102879", "100352", "zh-cn", "540527", "洛扎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102880", "100352", "zh-cn", "540528", "加查县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102881", "100352", "zh-cn", "540529", "隆子县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102882", "100352", "zh-cn", "540530", "错那县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102883", "100352", "zh-cn", "540531", "浪卡子县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102884", "100353", "zh-cn", "542421", "那曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102885", "100353", "zh-cn", "542422", "嘉黎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102886", "100353", "zh-cn", "542423", "比如县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102887", "100353", "zh-cn", "542424", "聂荣县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102888", "100353", "zh-cn", "542425", "安多县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102889", "100353", "zh-cn", "542426", "申扎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102890", "100353", "zh-cn", "542427", "索县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102891", "100353", "zh-cn", "542428", "班戈县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102892", "100353", "zh-cn", "542429", "巴青县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102893", "100353", "zh-cn", "542430", "尼玛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102894", "100353", "zh-cn", "542431", "双湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102895", "100354", "zh-cn", "542521", "普兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102896", "100354", "zh-cn", "542522", "札达县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102897", "100354", "zh-cn", "542523", "噶尔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102898", "100354", "zh-cn", "542524", "日土县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102899", "100354", "zh-cn", "542525", "革吉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102900", "100354", "zh-cn", "542526", "改则县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102901", "100354", "zh-cn", "542527", "措勤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102903", "100355", "zh-cn", "610103", "碑林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102904", "100355", "zh-cn", "610104", "莲湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102905", "100355", "zh-cn", "610111", "灞桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102906", "100355", "zh-cn", "610112", "未央区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102907", "100355", "zh-cn", "610113", "雁塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102908", "100355", "zh-cn", "610114", "阎良区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102909", "100355", "zh-cn", "610115", "临潼区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102911", "100355", "zh-cn", "610117", "高陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102913", "100355", "zh-cn", "610122", "蓝田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102914", "100355", "zh-cn", "610124", "周至县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102902", "100355", "zh-cn", "610125", "新城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102910", "100355", "zh-cn", "610126", "长安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102912", "100355", "zh-cn", "610127", "鄠邑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102915", "100356", "zh-cn", "610202", "王益区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102916", "100356", "zh-cn", "610203", "印台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102917", "100356", "zh-cn", "610204", "耀州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102918", "100356", "zh-cn", "610222", "宜君县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102919", "100357", "zh-cn", "610302", "渭滨区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102920", "100357", "zh-cn", "610303", "金台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102921", "100357", "zh-cn", "610304", "陈仓区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102922", "100357", "zh-cn", "610322", "凤翔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102923", "100357", "zh-cn", "610323", "岐山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102924", "100357", "zh-cn", "610324", "扶风县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102925", "100357", "zh-cn", "610326", "眉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102926", "100357", "zh-cn", "610327", "陇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102927", "100357", "zh-cn", "610328", "千阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102928", "100357", "zh-cn", "610329", "麟游县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102929", "100357", "zh-cn", "610330", "凤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102930", "100357", "zh-cn", "610331", "太白县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102931", "100358", "zh-cn", "610402", "秦都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102932", "100358", "zh-cn", "610403", "杨陵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102933", "100358", "zh-cn", "610404", "渭城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102934", "100358", "zh-cn", "610422", "三原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102935", "100358", "zh-cn", "610423", "泾阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102936", "100358", "zh-cn", "610424", "乾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102937", "100358", "zh-cn", "610425", "礼泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102938", "100358", "zh-cn", "610426", "永寿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102939", "100358", "zh-cn", "610427", "彬县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102940", "100358", "zh-cn", "610428", "长武县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102941", "100358", "zh-cn", "610429", "旬邑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102942", "100358", "zh-cn", "610430", "淳化县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102943", "100358", "zh-cn", "610431", "武功县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102944", "100358", "zh-cn", "610481", "兴平市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102945", "100359", "zh-cn", "610502", "临渭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102946", "100359", "zh-cn", "610503", "华州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102947", "100359", "zh-cn", "610522", "潼关县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102948", "100359", "zh-cn", "610523", "大荔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102949", "100359", "zh-cn", "610524", "合阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102950", "100359", "zh-cn", "610525", "澄城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102951", "100359", "zh-cn", "610526", "蒲城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102952", "100359", "zh-cn", "610527", "白水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102953", "100359", "zh-cn", "610528", "富平县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102954", "100359", "zh-cn", "610581", "韩城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102955", "100359", "zh-cn", "610582", "华阴市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102956", "100360", "zh-cn", "610602", "宝塔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102957", "100360", "zh-cn", "610603", "安塞区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102958", "100360", "zh-cn", "610621", "延长县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102959", "100360", "zh-cn", "610622", "延川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102960", "100360", "zh-cn", "610623", "子长县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102961", "100360", "zh-cn", "610625", "志丹县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102962", "100360", "zh-cn", "610626", "吴起县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102963", "100360", "zh-cn", "610627", "甘泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102964", "100360", "zh-cn", "610628", "富县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102965", "100360", "zh-cn", "610629", "洛川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102966", "100360", "zh-cn", "610630", "宜川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102967", "100360", "zh-cn", "610631", "黄龙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102968", "100360", "zh-cn", "610632", "黄陵县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102969", "100361", "zh-cn", "610702", "汉台区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102970", "100361", "zh-cn", "610721", "南郑县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102971", "100361", "zh-cn", "610722", "城固县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102972", "100361", "zh-cn", "610723", "洋县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102973", "100361", "zh-cn", "610724", "西乡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102974", "100361", "zh-cn", "610725", "勉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102975", "100361", "zh-cn", "610726", "宁强县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102976", "100361", "zh-cn", "610727", "略阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102977", "100361", "zh-cn", "610728", "镇巴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102978", "100361", "zh-cn", "610729", "留坝县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102979", "100361", "zh-cn", "610730", "佛坪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102980", "100362", "zh-cn", "610802", "榆阳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102981", "100362", "zh-cn", "610803", "横山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102982", "100362", "zh-cn", "610822", "府谷县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102983", "100362", "zh-cn", "610824", "靖边县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102984", "100362", "zh-cn", "610825", "定边县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102985", "100362", "zh-cn", "610826", "绥德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102986", "100362", "zh-cn", "610827", "米脂县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102987", "100362", "zh-cn", "610828", "佳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102988", "100362", "zh-cn", "610829", "吴堡县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102989", "100362", "zh-cn", "610830", "清涧县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102990", "100362", "zh-cn", "610831", "子洲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102991", "100362", "zh-cn", "610832", "神木市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102992", "100363", "zh-cn", "610902", "汉滨区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102993", "100363", "zh-cn", "610921", "汉阴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102994", "100363", "zh-cn", "610922", "石泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102995", "100363", "zh-cn", "610923", "宁陕县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102996", "100363", "zh-cn", "610924", "紫阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102997", "100363", "zh-cn", "610925", "岚皋县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102998", "100363", "zh-cn", "610926", "平利县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("102999", "100363", "zh-cn", "610927", "镇坪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103000", "100363", "zh-cn", "610928", "旬阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103001", "100363", "zh-cn", "610929", "白河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103002", "100364", "zh-cn", "611002", "商州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103003", "100364", "zh-cn", "611021", "洛南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103004", "100364", "zh-cn", "611022", "丹凤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103005", "100364", "zh-cn", "611023", "商南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103006", "100364", "zh-cn", "611024", "山阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103007", "100364", "zh-cn", "611025", "镇安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103008", "100364", "zh-cn", "611026", "柞水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103641", "103640", "zh-cn", "611201", "空港新城", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103642", "103640", "zh-cn", "611202", "沣东新城", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103643", "103640", "zh-cn", "611203", "秦汉新城", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103644", "103640", "zh-cn", "611204", "沣西新城", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103645", "103640", "zh-cn", "611205", "泾河新城", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103009", "100365", "zh-cn", "620102", "城关区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103010", "100365", "zh-cn", "620103", "七里河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103011", "100365", "zh-cn", "620104", "西固区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103012", "100365", "zh-cn", "620105", "安宁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103013", "100365", "zh-cn", "620111", "红古区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103014", "100365", "zh-cn", "620121", "永登县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103015", "100365", "zh-cn", "620122", "皋兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103016", "100365", "zh-cn", "620123", "榆中县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103017", "100368", "zh-cn", "620201", "嘉峪关市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103018", "100369", "zh-cn", "620302", "金川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103019", "100369", "zh-cn", "620321", "永昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103020", "100370", "zh-cn", "620402", "白银区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103021", "100370", "zh-cn", "620403", "平川区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103022", "100370", "zh-cn", "620421", "靖远县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103023", "100370", "zh-cn", "620422", "会宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103024", "100370", "zh-cn", "620423", "景泰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103025", "100371", "zh-cn", "620502", "秦州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103026", "100371", "zh-cn", "620503", "麦积区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103027", "100371", "zh-cn", "620521", "清水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103028", "100371", "zh-cn", "620522", "秦安县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103029", "100371", "zh-cn", "620523", "甘谷县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103030", "100371", "zh-cn", "620524", "武山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103031", "100371", "zh-cn", "620525", "张家川回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103032", "100372", "zh-cn", "620602", "凉州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103033", "100372", "zh-cn", "620621", "民勤县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103034", "100372", "zh-cn", "620622", "古浪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103035", "100372", "zh-cn", "620623", "天祝藏族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103036", "100373", "zh-cn", "620702", "甘州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103037", "100373", "zh-cn", "620721", "肃南裕固族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103038", "100373", "zh-cn", "620722", "民乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103039", "100373", "zh-cn", "620723", "临泽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103040", "100373", "zh-cn", "620724", "高台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103041", "100373", "zh-cn", "620725", "山丹县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103042", "100374", "zh-cn", "620802", "崆峒区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103043", "100374", "zh-cn", "620821", "泾川县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103044", "100374", "zh-cn", "620822", "灵台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103045", "100374", "zh-cn", "620823", "崇信县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103046", "100374", "zh-cn", "620824", "华亭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103047", "100374", "zh-cn", "620825", "庄浪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103048", "100374", "zh-cn", "620826", "静宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103049", "100375", "zh-cn", "620902", "肃州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103050", "100375", "zh-cn", "620921", "金塔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103051", "100375", "zh-cn", "620922", "瓜州县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103052", "100375", "zh-cn", "620923", "肃北蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103053", "100375", "zh-cn", "620924", "阿克塞哈萨克族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103054", "100375", "zh-cn", "620981", "玉门市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103055", "100375", "zh-cn", "620982", "敦煌市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103056", "100376", "zh-cn", "621002", "西峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103057", "100376", "zh-cn", "621021", "庆城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103058", "100376", "zh-cn", "621022", "环县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103059", "100376", "zh-cn", "621023", "华池县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103060", "100376", "zh-cn", "621024", "合水县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103061", "100376", "zh-cn", "621025", "正宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103062", "100376", "zh-cn", "621026", "宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103063", "100376", "zh-cn", "621027", "镇原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103064", "100377", "zh-cn", "621102", "安定区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103065", "100377", "zh-cn", "621121", "通渭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103066", "100377", "zh-cn", "621122", "陇西县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103067", "100377", "zh-cn", "621123", "渭源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103068", "100377", "zh-cn", "621124", "临洮县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103069", "100377", "zh-cn", "621125", "漳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103070", "100377", "zh-cn", "621126", "岷县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103071", "100378", "zh-cn", "621202", "武都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103072", "100378", "zh-cn", "621221", "成县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103073", "100378", "zh-cn", "621222", "文县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103074", "100378", "zh-cn", "621223", "宕昌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103075", "100378", "zh-cn", "621224", "康县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103076", "100378", "zh-cn", "621225", "西和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103077", "100378", "zh-cn", "621226", "礼县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103078", "100378", "zh-cn", "621227", "徽县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103079", "100378", "zh-cn", "621228", "两当县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("100367", "100366", "zh-cn", "621301", "兰州新区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103080", "100379", "zh-cn", "622901", "临夏市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103081", "100379", "zh-cn", "622921", "临夏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103082", "100379", "zh-cn", "622922", "康乐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103083", "100379", "zh-cn", "622923", "永靖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103084", "100379", "zh-cn", "622924", "广河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103085", "100379", "zh-cn", "622925", "和政县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103086", "100379", "zh-cn", "622926", "东乡族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103087", "100379", "zh-cn", "622927", "积石山保安族东乡族撒拉族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103088", "100380", "zh-cn", "623001", "合作市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103089", "100380", "zh-cn", "623021", "临潭县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103090", "100380", "zh-cn", "623022", "卓尼县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103091", "100380", "zh-cn", "623023", "舟曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103092", "100380", "zh-cn", "623024", "迭部县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103093", "100380", "zh-cn", "623025", "玛曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103094", "100380", "zh-cn", "623026", "碌曲县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103095", "100380", "zh-cn", "623027", "夏河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103096", "100381", "zh-cn", "630102", "城东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103098", "100381", "zh-cn", "630104", "城西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103099", "100381", "zh-cn", "630105", "城北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103100", "100381", "zh-cn", "630121", "大通回族土族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103101", "100381", "zh-cn", "630122", "湟中县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103102", "100381", "zh-cn", "630123", "湟源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103097", "100381", "zh-cn", "630124", "城中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103103", "100382", "zh-cn", "630202", "乐都区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103104", "100382", "zh-cn", "630203", "平安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103105", "100382", "zh-cn", "630222", "民和回族土族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103106", "100382", "zh-cn", "630223", "互助土族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103107", "100382", "zh-cn", "630224", "化隆回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103108", "100382", "zh-cn", "630225", "循化撒拉族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103109", "100383", "zh-cn", "632221", "门源回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103110", "100383", "zh-cn", "632222", "祁连县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103111", "100383", "zh-cn", "632223", "海晏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103112", "100383", "zh-cn", "632224", "刚察县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103113", "100384", "zh-cn", "632321", "同仁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103114", "100384", "zh-cn", "632322", "尖扎县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103115", "100384", "zh-cn", "632323", "泽库县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103116", "100384", "zh-cn", "632324", "河南蒙古族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103117", "100385", "zh-cn", "632521", "共和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103118", "100385", "zh-cn", "632522", "同德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103119", "100385", "zh-cn", "632523", "贵德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103120", "100385", "zh-cn", "632524", "兴海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103121", "100385", "zh-cn", "632525", "贵南县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103122", "100386", "zh-cn", "632621", "玛沁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103123", "100386", "zh-cn", "632622", "班玛县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103124", "100386", "zh-cn", "632623", "甘德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103125", "100386", "zh-cn", "632624", "达日县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103126", "100386", "zh-cn", "632625", "久治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103127", "100386", "zh-cn", "632626", "玛多县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103128", "100387", "zh-cn", "632701", "玉树市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103129", "100387", "zh-cn", "632722", "杂多县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103130", "100387", "zh-cn", "632723", "称多县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103131", "100387", "zh-cn", "632724", "治多县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103132", "100387", "zh-cn", "632725", "囊谦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103133", "100387", "zh-cn", "632726", "曲麻莱县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103134", "100388", "zh-cn", "632801", "格尔木市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103135", "100388", "zh-cn", "632802", "德令哈市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103136", "100388", "zh-cn", "632821", "乌兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103137", "100388", "zh-cn", "632822", "都兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103138", "100388", "zh-cn", "632823", "天峻县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103139", "100388", "zh-cn", "632824", "冷湖行政区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103140", "100388", "zh-cn", "632825", "大柴旦行政区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103141", "100388", "zh-cn", "632826", "茫崖行政区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103142", "100389", "zh-cn", "640104", "兴庆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103143", "100389", "zh-cn", "640105", "西夏区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103144", "100389", "zh-cn", "640106", "金凤区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103145", "100389", "zh-cn", "640121", "永宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103146", "100389", "zh-cn", "640122", "贺兰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103147", "100389", "zh-cn", "640181", "灵武市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103148", "100390", "zh-cn", "640202", "大武口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103149", "100390", "zh-cn", "640205", "惠农区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103150", "100390", "zh-cn", "640221", "平罗县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103151", "100391", "zh-cn", "640302", "利通区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103152", "100391", "zh-cn", "640303", "红寺堡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103153", "100391", "zh-cn", "640323", "盐池县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103154", "100391", "zh-cn", "640324", "同心县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103155", "100391", "zh-cn", "640381", "青铜峡市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103156", "100392", "zh-cn", "640402", "原州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103157", "100392", "zh-cn", "640422", "西吉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103158", "100392", "zh-cn", "640423", "隆德县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103159", "100392", "zh-cn", "640424", "泾源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103160", "100392", "zh-cn", "640425", "彭阳县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103161", "100393", "zh-cn", "640502", "沙坡头区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103162", "100393", "zh-cn", "640521", "中宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103163", "100393", "zh-cn", "640522", "海原县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103164", "100394", "zh-cn", "650102", "天山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103165", "100394", "zh-cn", "650103", "沙依巴克区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103166", "100394", "zh-cn", "650104", "新市区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103167", "100394", "zh-cn", "650105", "水磨沟区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103168", "100394", "zh-cn", "650106", "头屯河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103169", "100394", "zh-cn", "650107", "达坂城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103170", "100394", "zh-cn", "650109", "米东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103171", "100394", "zh-cn", "650121", "乌鲁木齐县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103172", "100395", "zh-cn", "650202", "独山子区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103173", "100395", "zh-cn", "650203", "克拉玛依区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103174", "100395", "zh-cn", "650204", "白碱滩区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103175", "100395", "zh-cn", "650205", "乌尔禾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103176", "100396", "zh-cn", "650402", "高昌区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103177", "100396", "zh-cn", "650421", "鄯善县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103178", "100396", "zh-cn", "650422", "托克逊县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103179", "100397", "zh-cn", "650502", "伊州区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103180", "100397", "zh-cn", "650521", "巴里坤哈萨克自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103181", "100397", "zh-cn", "650522", "伊吾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103663", "103662", "zh-cn", "650601", "阿拉尔市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103665", "103664", "zh-cn", "650701", "铁门关市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103667", "103666", "zh-cn", "650801", "图木舒克市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103669", "103668", "zh-cn", "650901", "可克达拉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103671", "103670", "zh-cn", "651001", "双河市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103673", "103672", "zh-cn", "651101", "五家渠市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103675", "103674", "zh-cn", "651201", "石河子市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103677", "103676", "zh-cn", "651301", "北屯市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103679", "103678", "zh-cn", "651401", "昆玉市兵团所", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103182", "100398", "zh-cn", "652301", "昌吉市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103183", "100398", "zh-cn", "652302", "阜康市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103184", "100398", "zh-cn", "652323", "呼图壁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103185", "100398", "zh-cn", "652324", "玛纳斯县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103186", "100398", "zh-cn", "652325", "奇台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103187", "100398", "zh-cn", "652327", "吉木萨尔县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103188", "100398", "zh-cn", "652328", "木垒哈萨克自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103189", "100399", "zh-cn", "652701", "博乐市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103190", "100399", "zh-cn", "652702", "阿拉山口市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103191", "100399", "zh-cn", "652722", "精河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103192", "100399", "zh-cn", "652723", "温泉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103193", "100400", "zh-cn", "652801", "库尔勒市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103194", "100400", "zh-cn", "652822", "轮台县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103195", "100400", "zh-cn", "652823", "尉犁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103196", "100400", "zh-cn", "652824", "若羌县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103197", "100400", "zh-cn", "652825", "且末县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103198", "100400", "zh-cn", "652826", "焉耆回族自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103199", "100400", "zh-cn", "652827", "和静县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103200", "100400", "zh-cn", "652828", "和硕县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103201", "100400", "zh-cn", "652829", "博湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103202", "100401", "zh-cn", "652901", "阿克苏市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103203", "100401", "zh-cn", "652922", "温宿县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103204", "100401", "zh-cn", "652923", "库车县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103205", "100401", "zh-cn", "652924", "沙雅县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103206", "100401", "zh-cn", "652925", "新和县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103207", "100401", "zh-cn", "652926", "拜城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103208", "100401", "zh-cn", "652927", "乌什县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103209", "100401", "zh-cn", "652928", "阿瓦提县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103210", "100401", "zh-cn", "652929", "柯坪县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103211", "100402", "zh-cn", "653001", "阿图什市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103212", "100402", "zh-cn", "653022", "阿克陶县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103213", "100402", "zh-cn", "653023", "阿合奇县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103214", "100402", "zh-cn", "653024", "乌恰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103215", "100403", "zh-cn", "653101", "喀什市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103216", "100403", "zh-cn", "653121", "疏附县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103217", "100403", "zh-cn", "653122", "疏勒县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103218", "100403", "zh-cn", "653123", "英吉沙县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103219", "100403", "zh-cn", "653124", "泽普县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103220", "100403", "zh-cn", "653125", "莎车县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103221", "100403", "zh-cn", "653126", "叶城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103222", "100403", "zh-cn", "653127", "麦盖提县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103223", "100403", "zh-cn", "653128", "岳普湖县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103224", "100403", "zh-cn", "653129", "伽师县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103225", "100403", "zh-cn", "653130", "巴楚县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103226", "100403", "zh-cn", "653131", "塔什库尔干塔吉克自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103227", "100404", "zh-cn", "653201", "和田市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103228", "100404", "zh-cn", "653221", "和田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103229", "100404", "zh-cn", "653222", "墨玉县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103230", "100404", "zh-cn", "653223", "皮山县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103231", "100404", "zh-cn", "653224", "洛浦县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103232", "100404", "zh-cn", "653225", "策勒县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103233", "100404", "zh-cn", "653226", "于田县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103234", "100404", "zh-cn", "653227", "民丰县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103235", "100405", "zh-cn", "654002", "伊宁市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103236", "100405", "zh-cn", "654003", "奎屯市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103237", "100405", "zh-cn", "654004", "霍尔果斯市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103238", "100405", "zh-cn", "654021", "伊宁县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103239", "100405", "zh-cn", "654022", "察布查尔锡伯自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103240", "100405", "zh-cn", "654023", "霍城县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103241", "100405", "zh-cn", "654024", "巩留县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103242", "100405", "zh-cn", "654025", "新源县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103243", "100405", "zh-cn", "654026", "昭苏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103244", "100405", "zh-cn", "654027", "特克斯县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103245", "100405", "zh-cn", "654028", "尼勒克县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103246", "100406", "zh-cn", "654201", "塔城市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103247", "100406", "zh-cn", "654202", "乌苏市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103248", "100406", "zh-cn", "654221", "额敏县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103249", "100406", "zh-cn", "654223", "沙湾县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103250", "100406", "zh-cn", "654224", "托里县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103251", "100406", "zh-cn", "654225", "裕民县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103252", "100406", "zh-cn", "654226", "和布克赛尔蒙古自治县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103253", "100407", "zh-cn", "654301", "阿勒泰市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103254", "100407", "zh-cn", "654321", "布尔津县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103255", "100407", "zh-cn", "654322", "富蕴县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103256", "100407", "zh-cn", "654323", "福海县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103257", "100407", "zh-cn", "654324", "哈巴河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103258", "100407", "zh-cn", "654325", "青河县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103259", "100407", "zh-cn", "654326", "吉木乃县", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103260", "100408", "zh-cn", "710101", "中正区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103261", "100408", "zh-cn", "710102", "大同区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103262", "100408", "zh-cn", "710103", "中山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103263", "100408", "zh-cn", "710104", "松山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103264", "100408", "zh-cn", "710105", "大安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103265", "100408", "zh-cn", "710106", "万华区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103266", "100408", "zh-cn", "710107", "信义区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103267", "100408", "zh-cn", "710108", "士林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103268", "100408", "zh-cn", "710109", "北投区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103269", "100408", "zh-cn", "710110", "内湖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103270", "100408", "zh-cn", "710111", "南港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103271", "100408", "zh-cn", "710112", "文山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103272", "100409", "zh-cn", "710201", "新兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103273", "100409", "zh-cn", "710202", "前金区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103274", "100409", "zh-cn", "710203", "苓雅区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103275", "100409", "zh-cn", "710204", "盐埕区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103276", "100409", "zh-cn", "710205", "鼓山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103277", "100409", "zh-cn", "710206", "旗津区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103278", "100409", "zh-cn", "710207", "前镇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103279", "100409", "zh-cn", "710208", "三民区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103280", "100409", "zh-cn", "710209", "左营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103281", "100409", "zh-cn", "710210", "楠梓区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103282", "100409", "zh-cn", "710211", "小港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103283", "100409", "zh-cn", "710212", "仁武区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103284", "100409", "zh-cn", "710213", "大社区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103285", "100409", "zh-cn", "710214", "冈山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103286", "100409", "zh-cn", "710215", "路竹区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103287", "100409", "zh-cn", "710216", "阿莲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103288", "100409", "zh-cn", "710217", "田寮区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103289", "100409", "zh-cn", "710218", "燕巢区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103290", "100409", "zh-cn", "710219", "桥头区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103291", "100409", "zh-cn", "710220", "梓官区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103292", "100409", "zh-cn", "710221", "弥陀区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103293", "100409", "zh-cn", "710222", "永安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103294", "100409", "zh-cn", "710223", "湖内区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103295", "100409", "zh-cn", "710224", "凤山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103296", "100409", "zh-cn", "710225", "大寮区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103297", "100409", "zh-cn", "710226", "林园区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103298", "100409", "zh-cn", "710227", "鸟松区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103299", "100409", "zh-cn", "710228", "大树区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103300", "100409", "zh-cn", "710229", "旗山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103301", "100409", "zh-cn", "710230", "美浓区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103302", "100409", "zh-cn", "710231", "六龟区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103303", "100409", "zh-cn", "710232", "内门区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103304", "100409", "zh-cn", "710233", "杉林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103305", "100409", "zh-cn", "710234", "甲仙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103306", "100409", "zh-cn", "710235", "桃源区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103307", "100409", "zh-cn", "710236", "那玛夏区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103308", "100409", "zh-cn", "710237", "茂林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103309", "100409", "zh-cn", "710238", "茄萣区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103310", "100410", "zh-cn", "710301", "中西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103311", "100410", "zh-cn", "710302", "东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103312", "100410", "zh-cn", "710303", "南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103313", "100410", "zh-cn", "710304", "北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103314", "100410", "zh-cn", "710305", "安平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103315", "100410", "zh-cn", "710306", "安南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103316", "100410", "zh-cn", "710307", "永康区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103317", "100410", "zh-cn", "710308", "归仁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103318", "100410", "zh-cn", "710309", "新化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103319", "100410", "zh-cn", "710310", "左镇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103320", "100410", "zh-cn", "710311", "玉井区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103321", "100410", "zh-cn", "710312", "楠西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103322", "100410", "zh-cn", "710313", "南化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103323", "100410", "zh-cn", "710314", "仁德区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103324", "100410", "zh-cn", "710315", "关庙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103325", "100410", "zh-cn", "710316", "龙崎区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103326", "100410", "zh-cn", "710317", "官田区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103327", "100410", "zh-cn", "710318", "麻豆区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103328", "100410", "zh-cn", "710319", "佳里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103329", "100410", "zh-cn", "710320", "西港区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103330", "100410", "zh-cn", "710321", "七股区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103331", "100410", "zh-cn", "710322", "将军区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103332", "100410", "zh-cn", "710323", "学甲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103333", "100410", "zh-cn", "710324", "北门区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103334", "100410", "zh-cn", "710325", "新营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103335", "100410", "zh-cn", "710326", "后壁区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103336", "100410", "zh-cn", "710327", "白河区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103337", "100410", "zh-cn", "710328", "东山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103338", "100410", "zh-cn", "710329", "六甲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103339", "100410", "zh-cn", "710330", "下营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103340", "100410", "zh-cn", "710331", "柳营区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103341", "100410", "zh-cn", "710332", "盐水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103342", "100410", "zh-cn", "710333", "善化区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103343", "100410", "zh-cn", "710334", "大内区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103344", "100410", "zh-cn", "710335", "山上区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103345", "100410", "zh-cn", "710336", "新市区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103346", "100410", "zh-cn", "710337", "安定区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103347", "100411", "zh-cn", "710401", "中区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103348", "100411", "zh-cn", "710402", "东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103349", "100411", "zh-cn", "710403", "南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103350", "100411", "zh-cn", "710404", "西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103351", "100411", "zh-cn", "710405", "北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103352", "100411", "zh-cn", "710406", "北屯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103353", "100411", "zh-cn", "710407", "西屯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103354", "100411", "zh-cn", "710408", "南屯区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103355", "100411", "zh-cn", "710409", "太平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103356", "100411", "zh-cn", "710410", "大里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103357", "100411", "zh-cn", "710411", "雾峰区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103358", "100411", "zh-cn", "710412", "乌日区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103359", "100411", "zh-cn", "710413", "丰原区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103360", "100411", "zh-cn", "710414", "后里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103361", "100411", "zh-cn", "710415", "石冈区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103362", "100411", "zh-cn", "710416", "东势区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103363", "100411", "zh-cn", "710417", "和平区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103364", "100411", "zh-cn", "710418", "新社区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103365", "100411", "zh-cn", "710419", "潭子区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103366", "100411", "zh-cn", "710420", "大雅区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103367", "100411", "zh-cn", "710421", "神冈区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103368", "100411", "zh-cn", "710422", "大肚区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103369", "100411", "zh-cn", "710423", "沙鹿区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103370", "100411", "zh-cn", "710424", "龙井区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103371", "100411", "zh-cn", "710425", "梧栖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103372", "100411", "zh-cn", "710426", "清水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103373", "100411", "zh-cn", "710427", "大甲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103374", "100411", "zh-cn", "710428", "外埔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103375", "100411", "zh-cn", "710429", "大安区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103376", "100412", "zh-cn", "710501", "南投市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103377", "100412", "zh-cn", "710502", "中寮乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103378", "100412", "zh-cn", "710503", "草屯镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103379", "100412", "zh-cn", "710504", "国姓乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103380", "100412", "zh-cn", "710505", "埔里镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103381", "100412", "zh-cn", "710506", "仁爱乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103382", "100412", "zh-cn", "710507", "名间乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103383", "100412", "zh-cn", "710508", "集集镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103384", "100412", "zh-cn", "710509", "水里乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103385", "100412", "zh-cn", "710510", "鱼池乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103386", "100412", "zh-cn", "710511", "信义乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103387", "100412", "zh-cn", "710512", "竹山镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103388", "100412", "zh-cn", "710513", "鹿谷乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103389", "100413", "zh-cn", "710601", "仁爱区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103390", "100413", "zh-cn", "710602", "信义区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103391", "100413", "zh-cn", "710603", "中正区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103392", "100413", "zh-cn", "710604", "中山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103393", "100413", "zh-cn", "710605", "安乐区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103394", "100413", "zh-cn", "710606", "暖暖区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103395", "100413", "zh-cn", "710607", "七堵区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103396", "100414", "zh-cn", "710701", "东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103397", "100414", "zh-cn", "710702", "北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103398", "100414", "zh-cn", "710703", "香山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103442", "100414", "zh-cn", "710704", "竹北市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103443", "100414", "zh-cn", "710705", "湖口乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103444", "100414", "zh-cn", "710706", "新丰乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103445", "100414", "zh-cn", "710707", "新埔镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103446", "100414", "zh-cn", "710708", "关西镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103447", "100414", "zh-cn", "710709", "芎林乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103448", "100414", "zh-cn", "710710", "宝山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103449", "100414", "zh-cn", "710711", "竹东镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103450", "100414", "zh-cn", "710712", "五峰乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103451", "100414", "zh-cn", "710713", "横山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103452", "100414", "zh-cn", "710714", "尖石乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103453", "100414", "zh-cn", "710715", "北埔乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103454", "100414", "zh-cn", "710716", "峨眉乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103512", "100415", "zh-cn", "710801", "番路乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103513", "100415", "zh-cn", "710802", "梅山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103514", "100415", "zh-cn", "710803", "竹崎乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103515", "100415", "zh-cn", "710804", "阿里山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103516", "100415", "zh-cn", "710805", "中埔乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103517", "100415", "zh-cn", "710806", "大埔乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103518", "100415", "zh-cn", "710807", "水上乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103519", "100415", "zh-cn", "710808", "鹿草乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103520", "100415", "zh-cn", "710809", "太保市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103521", "100415", "zh-cn", "710810", "朴子市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103522", "100415", "zh-cn", "710811", "东石乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103523", "100415", "zh-cn", "710812", "六脚乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103524", "100415", "zh-cn", "710813", "新港乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103525", "100415", "zh-cn", "710814", "民雄乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103526", "100415", "zh-cn", "710815", "大林镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103527", "100415", "zh-cn", "710816", "溪口乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103528", "100415", "zh-cn", "710817", "义竹乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103529", "100415", "zh-cn", "710818", "布袋镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103399", "100415", "zh-cn", "710821", "东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103400", "100415", "zh-cn", "710822", "西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103401", "100416", "zh-cn", "710901", "万里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103402", "100416", "zh-cn", "710902", "金山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103403", "100416", "zh-cn", "710903", "板桥区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103404", "100416", "zh-cn", "710904", "汐止区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103405", "100416", "zh-cn", "710905", "深坑区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103406", "100416", "zh-cn", "710906", "石碇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103407", "100416", "zh-cn", "710907", "瑞芳区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103408", "100416", "zh-cn", "710908", "平溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103409", "100416", "zh-cn", "710909", "双溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103410", "100416", "zh-cn", "710910", "贡寮区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103411", "100416", "zh-cn", "710911", "新店区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103412", "100416", "zh-cn", "710912", "坪林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103413", "100416", "zh-cn", "710913", "乌来区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103414", "100416", "zh-cn", "710914", "永和区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103415", "100416", "zh-cn", "710915", "中和区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103416", "100416", "zh-cn", "710916", "土城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103417", "100416", "zh-cn", "710917", "三峡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103418", "100416", "zh-cn", "710918", "树林区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103419", "100416", "zh-cn", "710919", "莺歌区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103420", "100416", "zh-cn", "710920", "三重区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103421", "100416", "zh-cn", "710921", "新庄区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103422", "100416", "zh-cn", "710922", "泰山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103423", "100416", "zh-cn", "710923", "林口区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103424", "100416", "zh-cn", "710924", "芦洲区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103425", "100416", "zh-cn", "710925", "五股区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103426", "100416", "zh-cn", "710926", "八里区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103427", "100416", "zh-cn", "710927", "淡水区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103428", "100416", "zh-cn", "710928", "三芝区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103429", "100416", "zh-cn", "710929", "石门区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103430", "100417", "zh-cn", "711001", "宜兰市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103431", "100417", "zh-cn", "711002", "头城镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103432", "100417", "zh-cn", "711003", "礁溪乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103433", "100417", "zh-cn", "711004", "壮围乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103434", "100417", "zh-cn", "711005", "员山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103435", "100417", "zh-cn", "711006", "罗东镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103436", "100417", "zh-cn", "711007", "三星乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103437", "100417", "zh-cn", "711008", "大同乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103438", "100417", "zh-cn", "711009", "五结乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103439", "100417", "zh-cn", "711010", "冬山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103440", "100417", "zh-cn", "711011", "苏澳镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103441", "100417", "zh-cn", "711012", "南澳乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103455", "100418", "zh-cn", "711101", "中坜区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103456", "100418", "zh-cn", "711102", "平镇区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103457", "100418", "zh-cn", "711103", "龙潭区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103458", "100418", "zh-cn", "711104", "杨梅区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103459", "100418", "zh-cn", "711105", "新屋区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103460", "100418", "zh-cn", "711106", "观音区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103461", "100418", "zh-cn", "711107", "桃园区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103462", "100418", "zh-cn", "711108", "龟山区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103463", "100418", "zh-cn", "711109", "八德区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103464", "100418", "zh-cn", "711110", "大溪区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103465", "100418", "zh-cn", "711111", "复兴区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103466", "100418", "zh-cn", "711112", "大园区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103467", "100418", "zh-cn", "711113", "芦竹区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103468", "100419", "zh-cn", "711201", "竹南镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103469", "100419", "zh-cn", "711202", "头份市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103470", "100419", "zh-cn", "711203", "三湾乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103471", "100419", "zh-cn", "711204", "南庄乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103472", "100419", "zh-cn", "711205", "狮潭乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103473", "100419", "zh-cn", "711206", "后龙镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103474", "100419", "zh-cn", "711207", "通霄镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103475", "100419", "zh-cn", "711208", "苑里镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103476", "100419", "zh-cn", "711209", "苗栗市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103477", "100419", "zh-cn", "711210", "造桥乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103478", "100419", "zh-cn", "711211", "头屋乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103479", "100419", "zh-cn", "711212", "公馆乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103480", "100419", "zh-cn", "711213", "大湖乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103481", "100419", "zh-cn", "711214", "泰安乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103482", "100419", "zh-cn", "711215", "铜锣乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103483", "100419", "zh-cn", "711216", "三义乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103484", "100419", "zh-cn", "711217", "西湖乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103485", "100419", "zh-cn", "711218", "卓兰镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103486", "100420", "zh-cn", "711301", "彰化市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103487", "100420", "zh-cn", "711302", "芬园乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103488", "100420", "zh-cn", "711303", "花坛乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103489", "100420", "zh-cn", "711304", "秀水乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103490", "100420", "zh-cn", "711305", "鹿港镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103491", "100420", "zh-cn", "711306", "福兴乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103492", "100420", "zh-cn", "711307", "线西乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103493", "100420", "zh-cn", "711308", "和美镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103494", "100420", "zh-cn", "711309", "伸港乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103495", "100420", "zh-cn", "711310", "员林市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103496", "100420", "zh-cn", "711311", "社头乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103497", "100420", "zh-cn", "711312", "永靖乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103498", "100420", "zh-cn", "711313", "埔心乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103499", "100420", "zh-cn", "711314", "溪湖镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103500", "100420", "zh-cn", "711315", "大村乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103501", "100420", "zh-cn", "711316", "埔盐乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103502", "100420", "zh-cn", "711317", "田中镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103503", "100420", "zh-cn", "711318", "北斗镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103504", "100420", "zh-cn", "711319", "田尾乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103505", "100420", "zh-cn", "711320", "埤头乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103506", "100420", "zh-cn", "711321", "溪州乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103507", "100420", "zh-cn", "711322", "竹塘乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103508", "100420", "zh-cn", "711323", "二林镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103509", "100420", "zh-cn", "711324", "大城乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103510", "100420", "zh-cn", "711325", "芳苑乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103511", "100420", "zh-cn", "711326", "二水乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103530", "100421", "zh-cn", "711401", "斗南镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103531", "100421", "zh-cn", "711402", "大埤乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103532", "100421", "zh-cn", "711403", "虎尾镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103533", "100421", "zh-cn", "711404", "土库镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103534", "100421", "zh-cn", "711405", "褒忠乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103535", "100421", "zh-cn", "711406", "东势乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103536", "100421", "zh-cn", "711407", "台西乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103537", "100421", "zh-cn", "711408", "仑背乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103538", "100421", "zh-cn", "711409", "麦寮乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103539", "100421", "zh-cn", "711410", "斗六市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103540", "100421", "zh-cn", "711411", "林内乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103541", "100421", "zh-cn", "711412", "古坑乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103542", "100421", "zh-cn", "711413", "莿桐乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103543", "100421", "zh-cn", "711414", "西螺镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103544", "100421", "zh-cn", "711415", "二仑乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103545", "100421", "zh-cn", "711416", "北港镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103546", "100421", "zh-cn", "711417", "水林乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103547", "100421", "zh-cn", "711418", "口湖乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103548", "100421", "zh-cn", "711419", "四湖乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103549", "100421", "zh-cn", "711420", "元长乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103550", "100422", "zh-cn", "711501", "屏东市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103551", "100422", "zh-cn", "711502", "三地门乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103552", "100422", "zh-cn", "711503", "雾台乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103553", "100422", "zh-cn", "711504", "玛家乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103554", "100422", "zh-cn", "711505", "九如乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103555", "100422", "zh-cn", "711506", "里港乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103556", "100422", "zh-cn", "711507", "高树乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103557", "100422", "zh-cn", "711508", "盐埔乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103558", "100422", "zh-cn", "711509", "长治乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103559", "100422", "zh-cn", "711510", "麟洛乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103560", "100422", "zh-cn", "711511", "竹田乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103561", "100422", "zh-cn", "711512", "内埔乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103562", "100422", "zh-cn", "711513", "万丹乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103563", "100422", "zh-cn", "711514", "潮州镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103564", "100422", "zh-cn", "711515", "泰武乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103565", "100422", "zh-cn", "711516", "来义乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103566", "100422", "zh-cn", "711517", "万峦乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103567", "100422", "zh-cn", "711518", "崁顶乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103568", "100422", "zh-cn", "711519", "新埤乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103569", "100422", "zh-cn", "711520", "南州乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103570", "100422", "zh-cn", "711521", "林边乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103571", "100422", "zh-cn", "711522", "东港镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103572", "100422", "zh-cn", "711523", "琉球乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103573", "100422", "zh-cn", "711524", "佳冬乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103574", "100422", "zh-cn", "711525", "新园乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103575", "100422", "zh-cn", "711526", "枋寮乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103576", "100422", "zh-cn", "711527", "枋山乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103577", "100422", "zh-cn", "711528", "春日乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103578", "100422", "zh-cn", "711529", "狮子乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103579", "100422", "zh-cn", "711530", "车城乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103580", "100422", "zh-cn", "711531", "牡丹乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103581", "100422", "zh-cn", "711532", "恒春镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103582", "100422", "zh-cn", "711533", "满州乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103583", "100423", "zh-cn", "711601", "台东市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103584", "100423", "zh-cn", "711602", "绿岛乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103585", "100423", "zh-cn", "711603", "兰屿乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103586", "100423", "zh-cn", "711604", "延平乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103587", "100423", "zh-cn", "711605", "卑南乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103588", "100423", "zh-cn", "711606", "鹿野乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103589", "100423", "zh-cn", "711607", "关山镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103590", "100423", "zh-cn", "711608", "海端乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103591", "100423", "zh-cn", "711609", "池上乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103592", "100423", "zh-cn", "711610", "东河乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103593", "100423", "zh-cn", "711611", "成功镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103594", "100423", "zh-cn", "711612", "长滨乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103595", "100423", "zh-cn", "711613", "金峰乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103596", "100423", "zh-cn", "711614", "大武乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103597", "100423", "zh-cn", "711615", "达仁乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103598", "100423", "zh-cn", "711616", "太麻里乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103599", "100424", "zh-cn", "711701", "花莲市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103600", "100424", "zh-cn", "711702", "新城乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103601", "100424", "zh-cn", "711703", "秀林乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103602", "100424", "zh-cn", "711704", "吉安乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103603", "100424", "zh-cn", "711705", "寿丰乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103604", "100424", "zh-cn", "711706", "凤林镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103605", "100424", "zh-cn", "711707", "光复乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103606", "100424", "zh-cn", "711708", "丰滨乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103607", "100424", "zh-cn", "711709", "瑞穗乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103608", "100424", "zh-cn", "711710", "万荣乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103609", "100424", "zh-cn", "711711", "玉里镇", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103610", "100424", "zh-cn", "711712", "卓溪乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103611", "100424", "zh-cn", "711713", "富里乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103612", "100425", "zh-cn", "711801", "马公市", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103613", "100425", "zh-cn", "711802", "西屿乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103614", "100425", "zh-cn", "711803", "望安乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103615", "100425", "zh-cn", "711804", "七美乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103616", "100425", "zh-cn", "711805", "白沙乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103617", "100425", "zh-cn", "711806", "湖西乡", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103618", "100065", "zh-cn", "810001", "中西区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103619", "100065", "zh-cn", "810002", "东区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103620", "100065", "zh-cn", "810003", "九龙城区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103621", "100065", "zh-cn", "810004", "观塘区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103622", "100065", "zh-cn", "810005", "南区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103623", "100065", "zh-cn", "810006", "深水埗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103624", "100065", "zh-cn", "810007", "湾仔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103625", "100065", "zh-cn", "810008", "黄大仙区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103626", "100065", "zh-cn", "810009", "油尖旺区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103627", "100065", "zh-cn", "810010", "离岛区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103628", "100065", "zh-cn", "810011", "葵青区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103629", "100065", "zh-cn", "810012", "北区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103630", "100065", "zh-cn", "810013", "西贡区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103631", "100065", "zh-cn", "810014", "沙田区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103632", "100065", "zh-cn", "810015", "屯门区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103633", "100065", "zh-cn", "810016", "大埔区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103634", "100065", "zh-cn", "810017", "荃湾区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103635", "100065", "zh-cn", "810018", "元朗区", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103636", "100066", "zh-cn", "820001", "澳门半岛", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103637", "100066", "zh-cn", "820002", "凼仔", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103638", "100066", "zh-cn", "820003", "路凼城", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("103639", "100066", "zh-cn", "820004", "路环", "3", 0, 1, now(), NULL, NULL);