en.sql 992 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 ("200033", "242", "en-us", "110000", "Beijing", "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 ("200034", "242", "en-us", "120000", "Tianjin", "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 ("200035", "242", "en-us", "130000", "Hebei", "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 ("200036", "242", "en-us", "140000", "Shanxi", "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 ("200037", "242", "en-us", "150000", "Inner Mongolia", "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 ("200038", "242", "en-us", "210000", "Liaoning", "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 ("200039", "242", "en-us", "220000", "Jilin", "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 ("200040", "242", "en-us", "230000", "Heilongjiang", "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 ("200041", "242", "en-us", "310000", "Shanghai", "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 ("200042", "242", "en-us", "320000", "Jiangsu", "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 ("200043", "242", "en-us", "330000", "Zhejiang", "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 ("200044", "242", "en-us", "340000", "Anhui", "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 ("200045", "242", "en-us", "350000", "Fujian", "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 ("200046", "242", "en-us", "360000", "Jiangxi", "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 ("200047", "242", "en-us", "370000", "Shandong", "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 ("200048", "242", "en-us", "410000", "Henan", "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 ("200049", "242", "en-us", "420000", "Hubei", "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 ("200050", "242", "en-us", "430000", "Hunan", "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 ("200051", "242", "en-us", "440000", "Guangdong", "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 ("200052", "242", "en-us", "450000", "Guangxi", "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 ("200053", "242", "en-us", "460000", "Hainan", "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 ("200054", "242", "en-us", "500000", "Chongqing", "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 ("200055", "242", "en-us", "510000", "Sichuan", "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 ("200056", "242", "en-us", "520000", "Guizhou", "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 ("200057", "242", "en-us", "530000", "Yunnan", "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 ("200058", "242", "en-us", "540000", "Tibet", "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 ("200059", "242", "en-us", "610000", "Shaanxi", "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 ("200060", "242", "en-us", "620000", "Gansu", "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 ("200061", "242", "en-us", "630000", "Qinghai", "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 ("200062", "242", "en-us", "640000", "Ningxia", "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 ("200063", "242", "en-us", "650000", "Xinjiang", "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 ("200064", "242", "en-us", "710000", "Taiwan", "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 ("200065", "242", "en-us", "810000", "Hong Kong", "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 ("200066", "242", "en-us", "820000", "Macao", "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 ("200067", "200033", "en-us", "110100", "Beijing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200068", "200034", "en-us", "120100", "Tianjin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200069", "200035", "en-us", "130100", "Shijiazhuang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200070", "200035", "en-us", "130200", "Tangshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200071", "200035", "en-us", "130300", "Qinhuangdao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200072", "200035", "en-us", "130400", "Handan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200073", "200035", "en-us", "130500", "Xingtai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200074", "200035", "en-us", "130600", "Baoding", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200075", "200035", "en-us", "130700", "Zhangjiakou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200076", "200035", "en-us", "130800", "Chengde", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200077", "200035", "en-us", "130900", "Cangzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200078", "200035", "en-us", "131000", "Langfang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200079", "200035", "en-us", "131100", "Hengshui", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203656", "200035", "en-us", "131200", "Dingzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203658", "200035", "en-us", "131300", "Xinji", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200080", "200036", "en-us", "140100", "Taiyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200081", "200036", "en-us", "140200", "Datong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200082", "200036", "en-us", "140300", "Yangquan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200083", "200036", "en-us", "140400", "Changzhi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200084", "200036", "en-us", "140500", "Jincheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200085", "200036", "en-us", "140600", "Shuozhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200086", "200036", "en-us", "140700", "Jinzhong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200087", "200036", "en-us", "140800", "Yuncheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200088", "200036", "en-us", "140900", "Xinzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200089", "200036", "en-us", "141000", "Linfen", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200090", "200036", "en-us", "141100", "Lvliang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200091", "200037", "en-us", "150100", "Hohhot", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200092", "200037", "en-us", "150200", "Baotou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200093", "200037", "en-us", "150300", "Wuhai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200094", "200037", "en-us", "150400", "Chifeng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200095", "200037", "en-us", "150500", "Tongliao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200096", "200037", "en-us", "150600", "Ordos", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200097", "200037", "en-us", "150700", "Hulun Buir", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200098", "200037", "en-us", "150800", "Bayannur", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200099", "200037", "en-us", "150900", "Ulanqab", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200100", "200037", "en-us", "152200", "Xing'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200101", "200037", "en-us", "152500", "Xilingol", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200102", "200037", "en-us", "152900", "Alxa", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200103", "200038", "en-us", "210100", "Shenyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200104", "200038", "en-us", "210200", "Dalian", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200105", "200038", "en-us", "210300", "Anshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200106", "200038", "en-us", "210400", "Fushun", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200107", "200038", "en-us", "210500", "Benxi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200108", "200038", "en-us", "210600", "Dandong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200109", "200038", "en-us", "210700", "Jinzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200110", "200038", "en-us", "210800", "Yingkou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200111", "200038", "en-us", "210900", "Fuxin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200112", "200038", "en-us", "211000", "Liaoyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200113", "200038", "en-us", "211100", "Panjin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200114", "200038", "en-us", "211200", "Tieling", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200115", "200038", "en-us", "211300", "Chaoyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200116", "200038", "en-us", "211400", "Huludao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200117", "200039", "en-us", "220100", "Changchun", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200118", "200039", "en-us", "220200", "Jilin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200119", "200039", "en-us", "220300", "Siping", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200120", "200039", "en-us", "220400", "Liaoyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200121", "200039", "en-us", "220500", "Tonghua", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200122", "200039", "en-us", "220600", "Baishan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200123", "200039", "en-us", "220700", "Songyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200124", "200039", "en-us", "220800", "Baicheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200125", "200039", "en-us", "222400", "Yanbian", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200126", "200040", "en-us", "230100", "Harbin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200127", "200040", "en-us", "230200", "Qiqihar", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200128", "200040", "en-us", "230300", "Jixi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200129", "200040", "en-us", "230400", "Hegang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200130", "200040", "en-us", "230500", "Shuangyashan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200131", "200040", "en-us", "230600", "Daqing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200132", "200040", "en-us", "230700", "Yichun", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200133", "200040", "en-us", "230800", "Jiamusi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200134", "200040", "en-us", "230900", "Qitaihe", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200135", "200040", "en-us", "231000", "Mudanjiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200136", "200040", "en-us", "231100", "Heihe", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200137", "200040", "en-us", "231200", "Suihua", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200138", "200040", "en-us", "232700", "Greater Khingan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200139", "200041", "en-us", "310100", "Shanghai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200140", "200042", "en-us", "320100", "Nanjing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200141", "200042", "en-us", "320200", "Wuxi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200142", "200042", "en-us", "320300", "Xuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200143", "200042", "en-us", "320400", "Changzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200144", "200042", "en-us", "320500", "Suzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200145", "200042", "en-us", "320600", "Nantong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200146", "200042", "en-us", "320700", "Lianyungang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200147", "200042", "en-us", "320800", "Huaian", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200148", "200042", "en-us", "320900", "Yancheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200149", "200042", "en-us", "321000", "Yangzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200150", "200042", "en-us", "321100", "Zhenjiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200151", "200042", "en-us", "321200", "Taizhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200152", "200042", "en-us", "321300", "Suqian", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200153", "200043", "en-us", "330100", "Hangzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200154", "200043", "en-us", "330200", "Ningbo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200155", "200043", "en-us", "330300", "Wenzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200156", "200043", "en-us", "330400", "Jiaxing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200157", "200043", "en-us", "330500", "Huzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200158", "200043", "en-us", "330600", "Shaoxing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200159", "200043", "en-us", "330700", "Jinhua", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200160", "200043", "en-us", "330800", "Quzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200161", "200043", "en-us", "330900", "Zhoushan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200162", "200043", "en-us", "331000", "Taizhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200163", "200043", "en-us", "331100", "Lishui", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200164", "200044", "en-us", "340100", "Hefei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200165", "200044", "en-us", "340200", "Wuhu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200166", "200044", "en-us", "340300", "Bengbu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200167", "200044", "en-us", "340400", "Huannan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200168", "200044", "en-us", "340500", "Maanshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200169", "200044", "en-us", "340600", "Huaibei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200170", "200044", "en-us", "340700", "Tongling", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200171", "200044", "en-us", "340800", "Anqing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200172", "200044", "en-us", "341000", "Huangshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200173", "200044", "en-us", "341100", "Chuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200174", "200044", "en-us", "341200", "Fuyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200175", "200044", "en-us", "341300", "Suzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200176", "200044", "en-us", "341500", "Lu'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200177", "200044", "en-us", "341600", "Haozhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200178", "200044", "en-us", "341700", "Chizhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200179", "200044", "en-us", "341800", "Xuancheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200180", "200045", "en-us", "350100", "Fuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200181", "200045", "en-us", "350200", "Xiamen", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200182", "200045", "en-us", "350300", "Putian", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200183", "200045", "en-us", "350400", "Sanming", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200184", "200045", "en-us", "350500", "Quanzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200185", "200045", "en-us", "350600", "Zhangzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200186", "200045", "en-us", "350700", "Nanping", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200187", "200045", "en-us", "350800", "Longyan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200188", "200045", "en-us", "350900", "Ningde", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200189", "200046", "en-us", "360100", "Nanchang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200190", "200046", "en-us", "360200", "Jingdezhen", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200191", "200046", "en-us", "360300", "Pingxiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200192", "200046", "en-us", "360400", "Jiujiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200193", "200046", "en-us", "360500", "Xinyu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200194", "200046", "en-us", "360600", "Yingtan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200195", "200046", "en-us", "360700", "Ganzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200196", "200046", "en-us", "360800", "Ji'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200197", "200046", "en-us", "360900", "Yichun", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200198", "200046", "en-us", "361000", "Fuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200199", "200046", "en-us", "361100", "Shangrao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200200", "200047", "en-us", "370100", "Jinan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200201", "200047", "en-us", "370200", "Qingdao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200202", "200047", "en-us", "370300", "Zibo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200203", "200047", "en-us", "370400", "Zaozhuang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200204", "200047", "en-us", "370500", "Dongying", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200205", "200047", "en-us", "370600", "Yantai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200206", "200047", "en-us", "370700", "Weifang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200207", "200047", "en-us", "370800", "Jining", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200208", "200047", "en-us", "370900", "Tai'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200209", "200047", "en-us", "371000", "Weihai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200210", "200047", "en-us", "371100", "Rizhao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200211", "200047", "en-us", "371300", "Linyi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200212", "200047", "en-us", "371400", "Dezhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200213", "200047", "en-us", "371500", "Liaocheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200214", "200047", "en-us", "371600", "Binzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200215", "200047", "en-us", "371700", "Heze", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200216", "200048", "en-us", "410100", "Zhengzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200217", "200048", "en-us", "410200", "Kaifeng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200218", "200048", "en-us", "410300", "Luoyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200219", "200048", "en-us", "410400", "Pingdingshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200220", "200048", "en-us", "410500", "Anyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200221", "200048", "en-us", "410600", "Hebi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200222", "200048", "en-us", "410700", "Xinxiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200223", "200048", "en-us", "410800", "Jiaozuo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200224", "200048", "en-us", "410900", "Puyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200225", "200048", "en-us", "411000", "Xuchang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200226", "200048", "en-us", "411100", "Louhe", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200227", "200048", "en-us", "411200", "Sanmenxia", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200228", "200048", "en-us", "411300", "Nanyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200229", "200048", "en-us", "411400", "Shangqiu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200230", "200048", "en-us", "411500", "Xinyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200231", "200048", "en-us", "411600", "Zhoukou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200232", "200048", "en-us", "411700", "Zhumadian", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203654", "200048", "en-us", "411800", "Jiyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200233", "200049", "en-us", "420100", "Wuhan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200234", "200049", "en-us", "420200", "Huangshi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200235", "200049", "en-us", "420300", "Shiyan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200236", "200049", "en-us", "420500", "Yichang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200237", "200049", "en-us", "420600", "Xiangyan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200238", "200049", "en-us", "420700", "Ezhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200239", "200049", "en-us", "420800", "Jingmen", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200240", "200049", "en-us", "420900", "Xiaogan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200241", "200049", "en-us", "421000", "Jingzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200242", "200049", "en-us", "421100", "Huanggang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200243", "200049", "en-us", "421200", "Xianning", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200244", "200049", "en-us", "421300", "Suizhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203647", "200049", "en-us", "421400", "Xiantao (County-level) City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203649", "200049", "en-us", "421500", "Qianjiang (County-level) City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203650", "200049", "en-us", "421600", "Tianmen (County-level) City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203652", "200049", "en-us", "421700", "Shenlongjia Forestry District", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200245", "200049", "en-us", "422800", "Enshi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200246", "200050", "en-us", "430100", "Changsha", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200247", "200050", "en-us", "430200", "Zhuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200248", "200050", "en-us", "430300", "Xiangtan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200249", "200050", "en-us", "430400", "Hengyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200250", "200050", "en-us", "430500", "Shaoyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200251", "200050", "en-us", "430600", "Yueyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200252", "200050", "en-us", "430700", "Changde", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200253", "200050", "en-us", "430800", "Zhangjiajie", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200254", "200050", "en-us", "430900", "Yiyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200255", "200050", "en-us", "431000", "Chenzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200256", "200050", "en-us", "431100", "Yongzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200257", "200050", "en-us", "431200", "Huaihua", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200258", "200050", "en-us", "431300", "Loudi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200259", "200050", "en-us", "433100", "Xiangxi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200260", "200051", "en-us", "440100", "Guangzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200261", "200051", "en-us", "440200", "Shaoguan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200262", "200051", "en-us", "440300", "Shenzhen", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200263", "200051", "en-us", "440400", "Zhuhai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200264", "200051", "en-us", "440500", "Shantou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200265", "200051", "en-us", "440600", "Foshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200266", "200051", "en-us", "440700", "Jiangmen", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200267", "200051", "en-us", "440800", "Zhanjiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200268", "200051", "en-us", "440900", "Maoming", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200269", "200051", "en-us", "441200", "Zhaoqing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200270", "200051", "en-us", "441300", "Huizhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200271", "200051", "en-us", "441400", "Meizhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200272", "200051", "en-us", "441500", "Shanwei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200273", "200051", "en-us", "441600", "Heyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200274", "200051", "en-us", "441700", "Yangjiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200275", "200051", "en-us", "441800", "Qingyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200276", "200051", "en-us", "441900", "Dongguan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200277", "200051", "en-us", "442000", "Zhongshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200278", "200051", "en-us", "445100", "Chaozhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200279", "200051", "en-us", "445200", "Jieyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200280", "200051", "en-us", "445300", "Yunfu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200281", "200052", "en-us", "450100", "Nanning", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200282", "200052", "en-us", "450200", "Liuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200283", "200052", "en-us", "450300", "Guilin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200284", "200052", "en-us", "450400", "Wuzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200285", "200052", "en-us", "450500", "Beihai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200286", "200052", "en-us", "450600", "Fangchenggang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200287", "200052", "en-us", "450700", "Qinzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200288", "200052", "en-us", "450800", "Guigang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200289", "200052", "en-us", "450900", "Yulin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200290", "200052", "en-us", "451000", "Baise", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200291", "200052", "en-us", "451100", "Hezhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200292", "200052", "en-us", "451200", "Hechi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200293", "200052", "en-us", "451300", "Laibin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200294", "200052", "en-us", "451400", "Chongzuo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200295", "200053", "en-us", "460100", "Haikou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200296", "200053", "en-us", "460200", "Sanya", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200297", "200053", "en-us", "460300", "Sansha", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200299", "200053", "en-us", "460400", "Danzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203660", "200053", "en-us", "460500", "Dongfang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200000", "200053", "en-us", "461000", "Wuzhishan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200003", "200053", "en-us", "461100", "Qionghai", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200005", "200053", "en-us", "461200", "Dongfang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200007", "200053", "en-us", "461300", "Wenchang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200009", "200053", "en-us", "461400", "Wanning", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200011", "200053", "en-us", "461500", "Dingan County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200013", "200053", "en-us", "461600", "Tunchang County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200015", "200053", "en-us", "461700", "Chengmai County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200017", "200053", "en-us", "461800", "Lingao County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200019", "200053", "en-us", "461900", "Baisha Li Autonomous County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200022", "200053", "en-us", "462000", "Changjiang Li Autonomous County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200024", "200053", "en-us", "462100", "Ledong Li Autonomous County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200026", "200053", "en-us", "462200", "Lingshui Li Autonomous County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200029", "200053", "en-us", "462300", "Baotinglizumiaozu Autonomous County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200031", "200053", "en-us", "462400", "Qiongzhonglizumiaozu Autonomous County", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200300", "200054", "en-us", "500100", "Chongqing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200301", "200055", "en-us", "510100", "Chengdu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200302", "200055", "en-us", "510300", "Zigong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200303", "200055", "en-us", "510400", "Panzhihua", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200304", "200055", "en-us", "510500", "Luzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200305", "200055", "en-us", "510600", "Deyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200306", "200055", "en-us", "510700", "Mianyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200307", "200055", "en-us", "510800", "Guangyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200308", "200055", "en-us", "510900", "Suining", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200309", "200055", "en-us", "511000", "Neijiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200310", "200055", "en-us", "511100", "Leshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200311", "200055", "en-us", "511300", "Nanchong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200312", "200055", "en-us", "511400", "Meishan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200313", "200055", "en-us", "511500", "Yibin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200314", "200055", "en-us", "511600", "Guang'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200315", "200055", "en-us", "511700", "Dazhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200316", "200055", "en-us", "511800", "Ya'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200317", "200055", "en-us", "511900", "Bazhong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200318", "200055", "en-us", "512000", "Ziyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200319", "200055", "en-us", "513200", "Aba", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200320", "200055", "en-us", "513300", "Ganzi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200321", "200055", "en-us", "513400", "Liangshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200322", "200056", "en-us", "520100", "Guiyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200323", "200056", "en-us", "520200", "Liupanshui", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200324", "200056", "en-us", "520300", "Zunyi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200325", "200056", "en-us", "520400", "Anshun", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200326", "200056", "en-us", "520500", "Bijie", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200327", "200056", "en-us", "520600", "Tongren", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200328", "200056", "en-us", "522300", "Qianxinan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200329", "200056", "en-us", "522400", "Qiandongnan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200331", "200056", "en-us", "522600", "Qiannan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200332", "200057", "en-us", "530100", "Kunming", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200333", "200057", "en-us", "530300", "Qujing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200334", "200057", "en-us", "530400", "Yuxi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200335", "200057", "en-us", "530500", "Baoshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200336", "200057", "en-us", "530600", "Zhaotong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200337", "200057", "en-us", "530700", "Lijiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200338", "200057", "en-us", "530800", "Pu'er", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200339", "200057", "en-us", "530900", "Lincang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200340", "200057", "en-us", "532300", "Chuxiong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200341", "200057", "en-us", "532500", "Honghe", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200342", "200057", "en-us", "532600", "Wenshan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200343", "200057", "en-us", "532800", "Xishuangbanna", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200344", "200057", "en-us", "532900", "Dali", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200345", "200057", "en-us", "533100", "Dehong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200346", "200057", "en-us", "533300", "Nujiang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200347", "200057", "en-us", "533400", "Diqing", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200348", "200058", "en-us", "540100", "Lasa", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200349", "200058", "en-us", "540200", "Shigatse", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200350", "200058", "en-us", "540300", "Qamdo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200351", "200058", "en-us", "540400", "Nyingchi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200352", "200058", "en-us", "540500", "Shannan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200353", "200058", "en-us", "542400", "Nagqu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200354", "200058", "en-us", "542500", "Ngari", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200355", "200059", "en-us", "610100", "Xi'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200356", "200059", "en-us", "610200", "Tongchuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200357", "200059", "en-us", "610300", "Baoji", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200358", "200059", "en-us", "610400", "Xianyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200359", "200059", "en-us", "610500", "Weinan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200360", "200059", "en-us", "610600", "Yan'an", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200361", "200059", "en-us", "610700", "Hanzhong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200362", "200059", "en-us", "610800", "Yulin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200363", "200059", "en-us", "610900", "Ankang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200364", "200059", "en-us", "611000", "Shangluo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203640", "200059", "en-us", "611200", "Xixian New Area", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200365", "200060", "en-us", "620100", "Lanzhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200368", "200060", "en-us", "620200", "Jiayuguan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200369", "200060", "en-us", "620300", "Jinchang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200370", "200060", "en-us", "620400", "Baiyin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200371", "200060", "en-us", "620500", "Tianshui", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200372", "200060", "en-us", "620600", "Wuwei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200373", "200060", "en-us", "620700", "Zhangye", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200374", "200060", "en-us", "620800", "Pingliang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200375", "200060", "en-us", "620900", "Jiuquan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200376", "200060", "en-us", "621000", "Qingyang", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200377", "200060", "en-us", "621100", "Dingxi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200378", "200060", "en-us", "621200", "Longnan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200366", "200060", "en-us", "621300", "Lanzhou New Area", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200379", "200060", "en-us", "622900", "Linxia", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200380", "200060", "en-us", "623000", "Gannan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200381", "200061", "en-us", "630100", "Xining", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200382", "200061", "en-us", "630200", "Haidong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200383", "200061", "en-us", "632200", "Haibei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200384", "200061", "en-us", "632300", "Huangnan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200385", "200061", "en-us", "632500", "Hainan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200386", "200061", "en-us", "632600", "Guoluo", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200387", "200061", "en-us", "632700", "Yushu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200388", "200061", "en-us", "632800", "Haixi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200389", "200062", "en-us", "640100", "Yinchuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200390", "200062", "en-us", "640200", "Shizuishan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200391", "200062", "en-us", "640300", "Wuzhong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200392", "200062", "en-us", "640400", "Guyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200393", "200062", "en-us", "640500", "Zhongwei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200394", "200063", "en-us", "650100", "Urumchi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200395", "200063", "en-us", "650200", "Karamay", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200396", "200063", "en-us", "650400", "Turpan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200397", "200063", "en-us", "650500", "Kumul", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203662", "200063", "en-us", "650600", "Aral City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203664", "200063", "en-us", "650700", "Tiemenguan City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203666", "200063", "en-us", "650800", "Tumxuk City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203668", "200063", "en-us", "650900", "Kokdala City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203670", "200063", "en-us", "651000", "Shuanghe City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203672", "200063", "en-us", "651100", "Wujiaqu City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203674", "200063", "en-us", "651200", "Shihezi City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203676", "200063", "en-us", "651300", "Beitun City", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203678", "200063", "en-us", "651400", "Kunyu City Corps", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200398", "200063", "en-us", "652300", "Changji", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200399", "200063", "en-us", "652700", "Bozhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200400", "200063", "en-us", "652800", "Bazhou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200401", "200063", "en-us", "652900", "Akesu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200402", "200063", "en-us", "653000", "Kizilsu Kirghiz", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200403", "200063", "en-us", "653100", "Kashgar", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200404", "200063", "en-us", "653200", "Hotan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200405", "200063", "en-us", "654000", "Ili", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200406", "200063", "en-us", "654200", "Tacheng", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200407", "200063", "en-us", "654300", "Altay", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200408", "200064", "en-us", "710100", "Taipei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200409", "200064", "en-us", "710200", "Kaohsiung", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200410", "200064", "en-us", "710300", "Tainan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200411", "200064", "en-us", "710400", "Taichung", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200412", "200064", "en-us", "710500", "Nantou", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200413", "200064", "en-us", "710600", "Keelung", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200414", "200064", "en-us", "710700", "Hsinchu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200415", "200064", "en-us", "710800", "Jiayi", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200416", "200064", "en-us", "710900", "New Taipei", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200417", "200064", "en-us", "711000", "Yilan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200418", "200064", "en-us", "711100", "Taoyuan", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200419", "200064", "en-us", "711200", "Miaoli", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200420", "200064", "en-us", "711300", "Zhanghua", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200421", "200064", "en-us", "711400", "Yunlin", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200422", "200064", "en-us", "711500", "Pingtung", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200423", "200064", "en-us", "711600", "Taidong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200424", "200064", "en-us", "711700", "Hualien", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200425", "200064", "en-us", "711800", "Penghu", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200426", "200065", "en-us", "810100", "Hong Kong", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200427", "200066", "en-us", "820100", "Macao", "2", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200428", "200067", "en-us", "110101", "Dongcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200429", "200067", "en-us", "110102", "Xicheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200430", "200067", "en-us", "110105", "Chaoyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200431", "200067", "en-us", "110106", "Fengtai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200432", "200067", "en-us", "110107", "Shijingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200433", "200067", "en-us", "110108", "Haidian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200434", "200067", "en-us", "110109", "Mentougou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200435", "200067", "en-us", "110111", "Fangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200436", "200067", "en-us", "110112", "Tongzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200437", "200067", "en-us", "110113", "Shunyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200438", "200067", "en-us", "110114", "Changping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200439", "200067", "en-us", "110115", "Daxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200440", "200067", "en-us", "110116", "Huairou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200441", "200067", "en-us", "110117", "Pinggu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200442", "200067", "en-us", "110118", "Miyun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200443", "200067", "en-us", "110119", "Yanqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200444", "200068", "en-us", "120101", "Heping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200445", "200068", "en-us", "120102", "Hedong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200446", "200068", "en-us", "120103", "Hexi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200447", "200068", "en-us", "120104", "Nankai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200448", "200068", "en-us", "120105", "Hebei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200449", "200068", "en-us", "120106", "Hongqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200450", "200068", "en-us", "120110", "Dongli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200451", "200068", "en-us", "120111", "Xiqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200452", "200068", "en-us", "120112", "Jinnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200453", "200068", "en-us", "120113", "Beichen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200454", "200068", "en-us", "120114", "Wuqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200455", "200068", "en-us", "120115", "Baodi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200456", "200068", "en-us", "120116", "Binhai New District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200457", "200068", "en-us", "120117", "Ninghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200458", "200068", "en-us", "120118", "Jinghai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200459", "200068", "en-us", "120119", "Jizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200460", "200069", "en-us", "130102", "Chang'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200461", "200069", "en-us", "130104", "Qiaoxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200462", "200069", "en-us", "130105", "Xinhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200463", "200069", "en-us", "130107", "Jingxingkuang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200464", "200069", "en-us", "130108", "Yuhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200465", "200069", "en-us", "130109", "Gaocheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200466", "200069", "en-us", "130110", "Luquan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200467", "200069", "en-us", "130111", "Luancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200468", "200069", "en-us", "130121", "Jingxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200469", "200069", "en-us", "130123", "Zhengding County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200470", "200069", "en-us", "130125", "Xingtang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200471", "200069", "en-us", "130126", "Lingshou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200472", "200069", "en-us", "130127", "Gaoyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200473", "200069", "en-us", "130128", "Shenze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200474", "200069", "en-us", "130129", "Zanhuang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200475", "200069", "en-us", "130130", "Wuji County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200476", "200069", "en-us", "130131", "Pingshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200477", "200069", "en-us", "130132", "Yuanshi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200478", "200069", "en-us", "130133", "Zhao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200479", "200069", "en-us", "130183", "Jinzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200480", "200069", "en-us", "130184", "Xinle City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203685", "200069", "en-us", "130185", "High-tech Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200481", "200070", "en-us", "130202", "Lunan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200482", "200070", "en-us", "130203", "Lubei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200483", "200070", "en-us", "130204", "Guye District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200484", "200070", "en-us", "130205", "Kaiping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200485", "200070", "en-us", "130207", "Fengnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200486", "200070", "en-us", "130208", "Fengrun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200487", "200070", "en-us", "130209", "Caofeidian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200488", "200070", "en-us", "130223", "Luan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200489", "200070", "en-us", "130224", "Luannan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200490", "200070", "en-us", "130225", "Leting County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200491", "200070", "en-us", "130227", "Qianxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200492", "200070", "en-us", "130229", "Yutian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200493", "200070", "en-us", "130281", "Zunhua City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200494", "200070", "en-us", "130283", "Qian'an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203686", "200070", "en-us", "130284", "High-tech Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200495", "200071", "en-us", "130302", "Haigang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200496", "200071", "en-us", "130303", "Shanhaiguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200497", "200071", "en-us", "130304", "Beidaihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200498", "200071", "en-us", "130306", "Funing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200499", "200071", "en-us", "130321", "Qinglong Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200500", "200071", "en-us", "130322", "Changni County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200501", "200071", "en-us", "130324", "Lulong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200502", "200072", "en-us", "130402", "Hanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200503", "200072", "en-us", "130403", "Congtai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200504", "200072", "en-us", "130404", "Fuxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200505", "200072", "en-us", "130406", "Fengfengkuang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200508", "200072", "en-us", "130423", "Linzhang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200509", "200072", "en-us", "130424", "Cheng'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200510", "200072", "en-us", "130425", "Daming County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200511", "200072", "en-us", "130426", "She County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200512", "200072", "en-us", "130427", "Ci County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200506", "200072", "en-us", "130428", "Feixiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200507", "200072", "en-us", "130429", "yongnian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200513", "200072", "en-us", "130430", "Qiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200514", "200072", "en-us", "130431", "Jize County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200515", "200072", "en-us", "130432", "Guangping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200516", "200072", "en-us", "130433", "Guantao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200517", "200072", "en-us", "130434", "Wei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200518", "200072", "en-us", "130435", "Quzhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200519", "200072", "en-us", "130481", "Wu'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203684", "200072", "en-us", "130482", "Handan Economic Development Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203683", "200072", "en-us", "130483", "Yinan New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200520", "200073", "en-us", "130502", "Qiaodong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200521", "200073", "en-us", "130503", "Qiaoxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200522", "200073", "en-us", "130521", "Xingtai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200523", "200073", "en-us", "130522", "Lincheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200524", "200073", "en-us", "130523", "Neiqiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200525", "200073", "en-us", "130524", "Boxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200526", "200073", "en-us", "130525", "Longyao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200527", "200073", "en-us", "130526", "Ren County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200528", "200073", "en-us", "130527", "Nanhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200529", "200073", "en-us", "130528", "Ningjin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200530", "200073", "en-us", "130529", "Julu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200531", "200073", "en-us", "130530", "Xinhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200532", "200073", "en-us", "130531", "Guangzong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200533", "200073", "en-us", "130532", "Pingxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200534", "200073", "en-us", "130533", "Wei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200535", "200073", "en-us", "130534", "Qinghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200536", "200073", "en-us", "130535", "Linxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200537", "200073", "en-us", "130581", "Nangong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200538", "200073", "en-us", "130582", "Shahe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200539", "200074", "en-us", "130602", "Jingxie District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200540", "200074", "en-us", "130606", "Lianchi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200541", "200074", "en-us", "130607", "Mancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200542", "200074", "en-us", "130608", "Qingyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200543", "200074", "en-us", "130609", "Xushui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200544", "200074", "en-us", "130623", "Laishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200545", "200074", "en-us", "130624", "Fuping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200546", "200074", "en-us", "130626", "Dingxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200547", "200074", "en-us", "130627", "Tang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200548", "200074", "en-us", "130628", "Gaoyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200549", "200074", "en-us", "130629", "Rongcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200550", "200074", "en-us", "130630", "Laiyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200551", "200074", "en-us", "130631", "Wangdu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200552", "200074", "en-us", "130632", "Anxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200553", "200074", "en-us", "130633", "Yi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200554", "200074", "en-us", "130634", "Quyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200555", "200074", "en-us", "130635", "Li County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200556", "200074", "en-us", "130636", "Shunping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200557", "200074", "en-us", "130637", "Boye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200558", "200074", "en-us", "130638", "Xiong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200559", "200074", "en-us", "130681", "Zhuozhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200560", "200074", "en-us", "130683", "Anguo City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200561", "200074", "en-us", "130684", "Gaobeidian City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203687", "200074", "en-us", "130685", "High-tech Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200562", "200075", "en-us", "130702", "Qiaodong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200563", "200075", "en-us", "130703", "Qiaoxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200564", "200075", "en-us", "130705", "Xuanhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200565", "200075", "en-us", "130706", "Xiahuayuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200566", "200075", "en-us", "130708", "Wanquan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200567", "200075", "en-us", "130709", "Chongli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200568", "200075", "en-us", "130722", "Zhangbei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200569", "200075", "en-us", "130723", "Kangbao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200570", "200075", "en-us", "130724", "Guyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200571", "200075", "en-us", "130725", "Shangyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200572", "200075", "en-us", "130726", "Wei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200573", "200075", "en-us", "130727", "Yangyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200574", "200075", "en-us", "130728", "Huai'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200575", "200075", "en-us", "130730", "Huailai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200576", "200075", "en-us", "130731", "Zhuolu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200577", "200075", "en-us", "130732", "Chicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200578", "200076", "en-us", "130802", "Shuangqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200579", "200076", "en-us", "130803", "Shuangluan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200580", "200076", "en-us", "130804", "Yingshouyingzikuang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200581", "200076", "en-us", "130821", "Chengde County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200582", "200076", "en-us", "130822", "Xinglong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200588", "200076", "en-us", "130823", "Pingquan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200583", "200076", "en-us", "130824", "Luanping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200584", "200076", "en-us", "130825", "Longhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200585", "200076", "en-us", "130826", "Manchu Autonomous County of Fengning", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200586", "200076", "en-us", "130827", "Kuancheng Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200587", "200076", "en-us", "130828", "|Weichang Manchu and Mongol Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203688", "200076", "en-us", "130830", "High-tech Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200589", "200077", "en-us", "130902", "Xinhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200590", "200077", "en-us", "130903", "Yunhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200591", "200077", "en-us", "130921", "Cang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200592", "200077", "en-us", "130922", "Qing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200593", "200077", "en-us", "130923", "Dongguang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200594", "200077", "en-us", "130924", "Haixiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200595", "200077", "en-us", "130925", "Yanshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200596", "200077", "en-us", "130926", "Suning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200597", "200077", "en-us", "130927", "Nanpi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200598", "200077", "en-us", "130928", "Wuqiao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200599", "200077", "en-us", "130929", "Xian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200600", "200077", "en-us", "130930", "Mengcun Hui Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200601", "200077", "en-us", "130981", "Botou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200602", "200077", "en-us", "130982", "Renqiu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200603", "200077", "en-us", "130983", "Huanghua City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200604", "200077", "en-us", "130984", "Hejian City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203682", "200077", "en-us", "130985", "High-tech Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200605", "200078", "en-us", "131002", "Anci District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200606", "200078", "en-us", "131003", "Guangyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200607", "200078", "en-us", "131022", "Guan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200608", "200078", "en-us", "131023", "Yongqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200609", "200078", "en-us", "131024", "Xianghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200610", "200078", "en-us", "131025", "Dacheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200611", "200078", "en-us", "131026", "Wen'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200612", "200078", "en-us", "131028", "Dachang Hui Autonomy County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200613", "200078", "en-us", "131081", "Bazhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200614", "200078", "en-us", "131082", "Sanhe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200615", "200079", "en-us", "131102", "Taocheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200616", "200079", "en-us", "131103", "Jizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200617", "200079", "en-us", "131121", "Zaoqiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200618", "200079", "en-us", "131122", "Wuyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200619", "200079", "en-us", "131123", "Wuqiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200620", "200079", "en-us", "131124", "Raoyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200621", "200079", "en-us", "131125", "Anping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200622", "200079", "en-us", "131126", "Gucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200623", "200079", "en-us", "131127", "Jing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200624", "200079", "en-us", "131128", "Fucheng Xian", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200625", "200079", "en-us", "131182", "Shenzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203680", "200079", "en-us", "131183", "High-tech Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203681", "200079", "en-us", "131184", "Binhu New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203657", "203656", "en-us", "131201", "Dingzhou", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203659", "203658", "en-us", "131301", "Xinji", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200626", "200080", "en-us", "140105", "Xiaodian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200627", "200080", "en-us", "140106", "Yingze District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200628", "200080", "en-us", "140107", "Xinghualing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200629", "200080", "en-us", "140108", "Jiancaoping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200630", "200080", "en-us", "140109", "Wanbolin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200631", "200080", "en-us", "140110", "Jinyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200632", "200080", "en-us", "140121", "Xingxu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200633", "200080", "en-us", "140122", "Yangqu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200634", "200080", "en-us", "140123", "Loufan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200635", "200080", "en-us", "140181", "Gujiao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200636", "200081", "en-us", "140202", "Cheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200637", "200081", "en-us", "140203", "Mining Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200638", "200081", "en-us", "140211", "Nanjiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200639", "200081", "en-us", "140212", "Xinrong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200640", "200081", "en-us", "140221", "Yanggao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200641", "200081", "en-us", "140222", "Tianzhen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200642", "200081", "en-us", "140223", "Guangling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200643", "200081", "en-us", "140224", "Lingqiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200644", "200081", "en-us", "140225", "Huanyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200645", "200081", "en-us", "140226", "Zuoyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200646", "200081", "en-us", "140227", "Datong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200647", "200082", "en-us", "140302", "Downtown Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200648", "200082", "en-us", "140303", "Mining Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200649", "200082", "en-us", "140311", "Suburb Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200650", "200082", "en-us", "140321", "Pingding County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200651", "200082", "en-us", "140322", "Meng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200652", "200083", "en-us", "140402", "Downtown Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200653", "200083", "en-us", "140411", "Suburb Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200654", "200083", "en-us", "140421", "Changzhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200655", "200083", "en-us", "140423", "Xiangyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200656", "200083", "en-us", "140424", "Tunliu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200657", "200083", "en-us", "140425", "Pingshun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200658", "200083", "en-us", "140426", "Licheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200659", "200083", "en-us", "140427", "Huguan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200660", "200083", "en-us", "140428", "Zhangzi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200661", "200083", "en-us", "140429", "Wuxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200662", "200083", "en-us", "140430", "Qin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200663", "200083", "en-us", "140431", "Qinyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200664", "200083", "en-us", "140481", "Lucheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200665", "200084", "en-us", "140502", "Downtown Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200666", "200084", "en-us", "140521", "Qinshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200667", "200084", "en-us", "140522", "Yangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200668", "200084", "en-us", "140524", "Lingchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200669", "200084", "en-us", "140525", "Zezhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200670", "200084", "en-us", "140581", "Gaoping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200671", "200085", "en-us", "140602", "Sucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200672", "200085", "en-us", "140603", "Pinglu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200673", "200085", "en-us", "140621", "Shanyin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200674", "200085", "en-us", "140622", "Ying County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200675", "200085", "en-us", "140623", "Youyu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200676", "200085", "en-us", "140624", "Huairen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200677", "200086", "en-us", "140702", "Yuci District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200678", "200086", "en-us", "140721", "Yushe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200679", "200086", "en-us", "140722", "Zuoquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200680", "200086", "en-us", "140723", "Heshun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200681", "200086", "en-us", "140724", "Ziyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200682", "200086", "en-us", "140725", "Shouyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200683", "200086", "en-us", "140726", "Taigu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200684", "200086", "en-us", "140727", "Qi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200685", "200086", "en-us", "140728", "Pingyao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200686", "200086", "en-us", "140729", "Lingshi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200687", "200086", "en-us", "140781", "Jiexiu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200688", "200087", "en-us", "140802", "Yanhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200689", "200087", "en-us", "140821", "Linyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200690", "200087", "en-us", "140822", "Wanrong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200691", "200087", "en-us", "140823", "Wenxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200692", "200087", "en-us", "140824", "Jishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200693", "200087", "en-us", "140825", "Xinjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200694", "200087", "en-us", "140826", "Jiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200695", "200087", "en-us", "140827", "Yuanqu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200696", "200087", "en-us", "140828", "Xia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200697", "200087", "en-us", "140829", "Pinglu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200698", "200087", "en-us", "140830", "Ruicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200699", "200087", "en-us", "140881", "Yongji City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200700", "200087", "en-us", "140882", "Hejin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200701", "200088", "en-us", "140902", "Xinfu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200702", "200088", "en-us", "140921", "Dingxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200703", "200088", "en-us", "140922", "Wutai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200704", "200088", "en-us", "140923", "Dai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200705", "200088", "en-us", "140924", "Fanshi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200706", "200088", "en-us", "140925", "Ningwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200707", "200088", "en-us", "140926", "Jingle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200708", "200088", "en-us", "140927", "Shenchi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200709", "200088", "en-us", "140928", "Wuzhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200710", "200088", "en-us", "140929", "Kelan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200711", "200088", "en-us", "140930", "Hequ County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200712", "200088", "en-us", "140931", "Baode County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200713", "200088", "en-us", "140932", "Pianguan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200714", "200088", "en-us", "140981", "Yuanping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200715", "200089", "en-us", "141002", "Raodu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200716", "200089", "en-us", "141021", "Quwo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200717", "200089", "en-us", "141022", "Yicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200718", "200089", "en-us", "141023", "Xiangfen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200719", "200089", "en-us", "141024", "Hongdong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200720", "200089", "en-us", "141025", "Gu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200721", "200089", "en-us", "141026", "Anze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200722", "200089", "en-us", "141027", "Fushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200723", "200089", "en-us", "141028", "Ji County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200724", "200089", "en-us", "141029", "Xiangning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200725", "200089", "en-us", "141030", "Daning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200726", "200089", "en-us", "141031", "Xi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200727", "200089", "en-us", "141032", "Yonghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200728", "200089", "en-us", "141033", "Pu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200729", "200089", "en-us", "141034", "Fenxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200730", "200089", "en-us", "141081", "Houma City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200731", "200089", "en-us", "141082", "Huozhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200732", "200090", "en-us", "141102", "Lishi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200733", "200090", "en-us", "141121", "Wenshi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200734", "200090", "en-us", "141122", "Jiaocheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200735", "200090", "en-us", "141123", "Xing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200736", "200090", "en-us", "141124", "Lin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200737", "200090", "en-us", "141125", "Liulin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200738", "200090", "en-us", "141126", "Shilou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200739", "200090", "en-us", "141127", "Lan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200740", "200090", "en-us", "141128", "Fanshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200741", "200090", "en-us", "141129", "Zhongyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200742", "200090", "en-us", "141130", "Jiaokou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200743", "200090", "en-us", "141181", "Xiaoyi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200744", "200090", "en-us", "141182", "Fenyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200745", "200091", "en-us", "150102", "Xincheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200746", "200091", "en-us", "150103", "Huiming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200747", "200091", "en-us", "150104", "Yuquan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200748", "200091", "en-us", "150105", "Saihan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200749", "200091", "en-us", "150121", "Tumd Left Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200750", "200091", "en-us", "150122", "Togtoh county", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200751", "200091", "en-us", "150123", "Horinger County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200752", "200091", "en-us", "150124", "Qingshuihe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200753", "200091", "en-us", "150125", "Wuchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200754", "200092", "en-us", "150202", "Donghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200755", "200092", "en-us", "150203", "Hondlon District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200756", "200092", "en-us", "150204", "Qingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200757", "200092", "en-us", "150205", "Shiguai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200758", "200092", "en-us", "150206", "Bayan Obo Mining District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200759", "200092", "en-us", "150207", "Jiuyuen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200760", "200092", "en-us", "150221", "Tumd Right Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200761", "200092", "en-us", "150222", "Guyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200762", "200092", "en-us", "150223", "Darhan Muminggan Joint Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200763", "200093", "en-us", "150302", "Haibowan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200764", "200093", "en-us", "150303", "Hainan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200765", "200093", "en-us", "150304", "Wuda District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200766", "200094", "en-us", "150402", "Hongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200767", "200094", "en-us", "150403", "Yuanbaoshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200768", "200094", "en-us", "150404", "Songshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200769", "200094", "en-us", "150421", "Ar Horqin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200770", "200094", "en-us", "150422", "Ba Lin Zuo Qi", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200771", "200094", "en-us", "150423", "Ba Lin You Qi", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200772", "200094", "en-us", "150424", "Linxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200773", "200094", "en-us", "150425", "Hexigten Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200774", "200094", "en-us", "150426", "Ongniud Bannar", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200775", "200094", "en-us", "150428", "Harqin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200776", "200094", "en-us", "150429", "Ningcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200777", "200094", "en-us", "150430", "Aohan Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200778", "200095", "en-us", "150502", "Horqin District)", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200779", "200095", "en-us", "150521", "Horqin Left Wing Middle Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200780", "200095", "en-us", "150522", "Horqin Left Wing Rear Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200781", "200095", "en-us", "150523", "Kailu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200782", "200095", "en-us", "150524", "Kulun flag", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200783", "200095", "en-us", "150525", "Naiman Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200784", "200095", "en-us", "150526", "Jarud Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200785", "200095", "en-us", "150581", "Holingola City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200786", "200096", "en-us", "150602", "Dongsheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200787", "200096", "en-us", "150603", "Kangbashi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200788", "200096", "en-us", "150621", "Dalad Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200789", "200096", "en-us", "150622", "Jungar Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200790", "200096", "en-us", "150623", "Otog Front Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200791", "200096", "en-us", "150624", "Etuoke Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200792", "200096", "en-us", "150625", "Hanggin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200793", "200096", "en-us", "150626", "Uxin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200794", "200096", "en-us", "150627", "Ejin Horo Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200795", "200097", "en-us", "150702", "Hailaer District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200796", "200097", "en-us", "150703", "Dalai Nur District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200797", "200097", "en-us", "150721", "Arun Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200798", "200097", "en-us", "150722", "Daur Autonomous Banner of Morin Dawa", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200799", "200097", "en-us", "150723", "Oroqen Autonomous Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200800", "200097", "en-us", "150724", "Ewenki Autonomous Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200801", "200097", "en-us", "150725", "Prairie Chenbarhu Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200802", "200097", "en-us", "150726", "Xin Barag Left Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200803", "200097", "en-us", "150727", "Xin Barag Right Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200804", "200097", "en-us", "150781", "Manzhouli City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200805", "200097", "en-us", "150782", "Yakeshi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200806", "200097", "en-us", "150783", "Zhalantun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200807", "200097", "en-us", "150784", "Ergun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200808", "200097", "en-us", "150785", "Genhe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200809", "200098", "en-us", "150802", "Linhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200810", "200098", "en-us", "150821", "Wuyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200811", "200098", "en-us", "150822", "Dengkou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200812", "200098", "en-us", "150823", "Urad Front Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200813", "200098", "en-us", "150824", "Urad Middle Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200814", "200098", "en-us", "150825", "Urad Rear Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200815", "200098", "en-us", "150826", "Hanggin Rear Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200816", "200099", "en-us", "150902", "Jining District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200817", "200099", "en-us", "150921", "Zhuozi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200818", "200099", "en-us", "150922", "Huade County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200819", "200099", "en-us", "150923", "Shangdu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200820", "200099", "en-us", "150924", "Xinghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200821", "200099", "en-us", "150925", "Liangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200822", "200099", "en-us", "150926", "Chahar Right Wing Front Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200823", "200099", "en-us", "150927", "Chahar Right Wing Middle Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200824", "200099", "en-us", "150928", "Chahar Right Wing Rear Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200825", "200099", "en-us", "150929", "Siziwang Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200826", "200099", "en-us", "150981", "Fengzhen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200827", "200100", "en-us", "152201", "Ulanhot City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200828", "200100", "en-us", "152202", "Arxan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200829", "200100", "en-us", "152221", "Horqin Right Wing Front Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200830", "200100", "en-us", "152222", "Horqin Right Wing Middle Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200831", "200100", "en-us", "152223", "Jalaid Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200832", "200100", "en-us", "152224", "Tuquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200833", "200101", "en-us", "152501", "Erenhot City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200834", "200101", "en-us", "152502", "Xilinhaote City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200835", "200101", "en-us", "152522", "Abag Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200836", "200101", "en-us", "152523", "Sonid Left Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200837", "200101", "en-us", "152524", "Sonid Right Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200838", "200101", "en-us", "152525", "Dong Ujimqin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200839", "200101", "en-us", "152526", "Xi Ujimqin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200840", "200101", "en-us", "152527", "Taibus Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200841", "200101", "en-us", "152528", "Xianghuang Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200842", "200101", "en-us", "152529", "Zhengxiangbai Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200843", "200101", "en-us", "152530", "Zhenglan Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200844", "200101", "en-us", "152531", "Duolun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200845", "200102", "en-us", "152921", "Alxa Left Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200846", "200102", "en-us", "152922", "Alxa Right Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200847", "200102", "en-us", "152923", "Ejin Banner", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200848", "200103", "en-us", "210102", "Heping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200849", "200103", "en-us", "210103", "Shenhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200850", "200103", "en-us", "210104", "Dadong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200851", "200103", "en-us", "210105", "Huanggu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200852", "200103", "en-us", "210106", "Tiexi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200853", "200103", "en-us", "210111", "Sujiatun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200854", "200103", "en-us", "210112", "Hunnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200855", "200103", "en-us", "210113", "Shenbeixin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200856", "200103", "en-us", "210114", "Yuhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200857", "200103", "en-us", "210115", "Liaozhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200858", "200103", "en-us", "210123", "Kangping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200859", "200103", "en-us", "210124", "Faku County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200860", "200103", "en-us", "210181", "Xinmin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200861", "200104", "en-us", "210202", "Zhongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200862", "200104", "en-us", "210203", "Xigang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200863", "200104", "en-us", "210204", "Shahe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200864", "200104", "en-us", "210211", "Ganjingzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200865", "200104", "en-us", "210212", "Lvshunkou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200866", "200104", "en-us", "210213", "Jinzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200867", "200104", "en-us", "210214", "Pulandian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200868", "200104", "en-us", "210224", "Changhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200869", "200104", "en-us", "210281", "Wafangdian City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200870", "200104", "en-us", "210283", "Zhuanghe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200871", "200105", "en-us", "210302", "Tiedong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200872", "200105", "en-us", "210303", "Tiexi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200873", "200105", "en-us", "210304", "Lishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200874", "200105", "en-us", "210311", "Qianshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200875", "200105", "en-us", "210321", "Taian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200876", "200105", "en-us", "210323", "Xiuyan Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200877", "200105", "en-us", "210381", "Haicheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200878", "200106", "en-us", "210402", "Xinfu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200879", "200106", "en-us", "210403", "Dongzhou Distric", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200880", "200106", "en-us", "210404", "Wanghua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200881", "200106", "en-us", "210411", "Shuncheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200882", "200106", "en-us", "210421", "Fushun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200883", "200106", "en-us", "210422", "Xinbin Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200884", "200106", "en-us", "210423", "Qingyuan Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200885", "200107", "en-us", "210502", "Pingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200886", "200107", "en-us", "210503", "Xihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200887", "200107", "en-us", "210504", "Mingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200888", "200107", "en-us", "210505", "Nanfen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200889", "200107", "en-us", "210521", "Benxi Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200890", "200107", "en-us", "210522", "Huanren Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200891", "200108", "en-us", "210602", "Yuanbao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200892", "200108", "en-us", "210603", "Zhenxiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200893", "200108", "en-us", "210604", "Zhen'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200894", "200108", "en-us", "210624", "Kuandian Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200895", "200108", "en-us", "210681", "Dongang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200896", "200108", "en-us", "210682", "Fengcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200897", "200109", "en-us", "210702", "Guta District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200898", "200109", "en-us", "210703", "Linghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200899", "200109", "en-us", "210711", "Taihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200900", "200109", "en-us", "210726", "Heishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200901", "200109", "en-us", "210727", "Yi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200902", "200109", "en-us", "210781", "Linghai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200903", "200109", "en-us", "210782", "Beizhen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200904", "200110", "en-us", "210802", "Zhanqian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200905", "200110", "en-us", "210803", "Xishi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200906", "200110", "en-us", "210804", "Bayuqian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200907", "200110", "en-us", "210811", "Laobian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200908", "200110", "en-us", "210881", "Gaizhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200909", "200110", "en-us", "210882", "Dashiqiao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200910", "200111", "en-us", "210902", "Haizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200911", "200111", "en-us", "210903", "Xinqiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200912", "200111", "en-us", "210904", "Taiping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200913", "200111", "en-us", "210905", "Qinghemen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200914", "200111", "en-us", "210911", "Xihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200915", "200111", "en-us", "210921", "Fu Xin Mongolian Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200916", "200111", "en-us", "210922", "Zhangwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200917", "200112", "en-us", "211002", "Baita District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200918", "200112", "en-us", "211003", "Wensheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200919", "200112", "en-us", "211004", "Hongwei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200920", "200112", "en-us", "211005", "Gongchangling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200921", "200112", "en-us", "211011", "Taizihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200922", "200112", "en-us", "211021", "Liaoyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200923", "200112", "en-us", "211081", "Dengta City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200924", "200113", "en-us", "211102", "Shuangtaizi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200925", "200113", "en-us", "211103", "Xinglongtai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200926", "200113", "en-us", "211104", "Dawa District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200927", "200113", "en-us", "211122", "Panshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200928", "200114", "en-us", "211202", "Yinzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200929", "200114", "en-us", "211204", "Qinghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200930", "200114", "en-us", "211221", "Tieling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200931", "200114", "en-us", "211223", "Xifeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200932", "200114", "en-us", "211224", "Changtu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200933", "200114", "en-us", "211281", "Diaobingshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200934", "200114", "en-us", "211282", "Kaiyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200935", "200115", "en-us", "211302", "Shuangta District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200936", "200115", "en-us", "211303", "Longcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200937", "200115", "en-us", "211321", "Chaoyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200938", "200115", "en-us", "211322", "Jianping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200939", "200115", "en-us", "211324", "Harqin Zuoyi Mongol Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200940", "200115", "en-us", "211381", "Beipiao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200941", "200115", "en-us", "211382", "Lingyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200942", "200116", "en-us", "211402", "Lianshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200943", "200116", "en-us", "211403", "Longgang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200944", "200116", "en-us", "211404", "Nanpiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200945", "200116", "en-us", "211421", "Suizhong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200946", "200116", "en-us", "211422", "Jianchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200947", "200116", "en-us", "211481", "Xingcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200948", "200117", "en-us", "220102", "Nanguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200949", "200117", "en-us", "220103", "Kuanchang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200950", "200117", "en-us", "220104", "Chaoyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200951", "200117", "en-us", "220105", "Erdao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200952", "200117", "en-us", "220106", "Lvyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200953", "200117", "en-us", "220112", "Shuangyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200954", "200117", "en-us", "220113", "Jiutai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200955", "200117", "en-us", "220122", "Long'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200956", "200117", "en-us", "220182", "Yushu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200957", "200117", "en-us", "220183", "Dehui City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200958", "200118", "en-us", "220202", "Changyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200959", "200118", "en-us", "220203", "Longtan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200960", "200118", "en-us", "220204", "Chuangying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200961", "200118", "en-us", "220211", "Fengman Qu", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200962", "200118", "en-us", "220221", "Yongji County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200963", "200118", "en-us", "220281", "Jiaohe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200964", "200118", "en-us", "220282", "Huadian City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200965", "200118", "en-us", "220283", "Shulan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200966", "200118", "en-us", "220284", "Panshi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200967", "200119", "en-us", "220302", "Tiexi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200968", "200119", "en-us", "220303", "Tiedong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200969", "200119", "en-us", "220322", "Lishu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200970", "200119", "en-us", "220323", "Yitong Manchu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200971", "200119", "en-us", "220381", "Gongzhuling City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200972", "200119", "en-us", "220382", "Shuangliao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200973", "200120", "en-us", "220402", "Longshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200974", "200120", "en-us", "220403", "Xi'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200975", "200120", "en-us", "220421", "Dongfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200976", "200120", "en-us", "220422", "Dongliao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200977", "200121", "en-us", "220502", "Dongchang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200978", "200121", "en-us", "220503", "Erdaojiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200979", "200121", "en-us", "220521", "Tonghua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200980", "200121", "en-us", "220523", "Huinan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200981", "200121", "en-us", "220524", "Liuhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200982", "200121", "en-us", "220581", "Meihekou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200983", "200121", "en-us", "220582", "Ji'an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200984", "200122", "en-us", "220602", "Hunjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200985", "200122", "en-us", "220605", "Jiangyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200986", "200122", "en-us", "220621", "Fusong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200987", "200122", "en-us", "220622", "Jingyu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200988", "200122", "en-us", "220623", "Korean Autonomous County of Changbai", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200989", "200122", "en-us", "220681", "Linjiang Disrtict", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200990", "200123", "en-us", "220702", "Ningjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200991", "200123", "en-us", "220721", "Mongolian Autonomous County of Qian Gorlos", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200992", "200123", "en-us", "220722", "Changling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200993", "200123", "en-us", "220723", "Qian'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200994", "200123", "en-us", "220781", "Fuyu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200995", "200124", "en-us", "220802", "Taobei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200996", "200124", "en-us", "220821", "Zhenlai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200997", "200124", "en-us", "220822", "Tongyu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200998", "200124", "en-us", "220881", "Taonan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200999", "200124", "en-us", "220882", "Da'an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201000", "200125", "en-us", "222401", "Yanji City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201001", "200125", "en-us", "222402", "Tumen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201002", "200125", "en-us", "222403", "Dunhua City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201003", "200125", "en-us", "222404", "Hunchun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201004", "200125", "en-us", "222405", "Longjing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201005", "200125", "en-us", "222406", "Helong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201006", "200125", "en-us", "222424", "Wangqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201007", "200125", "en-us", "222426", "Antu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201008", "200126", "en-us", "230102", "Daoli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201009", "200126", "en-us", "230103", "Nangang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201010", "200126", "en-us", "230104", "Daowai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201011", "200126", "en-us", "230108", "Pingfang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201012", "200126", "en-us", "230109", "Songbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201013", "200126", "en-us", "230110", "Xiangfang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201014", "200126", "en-us", "230111", "Hulan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201015", "200126", "en-us", "230112", "Achen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201016", "200126", "en-us", "230113", "Shuangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201017", "200126", "en-us", "230123", "Yilan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201018", "200126", "en-us", "230124", "Fangzheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201019", "200126", "en-us", "230125", "Bin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201020", "200126", "en-us", "230126", "Bayan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201021", "200126", "en-us", "230127", "Mulan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201022", "200126", "en-us", "230128", "Tonghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201023", "200126", "en-us", "230129", "Yanshou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201024", "200126", "en-us", "230183", "Shangzhi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201025", "200126", "en-us", "230184", "Wuchang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201026", "200127", "en-us", "230202", "Longsha District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201027", "200127", "en-us", "230203", "Jianhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201028", "200127", "en-us", "230204", "Tiefeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201029", "200127", "en-us", "230205", "Ang'angxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201030", "200127", "en-us", "230206", "Fulaerji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201031", "200127", "en-us", "230207", "Nianzishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201032", "200127", "en-us", "230208", "Meilisi Daur District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201033", "200127", "en-us", "230221", "Longjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201039", "200127", "en-us", "230230", "Kedong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201040", "200127", "en-us", "230231", "Baiquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201034", "200127", "en-us", "230240", "Yi'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201035", "200127", "en-us", "230241", "Tailai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201036", "200127", "en-us", "230242", "Gannan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201037", "200127", "en-us", "230243", "Fuyu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201038", "200127", "en-us", "230244", "Keshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201041", "200127", "en-us", "230245", "Nehe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201042", "200128", "en-us", "230302", "Jiguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201043", "200128", "en-us", "230303", "Hengshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201044", "200128", "en-us", "230304", "Didao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201045", "200128", "en-us", "230305", "Lishu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201046", "200128", "en-us", "230306", "Chengzihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201047", "200128", "en-us", "230307", "Mashan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201048", "200128", "en-us", "230321", "Jidong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201049", "200128", "en-us", "230381", "Hulin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201050", "200128", "en-us", "230382", "Mishan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201051", "200129", "en-us", "230402", "Xiangyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201052", "200129", "en-us", "230403", "Gongnong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201053", "200129", "en-us", "230404", "Nanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201054", "200129", "en-us", "230405", "Xing'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201055", "200129", "en-us", "230406", "Dongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201056", "200129", "en-us", "230407", "Xingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201057", "200129", "en-us", "230421", "Luobei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201058", "200129", "en-us", "230422", "Suibin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201059", "200130", "en-us", "230502", "Jianshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201060", "200130", "en-us", "230503", "Lingdong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201061", "200130", "en-us", "230505", "Sifangtai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201062", "200130", "en-us", "230506", "Baoshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201063", "200130", "en-us", "230521", "Jixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201064", "200130", "en-us", "230522", "Youyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201065", "200130", "en-us", "230523", "Baoqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201066", "200130", "en-us", "230524", "Raohe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201067", "200131", "en-us", "230602", "Saertu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201068", "200131", "en-us", "230603", "Longfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201069", "200131", "en-us", "230604", "Ranghulu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201070", "200131", "en-us", "230605", "Honggang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201071", "200131", "en-us", "230606", "Datong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201072", "200131", "en-us", "230621", "Zhaozhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201073", "200131", "en-us", "230622", "Zhaoyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201074", "200131", "en-us", "230623", "Lindian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201075", "200131", "en-us", "230624", "Duerbert Mongol Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201076", "200132", "en-us", "230702", "Yichun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201077", "200132", "en-us", "230703", "Nancha District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201078", "200132", "en-us", "230704", "Youhao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201079", "200132", "en-us", "230705", "Xilin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201080", "200132", "en-us", "230706", "Cuiluan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201081", "200132", "en-us", "230707", "Xinqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201082", "200132", "en-us", "230708", "Meixi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201083", "200132", "en-us", "230709", "Jinshantun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201084", "200132", "en-us", "230710", "Wuying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201085", "200132", "en-us", "230711", "Wumahe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201086", "200132", "en-us", "230712", "Tangwanghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201087", "200132", "en-us", "230713", "Dailing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201088", "200132", "en-us", "230714", "Wuyiling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201089", "200132", "en-us", "230715", "Hongxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201090", "200132", "en-us", "230716", "Shanganling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201091", "200132", "en-us", "230722", "Jiayin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201092", "200132", "en-us", "230781", "Tieli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201093", "200133", "en-us", "230803", "Xiangyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201094", "200133", "en-us", "230804", "Qianjin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201095", "200133", "en-us", "230805", "Dongfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201096", "200133", "en-us", "230811", "Suburb Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201097", "200133", "en-us", "230822", "Huanan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201098", "200133", "en-us", "230826", "Huachuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201099", "200133", "en-us", "230828", "Tangyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201100", "200133", "en-us", "230881", "Tongjiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201101", "200133", "en-us", "230882", "Fujin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201102", "200133", "en-us", "230883", "Fuyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201103", "200134", "en-us", "230902", "Xinxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201104", "200134", "en-us", "230903", "Taoshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201105", "200134", "en-us", "230904", "Qiezihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201106", "200134", "en-us", "230921", "Boli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201107", "200135", "en-us", "231002", "Dongan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201108", "200135", "en-us", "231003", "Yangming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201109", "200135", "en-us", "231004", "Aimin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201110", "200135", "en-us", "231005", "Xi'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201111", "200135", "en-us", "231025", "Linkou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201112", "200135", "en-us", "231081", "Suifenhe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201113", "200135", "en-us", "231083", "Hailin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201114", "200135", "en-us", "231084", "ning'an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201115", "200135", "en-us", "231085", "Muling City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201116", "200135", "en-us", "231086", "Dongning City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201117", "200136", "en-us", "231102", "Aihui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201118", "200136", "en-us", "231121", "Nenjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201119", "200136", "en-us", "231123", "Xunke County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201120", "200136", "en-us", "231124", "Sunwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201121", "200136", "en-us", "231181", "Bei'an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201122", "200136", "en-us", "231182", "Wudalianchi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201123", "200137", "en-us", "231202", "Beilin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201124", "200137", "en-us", "231221", "Wangkui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201125", "200137", "en-us", "231222", "Lanxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201126", "200137", "en-us", "231223", "Qinggang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201127", "200137", "en-us", "231224", "Qing’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201128", "200137", "en-us", "231225", "Mingshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201129", "200137", "en-us", "231226", "Suiling Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201130", "200137", "en-us", "231281", "Anda City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201131", "200137", "en-us", "231282", "Zhaodong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201132", "200137", "en-us", "231283", "Hailun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201133", "200138", "en-us", "232701", "Jiagedaqi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203691", "200138", "en-us", "232702", "Songling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203689", "200138", "en-us", "232703", "Xinlin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203690", "200138", "en-us", "232704", "Huzhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201134", "200138", "en-us", "232721", "Huma County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201135", "200138", "en-us", "232722", "Tahe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201136", "200138", "en-us", "232723", "Mohe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201137", "200139", "en-us", "310101", "Huangpu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201138", "200139", "en-us", "310104", "Xuhui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201139", "200139", "en-us", "310105", "Changning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201140", "200139", "en-us", "310106", "Jing'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201141", "200139", "en-us", "310107", "Putuo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201142", "200139", "en-us", "310109", "Hongkou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201143", "200139", "en-us", "310110", "Yangpu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201144", "200139", "en-us", "310112", "Minhang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201145", "200139", "en-us", "310113", "Baoshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201146", "200139", "en-us", "310114", "Jiading District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201147", "200139", "en-us", "310115", "Pudong New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201148", "200139", "en-us", "310116", "Jinshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201149", "200139", "en-us", "310117", "Songjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201150", "200139", "en-us", "310118", "Qingpu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201151", "200139", "en-us", "310120", "Fengxian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201152", "200139", "en-us", "310151", "Chongming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201153", "200140", "en-us", "320102", "Xuanwu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201154", "200140", "en-us", "320104", "Qinhuai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201155", "200140", "en-us", "320105", "Jianye District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201156", "200140", "en-us", "320106", "Gulou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201157", "200140", "en-us", "320111", "Pukou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201158", "200140", "en-us", "320113", "Qixia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201159", "200140", "en-us", "320114", "Yuhuatai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201160", "200140", "en-us", "320115", "Jiangning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201161", "200140", "en-us", "320116", "Luhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201162", "200140", "en-us", "320117", "Lishui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201163", "200140", "en-us", "320118", "Gaochun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201164", "200141", "en-us", "320205", "Xishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201165", "200141", "en-us", "320206", "Huishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201166", "200141", "en-us", "320211", "Binhu Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201167", "200141", "en-us", "320213", "Liangxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201168", "200141", "en-us", "320214", "Xinwu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201169", "200141", "en-us", "320281", "Jiangyin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201170", "200141", "en-us", "320282", "Yixing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201171", "200142", "en-us", "320302", "Gulou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201172", "200142", "en-us", "320303", "Yunlong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201173", "200142", "en-us", "320305", "Jiawang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201174", "200142", "en-us", "320311", "Quanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201175", "200142", "en-us", "320312", "Tongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201176", "200142", "en-us", "320321", "Fengxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201177", "200142", "en-us", "320322", "Pei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201178", "200142", "en-us", "320324", "Suining County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201179", "200142", "en-us", "320381", "Xinyi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201180", "200142", "en-us", "320382", "Pizhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201181", "200143", "en-us", "320402", "Tianning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201182", "200143", "en-us", "320404", "Zhonglou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201183", "200143", "en-us", "320411", "Xinbei Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201184", "200143", "en-us", "320412", "Wujin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201185", "200143", "en-us", "320413", "Jintan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201186", "200143", "en-us", "320481", "Liyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201187", "200144", "en-us", "320505", "Huqiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201188", "200144", "en-us", "320506", "Wuzhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201189", "200144", "en-us", "320507", "Xiangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201190", "200144", "en-us", "320508", "Gusu Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201191", "200144", "en-us", "320509", "Wujiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201192", "200144", "en-us", "320581", "Changshu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201193", "200144", "en-us", "320582", "Zhangjiagang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201194", "200144", "en-us", "320583", "Kunshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201195", "200144", "en-us", "320585", "Taicang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201196", "200145", "en-us", "320602", "Chongchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201197", "200145", "en-us", "320611", "Gangzha Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201198", "200145", "en-us", "320612", "Tongzhou Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201199", "200145", "en-us", "320621", "Hai’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201200", "200145", "en-us", "320623", "Rudong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201201", "200145", "en-us", "320681", "Qidong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201202", "200145", "en-us", "320682", "Rugao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201203", "200145", "en-us", "320684", "Haimen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201204", "200146", "en-us", "320703", "Lianyun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201205", "200146", "en-us", "320706", "Haizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201206", "200146", "en-us", "320707", "Ganyu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201207", "200146", "en-us", "320722", "Donghai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201208", "200146", "en-us", "320723", "Guanyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201209", "200146", "en-us", "320724", "Guannan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201210", "200147", "en-us", "320803", "Huai’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201211", "200147", "en-us", "320804", "Huaiyin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201212", "200147", "en-us", "320812", "Qingjiangpu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201213", "200147", "en-us", "320813", "Hongze District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201214", "200147", "en-us", "320826", "Lianshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201215", "200147", "en-us", "320830", "Xuyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201216", "200147", "en-us", "320831", "Jinhu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201217", "200148", "en-us", "320902", "Tinghu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201218", "200148", "en-us", "320903", "Yandu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201219", "200148", "en-us", "320904", "Dafeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201220", "200148", "en-us", "320921", "Xiangshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201221", "200148", "en-us", "320922", "Binhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201222", "200148", "en-us", "320923", "Funing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201223", "200148", "en-us", "320924", "Sheyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201224", "200148", "en-us", "320925", "Jianhu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201225", "200148", "en-us", "320981", "Dongtai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201226", "200149", "en-us", "321002", "Guangling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201227", "200149", "en-us", "321003", "Hanjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201228", "200149", "en-us", "321012", "Jiangdu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201229", "200149", "en-us", "321023", "Baoying County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201230", "200149", "en-us", "321081", "Yizheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201231", "200149", "en-us", "321084", "Gaoyou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201232", "200150", "en-us", "321102", "Jingkou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201233", "200150", "en-us", "321111", "Runzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201234", "200150", "en-us", "321112", "Dantu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201235", "200150", "en-us", "321181", "Danyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201236", "200150", "en-us", "321182", "Yangzhong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201237", "200150", "en-us", "321183", "Jurong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201238", "200151", "en-us", "321202", "Hailing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201239", "200151", "en-us", "321203", "Gaogang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201240", "200151", "en-us", "321204", "Jiangyan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201241", "200151", "en-us", "321281", "Xinghua City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201242", "200151", "en-us", "321282", "Jingjiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201243", "200151", "en-us", "321283", "Taixing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201244", "200152", "en-us", "321302", "Sucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201245", "200152", "en-us", "321311", "Suyu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201246", "200152", "en-us", "321322", "Shuyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201247", "200152", "en-us", "321323", "Siyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201248", "200152", "en-us", "321324", "Sihong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201249", "200153", "en-us", "330102", "Shangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201250", "200153", "en-us", "330103", "Xiacheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201251", "200153", "en-us", "330104", "Jianggan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201252", "200153", "en-us", "330105", "Gongshu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201253", "200153", "en-us", "330106", "West Lake District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201254", "200153", "en-us", "330108", "Binjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201255", "200153", "en-us", "330109", "Xiaoshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201256", "200153", "en-us", "330110", "Yuhang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201257", "200153", "en-us", "330111", "Fuyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201258", "200153", "en-us", "330122", "Tonglu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201259", "200153", "en-us", "330127", "Chun'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201260", "200153", "en-us", "330182", "Jiande City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201261", "200153", "en-us", "330185", "Lin’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201262", "200154", "en-us", "330203", "Haishu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201263", "200154", "en-us", "330205", "Jiangbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201264", "200154", "en-us", "330206", "Beilun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201265", "200154", "en-us", "330211", "Zhenhai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201266", "200154", "en-us", "330212", "Yinzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201268", "200154", "en-us", "330225", "Xiangshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201269", "200154", "en-us", "330226", "Ninghai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201270", "200154", "en-us", "330281", "Yuyao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201271", "200154", "en-us", "330282", "Cixi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201267", "200154", "en-us", "330283", "Fenghua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201272", "200155", "en-us", "330302", "Lucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201273", "200155", "en-us", "330303", "Longwan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201274", "200155", "en-us", "330304", "Ouhai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201275", "200155", "en-us", "330305", "Dongtou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201276", "200155", "en-us", "330324", "Yongjia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201277", "200155", "en-us", "330326", "Pingyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201278", "200155", "en-us", "330327", "Cangnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201279", "200155", "en-us", "330328", "Wencheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201280", "200155", "en-us", "330329", "Taishun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201281", "200155", "en-us", "330381", "Rui’an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201282", "200155", "en-us", "330382", "Yueqing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201283", "200156", "en-us", "330402", "Nanhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201284", "200156", "en-us", "330411", "Xiuzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201285", "200156", "en-us", "330421", "Jiashan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201286", "200156", "en-us", "330424", "Haiyan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201287", "200156", "en-us", "330481", "Haining City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201288", "200156", "en-us", "330482", "Pinghu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201289", "200156", "en-us", "330483", "Tongxiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201290", "200157", "en-us", "330502", "Wuxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201291", "200157", "en-us", "330503", "Nanxun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201292", "200157", "en-us", "330521", "Deqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201293", "200157", "en-us", "330522", "Changxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201294", "200157", "en-us", "330523", "Anji County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201295", "200158", "en-us", "330602", "Yuecheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201296", "200158", "en-us", "330603", "Keqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201297", "200158", "en-us", "330604", "Shangyu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201298", "200158", "en-us", "330624", "Xinchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201299", "200158", "en-us", "330681", "Zhuji City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201300", "200158", "en-us", "330683", "Shengzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201301", "200159", "en-us", "330702", "Wucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201302", "200159", "en-us", "330703", "Jindong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201303", "200159", "en-us", "330723", "Wuyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201304", "200159", "en-us", "330726", "Pujiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201305", "200159", "en-us", "330727", "Pan’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201306", "200159", "en-us", "330781", "Lanxi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201307", "200159", "en-us", "330782", "Yiwu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201308", "200159", "en-us", "330783", "Dongyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201309", "200159", "en-us", "330784", "Yongkang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201310", "200160", "en-us", "330802", "Kecheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201311", "200160", "en-us", "330803", "Qujiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201312", "200160", "en-us", "330822", "Changshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201313", "200160", "en-us", "330824", "Kaihua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201314", "200160", "en-us", "330825", "Longyou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201315", "200160", "en-us", "330881", "Jiangshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201316", "200161", "en-us", "330902", "Dinghai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201317", "200161", "en-us", "330903", "Putuo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201318", "200161", "en-us", "330921", "Daishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201319", "200161", "en-us", "330922", "Shengsi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201320", "200162", "en-us", "331002", "Jiaojiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201321", "200162", "en-us", "331003", "Huangyan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201322", "200162", "en-us", "331004", "Luqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201328", "200162", "en-us", "331021", "Yuhuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201323", "200162", "en-us", "331022", "Sanmen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201324", "200162", "en-us", "331023", "Tiantai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201325", "200162", "en-us", "331024", "Xianju County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201326", "200162", "en-us", "331081", "Wenling City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201327", "200162", "en-us", "331082", "Linhai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201329", "200163", "en-us", "331102", "Liandu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201330", "200163", "en-us", "331121", "Qingtian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201331", "200163", "en-us", "331122", "Jinyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201332", "200163", "en-us", "331123", "Suichang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201333", "200163", "en-us", "331124", "Songyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201334", "200163", "en-us", "331125", "Yunhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201335", "200163", "en-us", "331126", "Qingyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201336", "200163", "en-us", "331127", "Jingning She Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201337", "200163", "en-us", "331181", "Longquan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201338", "200164", "en-us", "340102", "Yaohai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201339", "200164", "en-us", "340103", "Luyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201340", "200164", "en-us", "340104", "Shushan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201341", "200164", "en-us", "340111", "Baohe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201342", "200164", "en-us", "340121", "Changfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201343", "200164", "en-us", "340122", "Feidong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201344", "200164", "en-us", "340123", "Feixi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201345", "200164", "en-us", "340124", "Lujiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201346", "200164", "en-us", "340181", "Chaohu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201347", "200165", "en-us", "340202", "Jinghu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201348", "200165", "en-us", "340203", "Yijiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201349", "200165", "en-us", "340207", "Jiujiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201350", "200165", "en-us", "340208", "Sanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201351", "200165", "en-us", "340221", "Wuhu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201352", "200165", "en-us", "340222", "Fanchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201353", "200165", "en-us", "340223", "Nanling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201354", "200165", "en-us", "340225", "Wuwei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201355", "200166", "en-us", "340302", "Longzihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201356", "200166", "en-us", "340303", "Bangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201357", "200166", "en-us", "340304", "Yuhui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201358", "200166", "en-us", "340311", "Huaishang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201359", "200166", "en-us", "340321", "Huaiyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201360", "200166", "en-us", "340322", "Wuhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201361", "200166", "en-us", "340323", "Guzhen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201362", "200167", "en-us", "340402", "Datong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201363", "200167", "en-us", "340403", "Tianjia’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201364", "200167", "en-us", "340404", "Xiejiaji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201365", "200167", "en-us", "340405", "Bagongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201366", "200167", "en-us", "340406", "Panji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201367", "200167", "en-us", "340421", "Fengtai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201368", "200167", "en-us", "340422", "Shouxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201369", "200168", "en-us", "340503", "Huashan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201370", "200168", "en-us", "340504", "Yushan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201371", "200168", "en-us", "340506", "Bowang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201372", "200168", "en-us", "340521", "Dangtu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201373", "200168", "en-us", "340522", "Hanshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201374", "200168", "en-us", "340523", "Hexian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201375", "200169", "en-us", "340602", "Duji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201376", "200169", "en-us", "340603", "Xiangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201377", "200169", "en-us", "340604", "Lieshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201378", "200169", "en-us", "340621", "Suixi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201379", "200170", "en-us", "340705", "Tongguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201380", "200170", "en-us", "340706", "Yi’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201381", "200170", "en-us", "340711", "Suburb Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201382", "200170", "en-us", "340722", "Zongyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201383", "200171", "en-us", "340802", "Yingjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201384", "200171", "en-us", "340803", "Daguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201385", "200171", "en-us", "340811", "Yixiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201386", "200171", "en-us", "340822", "Huaining County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201387", "200171", "en-us", "340824", "Qianshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201388", "200171", "en-us", "340825", "Taihu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201389", "200171", "en-us", "340826", "Susong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201390", "200171", "en-us", "340827", "Wangjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201391", "200171", "en-us", "340828", "Yuexi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201392", "200171", "en-us", "340881", "Tongcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201393", "200172", "en-us", "341002", "Tunxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201394", "200172", "en-us", "341003", "Huangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201395", "200172", "en-us", "341004", "Huizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201396", "200172", "en-us", "341021", "She County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201397", "200172", "en-us", "341022", "Xiuning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201398", "200172", "en-us", "341023", "Yi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201399", "200172", "en-us", "341024", "Qimen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201400", "200173", "en-us", "341102", "Langya District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201401", "200173", "en-us", "341103", "Nanqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201402", "200173", "en-us", "341122", "Lai’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201403", "200173", "en-us", "341124", "Quanjiao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201404", "200173", "en-us", "341125", "Dingyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201405", "200173", "en-us", "341126", "Fengyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201406", "200173", "en-us", "341181", "Tianchang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201407", "200173", "en-us", "341182", "Mingguang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201408", "200174", "en-us", "341202", "Yingzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201409", "200174", "en-us", "341203", "Yingdong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201410", "200174", "en-us", "341204", "Yingquan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201411", "200174", "en-us", "341221", "Linquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201412", "200174", "en-us", "341222", "Taihe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201413", "200174", "en-us", "341225", "Funan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201414", "200174", "en-us", "341226", "Yingshang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201415", "200174", "en-us", "341282", "Jieshou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201416", "200175", "en-us", "341302", "Yongqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201417", "200175", "en-us", "341321", "Dangshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201418", "200175", "en-us", "341322", "Xiao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201419", "200175", "en-us", "341323", "Lingbi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201420", "200175", "en-us", "341324", "Sixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201421", "200176", "en-us", "341502", "Jin’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201422", "200176", "en-us", "341503", "Yu’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201423", "200176", "en-us", "341504", "Yeji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201424", "200176", "en-us", "341522", "Huoqiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201425", "200176", "en-us", "341523", "Shucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201426", "200176", "en-us", "341524", "Jinzhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201427", "200176", "en-us", "341525", "Huoshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201428", "200177", "en-us", "341602", "Qiaocheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201429", "200177", "en-us", "341621", "Guoyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201430", "200177", "en-us", "341622", "Mengcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201431", "200177", "en-us", "341623", "Lixin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201432", "200178", "en-us", "341702", "Guichi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201433", "200178", "en-us", "341721", "Dongzhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201434", "200178", "en-us", "341722", "Shitai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201435", "200178", "en-us", "341723", "Qingyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201436", "200179", "en-us", "341802", "Xuanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201437", "200179", "en-us", "341821", "Langxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201438", "200179", "en-us", "341822", "Guangde County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201439", "200179", "en-us", "341823", "Jingxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201440", "200179", "en-us", "341824", "Jixi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201441", "200179", "en-us", "341825", "Jingde County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201442", "200179", "en-us", "341881", "Ningguo City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201444", "200180", "en-us", "350103", "Taijiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201445", "200180", "en-us", "350104", "Cangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201446", "200180", "en-us", "350105", "Mawei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201447", "200180", "en-us", "350111", "Jin’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201448", "200180", "en-us", "350121", "Minhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201449", "200180", "en-us", "350122", "Lianjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201450", "200180", "en-us", "350123", "Luoyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201451", "200180", "en-us", "350124", "Minqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201452", "200180", "en-us", "350125", "Yongtai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201453", "200180", "en-us", "350128", "Pingtan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201454", "200180", "en-us", "350181", "Fuqing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201455", "200180", "en-us", "350182", "Changle City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201443", "200180", "en-us", "350183", "Gulou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201456", "200181", "en-us", "350203", "Siming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201457", "200181", "en-us", "350205", "Haicang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201458", "200181", "en-us", "350206", "Huli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201459", "200181", "en-us", "350211", "Jimei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201460", "200181", "en-us", "350212", "Tong’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201461", "200181", "en-us", "350213", "Xiang’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201462", "200182", "en-us", "350302", "Chengxiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201463", "200182", "en-us", "350303", "Hanjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201464", "200182", "en-us", "350304", "Licheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201465", "200182", "en-us", "350305", "Xiuyu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201466", "200182", "en-us", "350322", "Xianyou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201467", "200183", "en-us", "350402", "Meilie District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201468", "200183", "en-us", "350403", "Sanyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201469", "200183", "en-us", "350421", "Mingxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201470", "200183", "en-us", "350423", "Qingliu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201471", "200183", "en-us", "350424", "Ninghua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201472", "200183", "en-us", "350425", "Datian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201473", "200183", "en-us", "350426", "Youxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201474", "200183", "en-us", "350427", "Sha County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201475", "200183", "en-us", "350428", "Jiangle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201476", "200183", "en-us", "350429", "Taining County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201477", "200183", "en-us", "350430", "Jianning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201478", "200183", "en-us", "350481", "Yong’an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201479", "200184", "en-us", "350502", "Licheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201480", "200184", "en-us", "350503", "Fengze District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201481", "200184", "en-us", "350504", "Luojiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201482", "200184", "en-us", "350505", "Quangang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201483", "200184", "en-us", "350521", "Hui’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201484", "200184", "en-us", "350524", "Anxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201485", "200184", "en-us", "350525", "Yongchun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201486", "200184", "en-us", "350526", "Dehua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201487", "200184", "en-us", "350527", "Jinmen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201488", "200184", "en-us", "350581", "Shishi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201489", "200184", "en-us", "350582", "Jinjiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201490", "200184", "en-us", "350583", "Nan’an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201491", "200185", "en-us", "350602", "Xiangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201492", "200185", "en-us", "350603", "Longwen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201493", "200185", "en-us", "350622", "Yunxiao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201494", "200185", "en-us", "350623", "Zhangpu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201495", "200185", "en-us", "350624", "Zhao’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201496", "200185", "en-us", "350625", "Changtai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201497", "200185", "en-us", "350626", "Dongshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201498", "200185", "en-us", "350627", "Nanjing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201499", "200185", "en-us", "350628", "Pinghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201500", "200185", "en-us", "350629", "Hua'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201501", "200185", "en-us", "350681", "Longhai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201502", "200186", "en-us", "350702", "Yanping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201503", "200186", "en-us", "350703", "Jianyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201504", "200186", "en-us", "350721", "Shunchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201505", "200186", "en-us", "350722", "Pucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201506", "200186", "en-us", "350723", "Guangze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201507", "200186", "en-us", "350724", "Songxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201508", "200186", "en-us", "350725", "Zhenghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201509", "200186", "en-us", "350781", "Shaowu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201510", "200186", "en-us", "350782", "Wuyishan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201511", "200186", "en-us", "350783", "Jianou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201512", "200187", "en-us", "350802", "Xinluo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201514", "200187", "en-us", "350821", "Changting County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201515", "200187", "en-us", "350823", "Shanghang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201516", "200187", "en-us", "350824", "Wuping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201517", "200187", "en-us", "350825", "Liancheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201518", "200187", "en-us", "350881", "Zhangping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201513", "200187", "en-us", "350882", "Yongding District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201519", "200188", "en-us", "350902", "Jiaocheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201520", "200188", "en-us", "350921", "Xiapu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201521", "200188", "en-us", "350922", "Gutian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201522", "200188", "en-us", "350923", "Pingnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201523", "200188", "en-us", "350924", "Shouning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201524", "200188", "en-us", "350925", "Zhouning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201525", "200188", "en-us", "350926", "Zherong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201526", "200188", "en-us", "350981", "Fu’an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201527", "200188", "en-us", "350982", "Fuding City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201528", "200189", "en-us", "360102", "Donghu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201529", "200189", "en-us", "360103", "Xihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201530", "200189", "en-us", "360104", "Qingyunpu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201531", "200189", "en-us", "360105", "Wanli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201532", "200189", "en-us", "360111", "Qingshanhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201533", "200189", "en-us", "360112", "Xinjian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201534", "200189", "en-us", "360121", "Nanchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201535", "200189", "en-us", "360123", "Anyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201536", "200189", "en-us", "360124", "Jinxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201537", "200190", "en-us", "360202", "Changjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201538", "200190", "en-us", "360203", "Zhushan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201539", "200190", "en-us", "360222", "Fuliang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201540", "200190", "en-us", "360281", "Leping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201541", "200191", "en-us", "360302", "Anyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201542", "200191", "en-us", "360313", "Xiangdong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201543", "200191", "en-us", "360321", "Lianhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201544", "200191", "en-us", "360322", "Shangli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201545", "200191", "en-us", "360323", "Luxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201546", "200192", "en-us", "360402", "Lianxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201547", "200192", "en-us", "360403", "Xunyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201548", "200192", "en-us", "360421", "Jiujiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201549", "200192", "en-us", "360423", "Wuning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201550", "200192", "en-us", "360424", "Xiushui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201551", "200192", "en-us", "360425", "Yongxiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201552", "200192", "en-us", "360426", "De’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201553", "200192", "en-us", "360428", "Duchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201554", "200192", "en-us", "360429", "Hukou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201555", "200192", "en-us", "360430", "Pengze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201556", "200192", "en-us", "360481", "Ruichang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201557", "200192", "en-us", "360482", "Gongqingcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201558", "200192", "en-us", "360483", "Lushan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201559", "200193", "en-us", "360502", "Yushui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201560", "200193", "en-us", "360521", "Fenyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201561", "200194", "en-us", "360602", "Yuehu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201562", "200194", "en-us", "360622", "Yujiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201563", "200194", "en-us", "360681", "Guixi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201564", "200195", "en-us", "360702", "Zhanggong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201565", "200195", "en-us", "360703", "Nankang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201567", "200195", "en-us", "360722", "Xinfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201568", "200195", "en-us", "360723", "Dayu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201569", "200195", "en-us", "360724", "Shangyou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201570", "200195", "en-us", "360725", "Chongyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201571", "200195", "en-us", "360726", "Anyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201572", "200195", "en-us", "360727", "Longnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201573", "200195", "en-us", "360728", "Dingnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201574", "200195", "en-us", "360729", "Quannan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201575", "200195", "en-us", "360730", "Ningdu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201576", "200195", "en-us", "360731", "Yudu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201577", "200195", "en-us", "360732", "Xingguo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201578", "200195", "en-us", "360733", "Huichang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201579", "200195", "en-us", "360734", "Xunwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201580", "200195", "en-us", "360735", "Shicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201581", "200195", "en-us", "360781", "Ruijin city", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201566", "200195", "en-us", "360782", "Ganxian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201582", "200196", "en-us", "360802", "Jizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201583", "200196", "en-us", "360803", "Qingyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201584", "200196", "en-us", "360821", "Ji'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201585", "200196", "en-us", "360822", "Jishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201586", "200196", "en-us", "360823", "Xiajiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201587", "200196", "en-us", "360824", "Xingan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201588", "200196", "en-us", "360825", "Yongfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201589", "200196", "en-us", "360826", "Taihe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201590", "200196", "en-us", "360827", "Suichuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201591", "200196", "en-us", "360828", "Wan’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201592", "200196", "en-us", "360829", "Anfu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201593", "200196", "en-us", "360830", "Yongxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201594", "200196", "en-us", "360881", "Jinggangshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201595", "200197", "en-us", "360902", "Yuanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201596", "200197", "en-us", "360921", "Fengxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201597", "200197", "en-us", "360922", "Wanzai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201598", "200197", "en-us", "360923", "Shanggao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201599", "200197", "en-us", "360924", "Yifeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201600", "200197", "en-us", "360925", "Jing'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201601", "200197", "en-us", "360926", "Tonggu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201602", "200197", "en-us", "360981", "Fengcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201603", "200197", "en-us", "360982", "Zhangshu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201604", "200197", "en-us", "360983", "Gao’an City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201605", "200198", "en-us", "361002", "Linchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201607", "200198", "en-us", "361021", "Nancheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201608", "200198", "en-us", "361022", "Lichuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201609", "200198", "en-us", "361023", "Nanfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201610", "200198", "en-us", "361024", "Chongren County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201611", "200198", "en-us", "361025", "Le'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201612", "200198", "en-us", "361026", "Yihuang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201613", "200198", "en-us", "361027", "Jinxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201614", "200198", "en-us", "361028", "Zixi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201615", "200198", "en-us", "361030", "Guangchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201606", "200198", "en-us", "361031", "Dongxiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201616", "200199", "en-us", "361102", "Xinzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201617", "200199", "en-us", "361103", "Guangfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201618", "200199", "en-us", "361121", "Shangrao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201619", "200199", "en-us", "361123", "Yushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201620", "200199", "en-us", "361124", "Qianshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201621", "200199", "en-us", "361125", "Hengfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201622", "200199", "en-us", "361126", "Yiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201623", "200199", "en-us", "361127", "Yugan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201624", "200199", "en-us", "361128", "Poyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201625", "200199", "en-us", "361129", "Wannian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201626", "200199", "en-us", "361130", "Wuyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201627", "200199", "en-us", "361181", "Dexing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201628", "200200", "en-us", "370102", "Lixia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201630", "200200", "en-us", "370104", "Huaiyin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201631", "200200", "en-us", "370105", "Tianqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201632", "200200", "en-us", "370112", "Licheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201633", "200200", "en-us", "370113", "Changqing Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201635", "200200", "en-us", "370124", "Pingyin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201636", "200200", "en-us", "370125", "Jiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201637", "200200", "en-us", "370126", "Shanghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200021", "200200", "en-us", "370127", "Laiwu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200002", "200200", "en-us", "370128", "Gangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201629", "200200", "en-us", "370130", "Shizhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201634", "200200", "en-us", "370131", "Zhangqiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201638", "200201", "en-us", "370202", "Shinan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201639", "200201", "en-us", "370203", "Shibei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201641", "200201", "en-us", "370212", "Laoshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201642", "200201", "en-us", "370213", "Licang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201643", "200201", "en-us", "370214", "Chengyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201640", "200201", "en-us", "370230", "Huangdao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201645", "200201", "en-us", "370231", "Jimo City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201644", "200201", "en-us", "370281", "Jiaozhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201646", "200201", "en-us", "370283", "Pingdu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201647", "200201", "en-us", "370285", "Laixi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201648", "200202", "en-us", "370302", "Zichuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201649", "200202", "en-us", "370303", "Zhangdian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201650", "200202", "en-us", "370304", "Boshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201651", "200202", "en-us", "370305", "Linzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201652", "200202", "en-us", "370306", "Zhoucun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201653", "200202", "en-us", "370321", "Huantai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201654", "200202", "en-us", "370322", "Gaoqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201655", "200202", "en-us", "370323", "Yiyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201657", "200203", "en-us", "370403", "Xuecheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201658", "200203", "en-us", "370404", "Yicheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201659", "200203", "en-us", "370405", "Tai’erzhuang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201660", "200203", "en-us", "370406", "Shanting District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201656", "200203", "en-us", "370410", "Shizhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201661", "200203", "en-us", "370481", "Tengzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201662", "200204", "en-us", "370502", "Dongying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201663", "200204", "en-us", "370503", "Hekou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201664", "200204", "en-us", "370505", "Kenli Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201665", "200204", "en-us", "370522", "Lijin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201666", "200204", "en-us", "370523", "Guangrao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201667", "200205", "en-us", "370602", "Zhifu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201668", "200205", "en-us", "370611", "Fushan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201669", "200205", "en-us", "370612", "Muping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201670", "200205", "en-us", "370613", "Laishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201671", "200205", "en-us", "370634", "Changdao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201672", "200205", "en-us", "370681", "Longkou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201673", "200205", "en-us", "370682", "Laiyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201674", "200205", "en-us", "370683", "Laizhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201675", "200205", "en-us", "370684", "Penglai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201676", "200205", "en-us", "370685", "Zhaoyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201677", "200205", "en-us", "370686", "Qixia City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201678", "200205", "en-us", "370687", "Haiyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201679", "200206", "en-us", "370702", "Weicheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201680", "200206", "en-us", "370703", "Hanting District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201681", "200206", "en-us", "370704", "Fangzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201682", "200206", "en-us", "370705", "Kuiwen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201683", "200206", "en-us", "370724", "Linqu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201684", "200206", "en-us", "370725", "Changle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201685", "200206", "en-us", "370781", "Qingzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201686", "200206", "en-us", "370782", "Zhucheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201687", "200206", "en-us", "370783", "Shouguang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201688", "200206", "en-us", "370784", "Anqiu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201689", "200206", "en-us", "370785", "Gaomi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201690", "200206", "en-us", "370786", "Changyi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201691", "200207", "en-us", "370811", "Rencheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201692", "200207", "en-us", "370812", "Yanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201693", "200207", "en-us", "370826", "Weishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201694", "200207", "en-us", "370827", "Yutai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201695", "200207", "en-us", "370828", "Jinxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201696", "200207", "en-us", "370829", "Jiaxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201697", "200207", "en-us", "370830", "Wenshang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201698", "200207", "en-us", "370831", "Sishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201699", "200207", "en-us", "370832", "Liangshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201700", "200207", "en-us", "370881", "Qufu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201701", "200207", "en-us", "370883", "Zoucheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201703", "200208", "en-us", "370911", "Daiyue District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201704", "200208", "en-us", "370921", "Ningyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201705", "200208", "en-us", "370923", "Dongping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201706", "200208", "en-us", "370982", "Xintai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201707", "200208", "en-us", "370983", "Feicheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201702", "200208", "en-us", "370990", "Taishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201708", "200209", "en-us", "371002", "Huancui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201709", "200209", "en-us", "371003", "Wendeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201710", "200209", "en-us", "371082", "Rongcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201711", "200209", "en-us", "371083", "Rushan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201712", "200210", "en-us", "371102", "Donggang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201713", "200210", "en-us", "371103", "Lanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201714", "200210", "en-us", "371121", "Wulian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201715", "200210", "en-us", "371122", "Ju County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201716", "200211", "en-us", "371302", "Lanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201717", "200211", "en-us", "371311", "Luozhuang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201718", "200211", "en-us", "371312", "Hedong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201719", "200211", "en-us", "371321", "Yinan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201720", "200211", "en-us", "371322", "Tancheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201721", "200211", "en-us", "371323", "Yishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201722", "200211", "en-us", "371324", "Lanling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201723", "200211", "en-us", "371325", "Feixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201724", "200211", "en-us", "371326", "Pingyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201725", "200211", "en-us", "371327", "Junan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201726", "200211", "en-us", "371328", "Mengyin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201727", "200211", "en-us", "371329", "Linshu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201728", "200212", "en-us", "371402", "Decheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201729", "200212", "en-us", "371403", "Lingcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201730", "200212", "en-us", "371422", "Ningjin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201731", "200212", "en-us", "371423", "Qingyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201732", "200212", "en-us", "371424", "Linyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201733", "200212", "en-us", "371425", "Qihe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201734", "200212", "en-us", "371426", "Pingyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201735", "200212", "en-us", "371427", "Xiajin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201736", "200212", "en-us", "371428", "Wucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201737", "200212", "en-us", "371481", "Laoling City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201738", "200212", "en-us", "371482", "Yucheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201739", "200213", "en-us", "371502", "Dongchangfu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201740", "200213", "en-us", "371521", "Yanggu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201741", "200213", "en-us", "371522", "Shenxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201742", "200213", "en-us", "371523", "Chiping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201743", "200213", "en-us", "371524", "Dong’e County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201744", "200213", "en-us", "371525", "Guanxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201745", "200213", "en-us", "371526", "Gaotang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201746", "200213", "en-us", "371581", "Linqing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201747", "200214", "en-us", "371602", "Bincheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201748", "200214", "en-us", "371603", "Zhanhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201749", "200214", "en-us", "371621", "Huimin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201750", "200214", "en-us", "371622", "Yangxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201751", "200214", "en-us", "371623", "Wudi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201752", "200214", "en-us", "371625", "Boxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201753", "200214", "en-us", "371626", "Zouping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201754", "200215", "en-us", "371702", "Mudan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201755", "200215", "en-us", "371703", "Dingtao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201756", "200215", "en-us", "371721", "Caoxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201757", "200215", "en-us", "371722", "Shanxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201758", "200215", "en-us", "371723", "Chengwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201759", "200215", "en-us", "371724", "Juye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201760", "200215", "en-us", "371725", "Yuncheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201761", "200215", "en-us", "371726", "Juancheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201762", "200215", "en-us", "371728", "Dongming County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201763", "200216", "en-us", "410102", "Zhongyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201764", "200216", "en-us", "410103", "Erqi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201765", "200216", "en-us", "410104", "Guancheng Hui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201766", "200216", "en-us", "410105", "Jinshui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201767", "200216", "en-us", "410106", "Shangjie District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201768", "200216", "en-us", "410108", "Huiji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201769", "200216", "en-us", "410122", "Zhongmu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201770", "200216", "en-us", "410181", "Gongyi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201771", "200216", "en-us", "410182", "Xingyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201772", "200216", "en-us", "410183", "Xinmi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201773", "200216", "en-us", "410184", "Xinzheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201774", "200216", "en-us", "410185", "Dengfeng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201775", "200217", "en-us", "410202", "Longting District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201776", "200217", "en-us", "410203", "Shunhe Hui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201778", "200217", "en-us", "410205", "Yuwangtai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201779", "200217", "en-us", "410212", "Xiangfu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201780", "200217", "en-us", "410221", "Qi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201781", "200217", "en-us", "410222", "Tongxu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201782", "200217", "en-us", "410223", "Weishi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201783", "200217", "en-us", "410225", "Lankao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201777", "200217", "en-us", "410230", "Gulou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201784", "200218", "en-us", "410302", "Laocheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201785", "200218", "en-us", "410303", "Xigong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201786", "200218", "en-us", "410304", "Chanhe Hui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201787", "200218", "en-us", "410305", "Jianxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201788", "200218", "en-us", "410306", "Jili District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201789", "200218", "en-us", "410311", "Luolong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201790", "200218", "en-us", "410322", "Mengjin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201791", "200218", "en-us", "410323", "Xin'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201792", "200218", "en-us", "410324", "Luanchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201793", "200218", "en-us", "410325", "Song County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201794", "200218", "en-us", "410326", "Ruyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201795", "200218", "en-us", "410327", "Yiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201796", "200218", "en-us", "410328", "Luoning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201797", "200218", "en-us", "410329", "Yichuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201798", "200218", "en-us", "410381", "Yanshi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201800", "200219", "en-us", "410403", "Weidong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201801", "200219", "en-us", "410404", "Shilong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201802", "200219", "en-us", "410411", "Zhanhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201803", "200219", "en-us", "410421", "Baofeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201804", "200219", "en-us", "410422", "Ye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201805", "200219", "en-us", "410423", "Lushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201806", "200219", "en-us", "410425", "Jia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201807", "200219", "en-us", "410481", "Wugang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201808", "200219", "en-us", "410482", "Ruzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201799", "200219", "en-us", "410485", "Xinhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201809", "200220", "en-us", "410502", "Wenfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201810", "200220", "en-us", "410503", "Beiguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201811", "200220", "en-us", "410505", "Yindu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201812", "200220", "en-us", "410506", "Long’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201813", "200220", "en-us", "410522", "Anyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201814", "200220", "en-us", "410523", "Tangyin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201815", "200220", "en-us", "410526", "Huaxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201816", "200220", "en-us", "410527", "Neihuang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201817", "200220", "en-us", "410581", "Linzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201818", "200221", "en-us", "410602", "Heshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201819", "200221", "en-us", "410603", "Shancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201820", "200221", "en-us", "410611", "Qibin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201821", "200221", "en-us", "410621", "Xun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201822", "200221", "en-us", "410622", "Qi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201823", "200222", "en-us", "410702", "Hongqi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201824", "200222", "en-us", "410703", "Weibin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201825", "200222", "en-us", "410704", "Fengquan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201826", "200222", "en-us", "410711", "Muye District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201827", "200222", "en-us", "410721", "Xinxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201828", "200222", "en-us", "410724", "Huojia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201829", "200222", "en-us", "410725", "Yuanyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201830", "200222", "en-us", "410726", "Yanjin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201831", "200222", "en-us", "410727", "Fengqiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201832", "200222", "en-us", "410728", "Changyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201833", "200222", "en-us", "410781", "Weihui City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201834", "200222", "en-us", "410782", "Huixian City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201835", "200223", "en-us", "410802", "Jiefang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201836", "200223", "en-us", "410803", "Zhongzhan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201837", "200223", "en-us", "410804", "Macun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201838", "200223", "en-us", "410811", "Shanyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201839", "200223", "en-us", "410821", "Xiuwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201840", "200223", "en-us", "410822", "Boai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201841", "200223", "en-us", "410823", "Wuzhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201842", "200223", "en-us", "410825", "Wenxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201843", "200223", "en-us", "410882", "Qinyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201844", "200223", "en-us", "410883", "Mengzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201845", "200224", "en-us", "410902", "Hualong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201846", "200224", "en-us", "410922", "Qingfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201847", "200224", "en-us", "410923", "Nanle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201848", "200224", "en-us", "410926", "Fanxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201849", "200224", "en-us", "410927", "Taiqian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201850", "200224", "en-us", "410928", "Puyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201851", "200225", "en-us", "411002", "Weidu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201853", "200225", "en-us", "411024", "Yanling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201854", "200225", "en-us", "411025", "Xiangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201855", "200225", "en-us", "411081", "Yuzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201856", "200225", "en-us", "411082", "Changge City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201852", "200225", "en-us", "411085", "Jian’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201857", "200226", "en-us", "411102", "Yuanhui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201858", "200226", "en-us", "411103", "Yancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201859", "200226", "en-us", "411104", "Zhaoling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201860", "200226", "en-us", "411121", "Wuyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201861", "200226", "en-us", "411122", "Linying County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201862", "200227", "en-us", "411202", "Hubing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201863", "200227", "en-us", "411203", "Shanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201864", "200227", "en-us", "411221", "Yingchi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201865", "200227", "en-us", "411224", "Lushi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201866", "200227", "en-us", "411281", "Yima City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201867", "200227", "en-us", "411282", "Lingbao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201868", "200228", "en-us", "411302", "Wancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201869", "200228", "en-us", "411303", "Wolong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201870", "200228", "en-us", "411321", "Nanzhao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201871", "200228", "en-us", "411322", "Fangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201872", "200228", "en-us", "411323", "Xixia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201873", "200228", "en-us", "411324", "Zhenping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201874", "200228", "en-us", "411325", "Neixiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201875", "200228", "en-us", "411326", "Zhechuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201876", "200228", "en-us", "411327", "Sheqi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201877", "200228", "en-us", "411328", "Tanghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201878", "200228", "en-us", "411329", "Xinye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201879", "200228", "en-us", "411330", "Tongbo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201880", "200228", "en-us", "411381", "Dengzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201881", "200229", "en-us", "411402", "Liangyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201882", "200229", "en-us", "411403", "Suiyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201883", "200229", "en-us", "411421", "Minquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201884", "200229", "en-us", "411422", "Suixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201885", "200229", "en-us", "411423", "Ningling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201886", "200229", "en-us", "411424", "Zhecheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201887", "200229", "en-us", "411425", "Yucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201888", "200229", "en-us", "411426", "Xiayi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201889", "200229", "en-us", "411481", "Yongcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201890", "200230", "en-us", "411502", "Shihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201891", "200230", "en-us", "411503", "Pingqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201892", "200230", "en-us", "411521", "Luoshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201893", "200230", "en-us", "411522", "Guangshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201894", "200230", "en-us", "411523", "Xinxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201895", "200230", "en-us", "411524", "Shangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201896", "200230", "en-us", "411525", "Gushi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201897", "200230", "en-us", "411526", "Huangchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201898", "200230", "en-us", "411527", "Huaibin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201899", "200230", "en-us", "411528", "Xixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201900", "200231", "en-us", "411602", "Chuanhui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201901", "200231", "en-us", "411621", "Fugou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201902", "200231", "en-us", "411622", "Xihua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201903", "200231", "en-us", "411623", "Shangshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201904", "200231", "en-us", "411624", "Shenqiu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201905", "200231", "en-us", "411625", "Dancheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201906", "200231", "en-us", "411626", "Huaiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201907", "200231", "en-us", "411627", "Taikang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201908", "200231", "en-us", "411628", "Luyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201909", "200231", "en-us", "411681", "Xiangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201910", "200232", "en-us", "411702", "Yicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201911", "200232", "en-us", "411721", "Xiping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201912", "200232", "en-us", "411722", "Shangcai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201913", "200232", "en-us", "411723", "Pingyu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201914", "200232", "en-us", "411724", "Zhengyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201915", "200232", "en-us", "411725", "Queshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201916", "200232", "en-us", "411726", "Miyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201917", "200232", "en-us", "411727", "Runan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201918", "200232", "en-us", "411728", "Suiping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201919", "200232", "en-us", "411729", "Xincai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203655", "203654", "en-us", "411801", "Jiyuan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201920", "200233", "en-us", "420102", "Jiang’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201921", "200233", "en-us", "420103", "Jianghan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201922", "200233", "en-us", "420104", "Qiaokou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201923", "200233", "en-us", "420105", "Hanyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201924", "200233", "en-us", "420106", "Wuchang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201926", "200233", "en-us", "420111", "Hongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201927", "200233", "en-us", "420112", "Dongxihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201928", "200233", "en-us", "420113", "Hannan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201929", "200233", "en-us", "420114", "Caidian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201930", "200233", "en-us", "420115", "Jiangxia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201931", "200233", "en-us", "420116", "Huangpi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201932", "200233", "en-us", "420117", "Xinzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201925", "200233", "en-us", "420118", "Qingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201933", "200234", "en-us", "420202", "Huangshigang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201934", "200234", "en-us", "420203", "Xisaishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201935", "200234", "en-us", "420204", "Xialu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201936", "200234", "en-us", "420205", "Tieshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201937", "200234", "en-us", "420222", "Yangxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201938", "200234", "en-us", "420281", "Daye City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201939", "200235", "en-us", "420302", "Maojian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201940", "200235", "en-us", "420303", "Zhangwan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201941", "200235", "en-us", "420304", "Yunyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201942", "200235", "en-us", "420322", "Yunxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201943", "200235", "en-us", "420323", "Zhushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201944", "200235", "en-us", "420324", "Zhuxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201945", "200235", "en-us", "420325", "Fangxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201946", "200235", "en-us", "420381", "Danjiangkou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201947", "200236", "en-us", "420502", "Xiling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201948", "200236", "en-us", "420503", "Wujiagang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201949", "200236", "en-us", "420504", "Dianjun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201950", "200236", "en-us", "420505", "Xiaoting District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201951", "200236", "en-us", "420506", "Yiling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201952", "200236", "en-us", "420525", "Yuan’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201953", "200236", "en-us", "420526", "Xingshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201954", "200236", "en-us", "420527", "Zigui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201955", "200236", "en-us", "420528", "Changyang Tujia Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201956", "200236", "en-us", "420529", "Wufeng Tujia Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201957", "200236", "en-us", "420581", "Yidu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201958", "200236", "en-us", "420582", "Dangyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201959", "200236", "en-us", "420583", "Zhijiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201960", "200237", "en-us", "420602", "Xiangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201961", "200237", "en-us", "420606", "Fancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201962", "200237", "en-us", "420607", "Xiangzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201963", "200237", "en-us", "420624", "Nanzhang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201964", "200237", "en-us", "420625", "Gucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201965", "200237", "en-us", "420626", "Baokang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201966", "200237", "en-us", "420682", "Laohekou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201967", "200237", "en-us", "420683", "Zaoyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201968", "200237", "en-us", "420684", "Yicheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201969", "200238", "en-us", "420702", "Liangzihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201970", "200238", "en-us", "420703", "Huarong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201971", "200238", "en-us", "420704", "Echeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201972", "200239", "en-us", "420802", "Dongbao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201973", "200239", "en-us", "420804", "Duodao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201974", "200239", "en-us", "420821", "Jingshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201975", "200239", "en-us", "420822", "Shayang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201976", "200239", "en-us", "420881", "Zhongxiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201977", "200240", "en-us", "420902", "Xiaonan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201978", "200240", "en-us", "420921", "Xiaochang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201979", "200240", "en-us", "420922", "Taiwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201980", "200240", "en-us", "420923", "Yunmeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201981", "200240", "en-us", "420981", "Yingcheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201982", "200240", "en-us", "420982", "Anlu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201983", "200240", "en-us", "420984", "Hanchuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201984", "200241", "en-us", "421002", "Shashi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201985", "200241", "en-us", "421003", "Jingzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201986", "200241", "en-us", "421022", "Gong’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201987", "200241", "en-us", "421023", "Jianli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201988", "200241", "en-us", "421024", "Jiangling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201989", "200241", "en-us", "421081", "Shishou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201990", "200241", "en-us", "421083", "Honghu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201991", "200241", "en-us", "421087", "Songzi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201992", "200242", "en-us", "421102", "Huangzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201993", "200242", "en-us", "421121", "Tuanfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201994", "200242", "en-us", "421122", "Hong’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201995", "200242", "en-us", "421123", "Luotian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201996", "200242", "en-us", "421124", "Yinshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201997", "200242", "en-us", "421125", "Xishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201998", "200242", "en-us", "421126", "Qichun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("201999", "200242", "en-us", "421127", "Huangmei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202000", "200242", "en-us", "421181", "Macheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202001", "200242", "en-us", "421182", "Wuxue City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202002", "200243", "en-us", "421202", "Xian’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202003", "200243", "en-us", "421221", "Jiayu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202004", "200243", "en-us", "421222", "Tongcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202005", "200243", "en-us", "421223", "Chongyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202006", "200243", "en-us", "421224", "Tongshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202007", "200243", "en-us", "421281", "Chibi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202008", "200244", "en-us", "421303", "Zengdu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202009", "200244", "en-us", "421321", "Suixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202010", "200244", "en-us", "421381", "Guangshui City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203648", "203647", "en-us", "421401", "Xiantao (County-level) City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203651", "203650", "en-us", "421601", "Tianmen (County-level) City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203653", "203652", "en-us", "421701", "Shenlongjia Forestry District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202011", "200245", "en-us", "422801", "Enshi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202012", "200245", "en-us", "422802", "Lichuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202013", "200245", "en-us", "422822", "Jianshi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202014", "200245", "en-us", "422823", "Badong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202015", "200245", "en-us", "422825", "Xuan’en County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202016", "200245", "en-us", "422826", "Xianfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202017", "200245", "en-us", "422827", "Laifeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202018", "200245", "en-us", "422828", "Hefeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202019", "200246", "en-us", "430102", "Furong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202020", "200246", "en-us", "430103", "Tianxin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202021", "200246", "en-us", "430104", "Yuelu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202022", "200246", "en-us", "430105", "Kaifu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202023", "200246", "en-us", "430111", "Yuhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202024", "200246", "en-us", "430112", "Wangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202025", "200246", "en-us", "430121", "Changsha County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202026", "200246", "en-us", "430181", "Liuyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202027", "200246", "en-us", "430182", "Ningxiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202028", "200247", "en-us", "430202", "Hetang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202029", "200247", "en-us", "430203", "Lusong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202030", "200247", "en-us", "430204", "Shifeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202031", "200247", "en-us", "430211", "Tianyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202032", "200247", "en-us", "430221", "Zhuzhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202033", "200247", "en-us", "430223", "Youxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202034", "200247", "en-us", "430224", "Chaling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202035", "200247", "en-us", "430225", "Yanling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202036", "200247", "en-us", "430281", "Liling City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202037", "200248", "en-us", "430302", "Yuhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202038", "200248", "en-us", "430304", "Yuetang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202039", "200248", "en-us", "430321", "Xiangtan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202040", "200248", "en-us", "430381", "Xiangxiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202041", "200248", "en-us", "430382", "Shaoshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202042", "200249", "en-us", "430405", "Zhuhui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202043", "200249", "en-us", "430406", "Yanfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202044", "200249", "en-us", "430407", "Shigu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202045", "200249", "en-us", "430408", "Zhengxiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202046", "200249", "en-us", "430412", "Nanyue District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202047", "200249", "en-us", "430421", "Hengyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202048", "200249", "en-us", "430422", "Hengnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202049", "200249", "en-us", "430423", "Hengshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202050", "200249", "en-us", "430424", "Hengdong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202051", "200249", "en-us", "430426", "Qidong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202052", "200249", "en-us", "430481", "Leiyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202053", "200249", "en-us", "430482", "Changning City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202054", "200250", "en-us", "430502", "Shuangqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202055", "200250", "en-us", "430503", "Daxiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202056", "200250", "en-us", "430511", "Beita District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202057", "200250", "en-us", "430521", "Shaodong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202058", "200250", "en-us", "430522", "Xinshao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202059", "200250", "en-us", "430523", "Shaoyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202060", "200250", "en-us", "430524", "Longhui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202061", "200250", "en-us", "430525", "Dongkou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202062", "200250", "en-us", "430527", "Suining County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202063", "200250", "en-us", "430528", "Xinning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202064", "200250", "en-us", "430529", "Chengbu Miao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202065", "200250", "en-us", "430581", "Wugang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202066", "200251", "en-us", "430602", "Yueyanglou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202067", "200251", "en-us", "430603", "Yunxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202068", "200251", "en-us", "430611", "Junshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202069", "200251", "en-us", "430621", "Yueyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202070", "200251", "en-us", "430623", "Huarong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202071", "200251", "en-us", "430624", "Huaiyin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202072", "200251", "en-us", "430626", "Pingjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202073", "200251", "en-us", "430681", "Niluo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202074", "200251", "en-us", "430682", "Linxiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202075", "200252", "en-us", "430702", "Wuling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202076", "200252", "en-us", "430703", "Dingcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202077", "200252", "en-us", "430721", "Anxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202078", "200252", "en-us", "430722", "Hanshou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202079", "200252", "en-us", "430723", "Lixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202080", "200252", "en-us", "430724", "Linli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202081", "200252", "en-us", "430725", "Taoyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202082", "200252", "en-us", "430726", "Shimen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202083", "200252", "en-us", "430781", "Jinshi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202085", "200253", "en-us", "430811", "Wulingyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202086", "200253", "en-us", "430821", "Cili County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202087", "200253", "en-us", "430822", "Sangzhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202084", "200253", "en-us", "430825", "Yongding District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202088", "200254", "en-us", "430902", "Ziyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202089", "200254", "en-us", "430903", "Heshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202090", "200254", "en-us", "430921", "Nanxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202091", "200254", "en-us", "430922", "Taojiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202092", "200254", "en-us", "430923", "Anhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202093", "200254", "en-us", "430981", "Yuanjiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202094", "200255", "en-us", "431002", "Beihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202095", "200255", "en-us", "431003", "Suxian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202096", "200255", "en-us", "431021", "Guiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202097", "200255", "en-us", "431022", "Yizhang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202098", "200255", "en-us", "431023", "Yongxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202099", "200255", "en-us", "431024", "Jiahe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202100", "200255", "en-us", "431025", "Linwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202101", "200255", "en-us", "431026", "Rucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202102", "200255", "en-us", "431027", "Guidong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202103", "200255", "en-us", "431028", "Anren County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202104", "200255", "en-us", "431081", "Zixing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202105", "200256", "en-us", "431102", "Lingling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202106", "200256", "en-us", "431103", "Lengshuitan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202107", "200256", "en-us", "431121", "Qiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202108", "200256", "en-us", "431122", "Dong’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202109", "200256", "en-us", "431123", "Shuangpai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202110", "200256", "en-us", "431124", "Daoxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202111", "200256", "en-us", "431125", "Jiangyong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202112", "200256", "en-us", "431126", "Ningyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202113", "200256", "en-us", "431127", "Lanshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202114", "200256", "en-us", "431128", "Xintian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202115", "200256", "en-us", "431129", "Jianghua Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202116", "200257", "en-us", "431202", "Hecheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202117", "200257", "en-us", "431221", "Zhongfang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202118", "200257", "en-us", "431222", "Yuanling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202119", "200257", "en-us", "431223", "Chenxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202120", "200257", "en-us", "431224", "Xupu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202121", "200257", "en-us", "431225", "Huitong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202122", "200257", "en-us", "431226", "Mayang Miao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202123", "200257", "en-us", "431227", "Xinhuang Dong Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202124", "200257", "en-us", "431228", "Zhijiang Dong Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202125", "200257", "en-us", "431229", "Jingzhou Miao and Dong Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202126", "200257", "en-us", "431230", "Tongdao Dong Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202127", "200257", "en-us", "431281", "Hongjiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203646", "200257", "en-us", "431282", "Hongjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202128", "200258", "en-us", "431302", "Louxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202129", "200258", "en-us", "431321", "Shuangfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202130", "200258", "en-us", "431322", "Xinhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202131", "200258", "en-us", "431381", "Lengshuijiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202132", "200258", "en-us", "431382", "Lianyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202133", "200259", "en-us", "433101", "Jishou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202134", "200259", "en-us", "433122", "Luxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202135", "200259", "en-us", "433123", "Fenghuang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202136", "200259", "en-us", "433124", "Huayuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202137", "200259", "en-us", "433125", "Baojing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202138", "200259", "en-us", "433126", "Guzhang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202139", "200259", "en-us", "433127", "Yongshun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202140", "200259", "en-us", "433130", "Longshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202141", "200260", "en-us", "440103", "Liwan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202142", "200260", "en-us", "440104", "Yuexiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202143", "200260", "en-us", "440105", "Haizhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202144", "200260", "en-us", "440106", "Tianhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202146", "200260", "en-us", "440112", "Huangpu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202147", "200260", "en-us", "440113", "Panyu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202148", "200260", "en-us", "440114", "Huadu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202149", "200260", "en-us", "440115", "Nansha District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202150", "200260", "en-us", "440117", "Conghua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202151", "200260", "en-us", "440118", "Zengcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202145", "200260", "en-us", "440120", "Baiyun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202152", "200261", "en-us", "440203", "Wujiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202153", "200261", "en-us", "440204", "Zhenjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202154", "200261", "en-us", "440205", "Qujiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202155", "200261", "en-us", "440222", "Shixing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202156", "200261", "en-us", "440224", "Renhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202157", "200261", "en-us", "440229", "Wengyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202158", "200261", "en-us", "440232", "Ruyuan Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202159", "200261", "en-us", "440233", "Xinfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202160", "200261", "en-us", "440281", "Lechang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202161", "200261", "en-us", "440282", "Nanxiong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202162", "200262", "en-us", "440303", "Luohu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202163", "200262", "en-us", "440304", "Futian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202165", "200262", "en-us", "440306", "Bao’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202166", "200262", "en-us", "440307", "Longgang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202167", "200262", "en-us", "440308", "Yantian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202164", "200262", "en-us", "440309", "Nanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202168", "200262", "en-us", "440310", "Longhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202169", "200262", "en-us", "440311", "Pingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202170", "200263", "en-us", "440402", "Xiangzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202171", "200263", "en-us", "440403", "Doumen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202172", "200263", "en-us", "440404", "Jinwan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202173", "200263", "en-us", "440405", "Xiangzhou District (governed by Macao SAR)", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202174", "200264", "en-us", "440507", "Longhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202175", "200264", "en-us", "440511", "Jinping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202176", "200264", "en-us", "440512", "Haojiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202177", "200264", "en-us", "440513", "Chaoyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202178", "200264", "en-us", "440514", "Chaonan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202179", "200264", "en-us", "440515", "Chenghai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202180", "200264", "en-us", "440523", "Nan’ao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202181", "200265", "en-us", "440604", "Chancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202182", "200265", "en-us", "440605", "Nanhai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202183", "200265", "en-us", "440606", "Shunde District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202184", "200265", "en-us", "440607", "Sanshui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202185", "200265", "en-us", "440608", "Gaoming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202186", "200266", "en-us", "440703", "Pengjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202187", "200266", "en-us", "440704", "Jianghai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202188", "200266", "en-us", "440705", "Xinhui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202189", "200266", "en-us", "440781", "Taishan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202190", "200266", "en-us", "440783", "Kaiping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202191", "200266", "en-us", "440784", "Heshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202192", "200266", "en-us", "440785", "Enping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202193", "200267", "en-us", "440802", "Chikan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202194", "200267", "en-us", "440803", "Xiashan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202195", "200267", "en-us", "440804", "Potou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202196", "200267", "en-us", "440811", "Mazhang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202197", "200267", "en-us", "440823", "Suixi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202198", "200267", "en-us", "440825", "Xuwen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202199", "200267", "en-us", "440881", "Lianjiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202200", "200267", "en-us", "440882", "Leizhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202201", "200267", "en-us", "440883", "Wuchuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202202", "200268", "en-us", "440902", "Maonan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202203", "200268", "en-us", "440904", "Dianbai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202204", "200268", "en-us", "440981", "Gaozhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202205", "200268", "en-us", "440982", "Huazhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202206", "200268", "en-us", "440983", "Xinyi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202207", "200269", "en-us", "441202", "Duanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202208", "200269", "en-us", "441203", "Dinghu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202209", "200269", "en-us", "441204", "Gaoyao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202210", "200269", "en-us", "441223", "Guangning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202211", "200269", "en-us", "441224", "Huaiji County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202212", "200269", "en-us", "441225", "Fengkai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202213", "200269", "en-us", "441226", "Deqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202214", "200269", "en-us", "441284", "Sihui City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202215", "200270", "en-us", "441302", "Huicheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202216", "200270", "en-us", "441303", "Huiyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202217", "200270", "en-us", "441322", "Boluo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202218", "200270", "en-us", "441323", "Huidong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202219", "200270", "en-us", "441324", "Longmen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202220", "200271", "en-us", "441402", "Meijiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202221", "200271", "en-us", "441403", "Meixian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202222", "200271", "en-us", "441422", "Dabu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202223", "200271", "en-us", "441423", "Fengshun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202224", "200271", "en-us", "441424", "Wuhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202225", "200271", "en-us", "441426", "Pingyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202226", "200271", "en-us", "441427", "Jiaoling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202227", "200271", "en-us", "441481", "Xingning City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202229", "200272", "en-us", "441521", "Haifeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202230", "200272", "en-us", "441523", "Luhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202228", "200272", "en-us", "441525", "Cheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202231", "200272", "en-us", "441581", "Lufeng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202232", "200273", "en-us", "441602", "Yuancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202233", "200273", "en-us", "441621", "Zijin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202234", "200273", "en-us", "441622", "Longchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202235", "200273", "en-us", "441623", "Lianping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202236", "200273", "en-us", "441624", "Heping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202237", "200273", "en-us", "441625", "Dongyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202238", "200274", "en-us", "441702", "Jiangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202239", "200274", "en-us", "441704", "Yangdong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202240", "200274", "en-us", "441721", "Yangxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202241", "200274", "en-us", "441781", "Yangchun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202242", "200275", "en-us", "441802", "Qingcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202243", "200275", "en-us", "441803", "Qingxin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202244", "200275", "en-us", "441821", "Fogang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202245", "200275", "en-us", "441823", "Yangshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202246", "200275", "en-us", "441825", "Lianshan Zhuang and Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202247", "200275", "en-us", "441826", "Liannan Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202248", "200275", "en-us", "441881", "Yingde City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202249", "200275", "en-us", "441882", "Lianzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202250", "200276", "en-us", "441901", "Dongguan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202251", "200277", "en-us", "442001", "Zhongshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202252", "200278", "en-us", "445102", "Xiangqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202253", "200278", "en-us", "445103", "Chao’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202254", "200278", "en-us", "445122", "Raoping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202255", "200279", "en-us", "445202", "Rongcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202256", "200279", "en-us", "445203", "Jiedong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202257", "200279", "en-us", "445222", "Jiexi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202258", "200279", "en-us", "445224", "Huilai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202259", "200279", "en-us", "445281", "Puning City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202260", "200280", "en-us", "445302", "Yuncheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202261", "200280", "en-us", "445303", "Yun’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202262", "200280", "en-us", "445321", "Xinxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202263", "200280", "en-us", "445322", "Yunan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202264", "200280", "en-us", "445381", "Luoding City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202265", "200281", "en-us", "450102", "Xingning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202266", "200281", "en-us", "450103", "Qingxiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202267", "200281", "en-us", "450105", "Jiangnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202268", "200281", "en-us", "450107", "Xixiangtang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202269", "200281", "en-us", "450108", "Liangqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202270", "200281", "en-us", "450109", "Yongning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202271", "200281", "en-us", "450110", "Wuming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202272", "200281", "en-us", "450123", "Long’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202273", "200281", "en-us", "450124", "Mashan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202274", "200281", "en-us", "450125", "Shanglin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202275", "200281", "en-us", "450126", "Binyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202276", "200281", "en-us", "450127", "Hengxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202278", "200282", "en-us", "450203", "Yufeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202279", "200282", "en-us", "450204", "Liunan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202280", "200282", "en-us", "450205", "Liubei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202281", "200282", "en-us", "450206", "Liujiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202282", "200282", "en-us", "450222", "Liucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202283", "200282", "en-us", "450223", "Luzhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202284", "200282", "en-us", "450224", "Rong’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202285", "200282", "en-us", "450225", "Rongshui Miao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202286", "200282", "en-us", "450226", "Sanjiang Dong Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202277", "200282", "en-us", "450227", "Chengzhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202287", "200283", "en-us", "450302", "Xiufeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202288", "200283", "en-us", "450303", "Diecai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202289", "200283", "en-us", "450304", "Xiangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202290", "200283", "en-us", "450305", "Qixing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202291", "200283", "en-us", "450311", "Yanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202292", "200283", "en-us", "450312", "Lingui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202293", "200283", "en-us", "450321", "Yangshuo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202294", "200283", "en-us", "450323", "Lingchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202295", "200283", "en-us", "450324", "Quanzhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202296", "200283", "en-us", "450325", "Xing’an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202297", "200283", "en-us", "450326", "Yongfu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202298", "200283", "en-us", "450327", "Guanyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202299", "200283", "en-us", "450328", "Longsheng Multinational Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202300", "200283", "en-us", "450329", "Ziyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202301", "200283", "en-us", "450330", "Pingle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202302", "200283", "en-us", "450331", "Lipu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202303", "200283", "en-us", "450332", "Gongcheng Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202304", "200284", "en-us", "450403", "Wanxiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202305", "200284", "en-us", "450405", "Changzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202306", "200284", "en-us", "450406", "Longxu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202307", "200284", "en-us", "450421", "Cangwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202308", "200284", "en-us", "450422", "Tengxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202309", "200284", "en-us", "450423", "Mengshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202310", "200284", "en-us", "450481", "Cenxi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202311", "200285", "en-us", "450502", "Haicheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202312", "200285", "en-us", "450503", "Yinhai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202313", "200285", "en-us", "450512", "Tieshangang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202314", "200285", "en-us", "450521", "Hepu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202315", "200286", "en-us", "450602", "Gangkou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202316", "200286", "en-us", "450603", "Fangcheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202317", "200286", "en-us", "450621", "Shangsi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202318", "200286", "en-us", "450681", "Dongxing City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202319", "200287", "en-us", "450702", "Qinnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202320", "200287", "en-us", "450703", "Qinbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202321", "200287", "en-us", "450721", "Lingshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202322", "200287", "en-us", "450722", "Pubei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202323", "200288", "en-us", "450802", "Gangbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202324", "200288", "en-us", "450803", "Gangnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202325", "200288", "en-us", "450804", "Qintang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202326", "200288", "en-us", "450821", "Pingnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202327", "200288", "en-us", "450881", "Guiping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202328", "200289", "en-us", "450902", "Yuzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202329", "200289", "en-us", "450903", "Fumian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202330", "200289", "en-us", "450921", "Rongxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202331", "200289", "en-us", "450922", "Luchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202332", "200289", "en-us", "450923", "Bobai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202333", "200289", "en-us", "450924", "Xingye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202334", "200289", "en-us", "450981", "Beiliu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202335", "200290", "en-us", "451002", "Youjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202336", "200290", "en-us", "451021", "Tianyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202337", "200290", "en-us", "451022", "Tiandong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202338", "200290", "en-us", "451023", "Pingguo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202339", "200290", "en-us", "451024", "Debao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202340", "200290", "en-us", "451026", "Napo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202341", "200290", "en-us", "451027", "Lingyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202342", "200290", "en-us", "451028", "Leye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202343", "200290", "en-us", "451029", "Tianlin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202344", "200290", "en-us", "451030", "Xilin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202345", "200290", "en-us", "451031", "Longlin Multi-national Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202346", "200290", "en-us", "451081", "Jingxi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202347", "200291", "en-us", "451102", "Babu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202348", "200291", "en-us", "451103", "Pinggui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202349", "200291", "en-us", "451121", "Zhaoping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202350", "200291", "en-us", "451122", "Zhongshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202351", "200291", "en-us", "451123", "Fuchuan Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202352", "200292", "en-us", "451202", "Jinchengjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202354", "200292", "en-us", "451221", "Nandan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202355", "200292", "en-us", "451222", "Tian’e County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202356", "200292", "en-us", "451223", "Fengshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202357", "200292", "en-us", "451224", "Donglan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202358", "200292", "en-us", "451225", "Luocheng Mulao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202359", "200292", "en-us", "451226", "Huanjiang Maonan Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202360", "200292", "en-us", "451227", "Bama Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202361", "200292", "en-us", "451228", "Du’an Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202362", "200292", "en-us", "451229", "Dahua Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202353", "200292", "en-us", "451230", "Yizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202363", "200293", "en-us", "451302", "Xingbin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202364", "200293", "en-us", "451321", "Xincheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202365", "200293", "en-us", "451322", "Xiangzhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202366", "200293", "en-us", "451323", "Wuxuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202367", "200293", "en-us", "451324", "Jinxiu Yao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202368", "200293", "en-us", "451381", "Heshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202369", "200294", "en-us", "451402", "Jiangzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202370", "200294", "en-us", "451421", "Fusui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202371", "200294", "en-us", "451422", "Ningming County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202372", "200294", "en-us", "451423", "Longzhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202373", "200294", "en-us", "451424", "Daxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202374", "200294", "en-us", "451425", "Tiandeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202375", "200294", "en-us", "451481", "Pingxiang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202376", "200295", "en-us", "460105", "Xiuying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202378", "200295", "en-us", "460107", "Qiongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202379", "200295", "en-us", "460108", "Meilan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202377", "200295", "en-us", "460109", "Longhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202380", "200296", "en-us", "460202", "Haitang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202381", "200296", "en-us", "460203", "Jiyang DIstrict", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202382", "200296", "en-us", "460204", "Tianya District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202383", "200296", "en-us", "460205", "Yazhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200298", "200297", "en-us", "460301", "Sansha", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202387", "200299", "en-us", "460401", "Danzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203661", "203660", "en-us", "460501", "Dongfang", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200001", "200000", "en-us", "461001", "Wuzhishan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200004", "200003", "en-us", "461101", "Qionghai", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200006", "200005", "en-us", "461201", "Dongfang", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200008", "200007", "en-us", "461301", "Wenchang", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200010", "200009", "en-us", "461401", "Wanning", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200012", "200011", "en-us", "461501", "Dingan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200014", "200013", "en-us", "461601", "Tunchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200016", "200015", "en-us", "461701", "Chengmai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200018", "200017", "en-us", "461801", "Lingao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200020", "200019", "en-us", "461901", "Baisha Li Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200023", "200022", "en-us", "462001", "Changjiang Li Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200025", "200024", "en-us", "462101", "Ledong Li Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200027", "200026", "en-us", "462201", "Lingshui Li Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200030", "200029", "en-us", "462301", "Baotinglizumiaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200032", "200031", "en-us", "462401", "Qiongzhonglizumiaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202388", "200300", "en-us", "500101", "Wanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202389", "200300", "en-us", "500102", "Fuling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202390", "200300", "en-us", "500103", "Yuzhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202391", "200300", "en-us", "500104", "Dadukou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202394", "200300", "en-us", "500106", "Shapingba District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202395", "200300", "en-us", "500107", "Jiulongpo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202396", "200300", "en-us", "500108", "Nan’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202397", "200300", "en-us", "500109", "Beibei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202398", "200300", "en-us", "500110", "Qijiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202399", "200300", "en-us", "500111", "Dazu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202400", "200300", "en-us", "500112", "Yubei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202401", "200300", "en-us", "500113", "Banan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202402", "200300", "en-us", "500114", "Qianjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202403", "200300", "en-us", "500115", "Changshou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202404", "200300", "en-us", "500116", "Jiangjin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202405", "200300", "en-us", "500117", "Hechuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202406", "200300", "en-us", "500118", "Yongchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202407", "200300", "en-us", "500119", "Nanchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202408", "200300", "en-us", "500120", "Bishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200028", "200300", "en-us", "500121", "Wansheng Economic and Technological  Development Zone", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202409", "200300", "en-us", "500151", "Tongliang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202410", "200300", "en-us", "500152", "Tongnan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202411", "200300", "en-us", "500153", "Rongchang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202412", "200300", "en-us", "500154", "Kaizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202413", "200300", "en-us", "500155", "Liangping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202392", "200300", "en-us", "500156", "Jiangbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202415", "200300", "en-us", "500158", "Wulong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202416", "200300", "en-us", "500229", "Chengkou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202417", "200300", "en-us", "500230", "Fengdu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202418", "200300", "en-us", "500231", "Dianjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202419", "200300", "en-us", "500233", "Zhongxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202420", "200300", "en-us", "500235", "Yunyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202421", "200300", "en-us", "500236", "Fengjie County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202422", "200300", "en-us", "500237", "Wushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202423", "200300", "en-us", "500238", "Wuxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202424", "200300", "en-us", "500240", "Shizhu Tujia Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202425", "200300", "en-us", "500241", "Xiushan Tujia and Miao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202426", "200300", "en-us", "500242", "Youyang Tujia and Miao Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202427", "200300", "en-us", "500243", "Pengshui Miaozu, Tujiazu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202393", "200054", "en-us", "500250", "Jiangbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202414", "200054", "en-us", "500251", "Wulong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202428", "200301", "en-us", "510104", "Jinjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202429", "200301", "en-us", "510105", "Qingyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202430", "200301", "en-us", "510106", "Jinniu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202431", "200301", "en-us", "510107", "Wuhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202432", "200301", "en-us", "510108", "Chenghua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202433", "200301", "en-us", "510112", "Longquanyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202434", "200301", "en-us", "510113", "Qingbaijiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202435", "200301", "en-us", "510114", "Xindu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202436", "200301", "en-us", "510115", "Wenjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202437", "200301", "en-us", "510116", "Shuangliu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202439", "200301", "en-us", "510121", "Jintang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202440", "200301", "en-us", "510129", "Dayi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202441", "200301", "en-us", "510131", "Pujiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202442", "200301", "en-us", "510132", "Xinjin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202443", "200301", "en-us", "510181", "Dujiangyan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202444", "200301", "en-us", "510182", "Pengzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202445", "200301", "en-us", "510183", "Qiong Lai", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202446", "200301", "en-us", "510184", "Chongzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202447", "200301", "en-us", "510185", "Jianyang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202438", "200301", "en-us", "510186", "Pidu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202448", "200302", "en-us", "510302", "Ziliujing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202449", "200302", "en-us", "510303", "Gongjing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202451", "200302", "en-us", "510311", "Yantan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202452", "200302", "en-us", "510321", "Rong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202453", "200302", "en-us", "510322", "Fushun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202450", "200302", "en-us", "510325", "Da'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202456", "200303", "en-us", "510411", "Renhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202457", "200303", "en-us", "510421", "Miyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202458", "200303", "en-us", "510422", "Yanbian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202455", "200303", "en-us", "510423", "East District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202454", "200303", "en-us", "510424", "West District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202459", "200304", "en-us", "510502", "Jiangyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202460", "200304", "en-us", "510503", "Naxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202461", "200304", "en-us", "510504", "Longmatan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202462", "200304", "en-us", "510521", "Lu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202463", "200304", "en-us", "510522", "Hejiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202464", "200304", "en-us", "510524", "Xuyong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202465", "200304", "en-us", "510525", "Gulin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202466", "200305", "en-us", "510603", "Jingyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202467", "200305", "en-us", "510623", "Zhongjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202468", "200305", "en-us", "510626", "Luojiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202469", "200305", "en-us", "510681", "Guanghan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202470", "200305", "en-us", "510682", "Shifang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202471", "200305", "en-us", "510683", "Mienzhu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202472", "200306", "en-us", "510703", "Fucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202473", "200306", "en-us", "510704", "Youxian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202474", "200306", "en-us", "510705", "Anzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202475", "200306", "en-us", "510722", "Santai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202476", "200306", "en-us", "510723", "Yanting County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202477", "200306", "en-us", "510725", "Zitong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202478", "200306", "en-us", "510726", "Beichuan Qiangzu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202479", "200306", "en-us", "510727", "Pingwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202480", "200306", "en-us", "510781", "Jiangyou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202481", "200307", "en-us", "510802", "Lizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202482", "200307", "en-us", "510811", "Zhaohua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202483", "200307", "en-us", "510812", "Chaotian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202484", "200307", "en-us", "510821", "Wangcang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202485", "200307", "en-us", "510822", "Qingchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202486", "200307", "en-us", "510823", "Jiange County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202487", "200307", "en-us", "510824", "Cangxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202488", "200308", "en-us", "510903", "Chuanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202489", "200308", "en-us", "510904", "Anju District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202490", "200308", "en-us", "510921", "Pengxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202491", "200308", "en-us", "510922", "Shehong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202492", "200308", "en-us", "510923", "Daying County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202493", "200309", "en-us", "511002", "Shizhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202494", "200309", "en-us", "511011", "Dongxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202495", "200309", "en-us", "511024", "Weiyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202496", "200309", "en-us", "511025", "Zizhong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202497", "200309", "en-us", "511028", "Longchang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202498", "200310", "en-us", "511102", "Shizhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202499", "200310", "en-us", "511111", "Shawan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202500", "200310", "en-us", "511112", "Wutongqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202501", "200310", "en-us", "511113", "Jinkouhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202502", "200310", "en-us", "511123", "Qianwei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202503", "200310", "en-us", "511124", "Jingyan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202504", "200310", "en-us", "511126", "Jiajiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202505", "200310", "en-us", "511129", "Muchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202506", "200310", "en-us", "511132", "Ebian Yizu Nationality Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202507", "200310", "en-us", "511133", "Mabian Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202508", "200310", "en-us", "511181", "Emeishan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202509", "200311", "en-us", "511302", "Shunqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202510", "200311", "en-us", "511303", "Gaoping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202511", "200311", "en-us", "511304", "Jialing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202512", "200311", "en-us", "511321", "Nanbu Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202513", "200311", "en-us", "511322", "Yingshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202514", "200311", "en-us", "511323", "Peng'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202515", "200311", "en-us", "511324", "Yilong Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202516", "200311", "en-us", "511325", "Xichong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202517", "200311", "en-us", "511381", "Langzhong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202518", "200312", "en-us", "511402", "Dongpo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202519", "200312", "en-us", "511403", "Pengshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202520", "200312", "en-us", "511421", "Renshou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202521", "200312", "en-us", "511423", "Hongya County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202522", "200312", "en-us", "511424", "Danling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202523", "200312", "en-us", "511425", "Qingshen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202524", "200313", "en-us", "511502", "Cuiping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202525", "200313", "en-us", "511503", "Nanxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202526", "200313", "en-us", "511521", "Yibin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202527", "200313", "en-us", "511523", "Jiang'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202528", "200313", "en-us", "511524", "Changning Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202529", "200313", "en-us", "511525", "Gaoxian Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202530", "200313", "en-us", "511526", "Gongxian Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202531", "200313", "en-us", "511527", "Junlian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202532", "200313", "en-us", "511528", "Xingwen Xian", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202533", "200313", "en-us", "511529", "Pingshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202534", "200314", "en-us", "511602", "Guang'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202535", "200314", "en-us", "511603", "Qianfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202536", "200314", "en-us", "511621", "Yuechi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202537", "200314", "en-us", "511622", "Wusheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202538", "200314", "en-us", "511623", "Linshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202539", "200314", "en-us", "511681", "Huaying City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202540", "200315", "en-us", "511702", "Tongchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202541", "200315", "en-us", "511703", "Dachuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202542", "200315", "en-us", "511722", "Xuanhan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202543", "200315", "en-us", "511723", "Kaijiang Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202544", "200315", "en-us", "511724", "Dazhu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202545", "200315", "en-us", "511725", "Quxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202546", "200315", "en-us", "511781", "Wanyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202547", "200316", "en-us", "511802", "Yucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202548", "200316", "en-us", "511803", "Mingshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202549", "200316", "en-us", "511822", "Yingjing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202550", "200316", "en-us", "511823", "Hanyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202551", "200316", "en-us", "511824", "Shimian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202552", "200316", "en-us", "511825", "Tianquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202553", "200316", "en-us", "511826", "Lushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202554", "200316", "en-us", "511827", "Baoxing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202555", "200317", "en-us", "511902", "Bazhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202556", "200317", "en-us", "511903", "Enyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202557", "200317", "en-us", "511921", "Tongjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202558", "200317", "en-us", "511922", "Nanjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202559", "200317", "en-us", "511923", "Pingchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202560", "200318", "en-us", "512002", "Yanjiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202561", "200318", "en-us", "512021", "Anyue County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202562", "200318", "en-us", "512022", "Lezhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202563", "200319", "en-us", "513201", "Barkam City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202564", "200319", "en-us", "513221", "Wenchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202565", "200319", "en-us", "513222", "Lixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202566", "200319", "en-us", "513223", "Maoxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202567", "200319", "en-us", "513224", "Songpan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202568", "200319", "en-us", "513225", "Jiuzhaigou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202569", "200319", "en-us", "513226", "Jinchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202570", "200319", "en-us", "513227", "Xiaojin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202571", "200319", "en-us", "513228", "Heishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202572", "200319", "en-us", "513230", "Rangtang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202573", "200319", "en-us", "513231", "Abaxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202574", "200319", "en-us", "513232", "Ruoergai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202575", "200319", "en-us", "513233", "Hongyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202576", "200320", "en-us", "513301", "Kangding City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202577", "200320", "en-us", "513322", "Luding County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202578", "200320", "en-us", "513323", "Danba County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202579", "200320", "en-us", "513324", "Jiulong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202580", "200320", "en-us", "513325", "Yajiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202581", "200320", "en-us", "513326", "Daofu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202582", "200320", "en-us", "513327", "Luhuo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202583", "200320", "en-us", "513328", "Ganzi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202584", "200320", "en-us", "513329", "Xinlong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202585", "200320", "en-us", "513330", "Dege County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202586", "200320", "en-us", "513331", "Baiyu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202587", "200320", "en-us", "513332", "Shiqu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202588", "200320", "en-us", "513333", "Sertar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202589", "200320", "en-us", "513334", "Litang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202590", "200320", "en-us", "513335", "Batang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202591", "200320", "en-us", "513336", "Xiangcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202592", "200320", "en-us", "513337", "Daocheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202593", "200320", "en-us", "513338", "Derong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202594", "200321", "en-us", "513401", "Xichang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202595", "200321", "en-us", "513422", "Tibetan Autonomous County of Muli", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202596", "200321", "en-us", "513423", "Yanyuan county", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202597", "200321", "en-us", "513424", "Dechang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202598", "200321", "en-us", "513425", "Huili County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202599", "200321", "en-us", "513426", "Huidong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202600", "200321", "en-us", "513427", "Ningnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202601", "200321", "en-us", "513428", "Puge County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202602", "200321", "en-us", "513429", "Butuo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202603", "200321", "en-us", "513430", "Jinyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202604", "200321", "en-us", "513431", "Zhaojue County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202605", "200321", "en-us", "513432", "Xide County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202606", "200321", "en-us", "513433", "MianNing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202607", "200321", "en-us", "513434", "Yuexi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202608", "200321", "en-us", "513435", "Ganluo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202609", "200321", "en-us", "513436", "Meigu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202610", "200321", "en-us", "513437", "Leibo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202611", "200322", "en-us", "520102", "Nanming District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202612", "200322", "en-us", "520103", "Yunyan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202613", "200322", "en-us", "520111", "Huaxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202614", "200322", "en-us", "520112", "Wudang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202616", "200322", "en-us", "520115", "Guanshanhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202617", "200322", "en-us", "520121", "Kaiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202618", "200322", "en-us", "520122", "Xifeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202619", "200322", "en-us", "520123", "Xiuwen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202620", "200322", "en-us", "520181", "Qingzhen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202615", "200322", "en-us", "520182", "Baiyun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202621", "200323", "en-us", "520201", "Zhongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202622", "200323", "en-us", "520203", "Liuzhi Special District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202623", "200323", "en-us", "520221", "Shuicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202624", "200323", "en-us", "520222", "Panzhou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202625", "200324", "en-us", "520302", "Honghuagang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202626", "200324", "en-us", "520303", "Huichuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202627", "200324", "en-us", "520304", "Bozhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202628", "200324", "en-us", "520322", "Tongzi Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202629", "200324", "en-us", "520323", "Suiyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202630", "200324", "en-us", "520324", "Zheng'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202631", "200324", "en-us", "520325", "Daozhen Gelaozu Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202632", "200324", "en-us", "520326", "Wuchuan Gelaozu Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202633", "200324", "en-us", "520327", "Fenggang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202634", "200324", "en-us", "520328", "Meitan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202635", "200324", "en-us", "520329", "Yuqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202636", "200324", "en-us", "520330", "Xishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202637", "200324", "en-us", "520381", "Chishui City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202638", "200324", "en-us", "520382", "Renhuai City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202639", "200325", "en-us", "520402", "Xixiu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202640", "200325", "en-us", "520403", "Pingba District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202641", "200325", "en-us", "520422", "PuDing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202642", "200325", "en-us", "520423", "Zhenning Buyizu and Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202643", "200325", "en-us", "520424", "Guanling Buyizu and Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202644", "200325", "en-us", "520425", "Ziyunzu Miaozu and Buyizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202645", "200326", "en-us", "520502", "Qixingguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202646", "200326", "en-us", "520521", "Dafang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202647", "200326", "en-us", "520522", "QianXi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202648", "200326", "en-us", "520523", "Jinsha County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202649", "200326", "en-us", "520524", "ZhiJin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202650", "200326", "en-us", "520525", "Nayong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202651", "200326", "en-us", "520526", "Weining Yizu, Huizu and Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202652", "200326", "en-us", "520527", "Hezhang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202653", "200327", "en-us", "520602", "Bijiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202654", "200327", "en-us", "520603", "Wanshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202655", "200327", "en-us", "520621", "Jiangkou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202656", "200327", "en-us", "520622", "Yuping Dongzu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202657", "200327", "en-us", "520623", "Shiqian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202658", "200327", "en-us", "520624", "Sinan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202659", "200327", "en-us", "520625", "Yinjiang Tujiazu and Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202660", "200327", "en-us", "520626", "Dejiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202661", "200327", "en-us", "520627", "Yanhe Tujiazu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202662", "200327", "en-us", "520628", "Miaozu Autonomous County of Songtao", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202663", "200328", "en-us", "522301", "XingYi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202664", "200328", "en-us", "522322", "Xingren County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202665", "200328", "en-us", "522323", "Pu'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202666", "200328", "en-us", "522324", "Qinglong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202667", "200328", "en-us", "522325", "Zhenfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202668", "200328", "en-us", "522326", "Wangmo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202669", "200328", "en-us", "522327", "Ceheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202670", "200328", "en-us", "522328", "Anlong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200330", "200329", "en-us", "522401", "Qiandongnan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202671", "200331", "en-us", "522601", "Kaili City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202672", "200331", "en-us", "522622", "Huangping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202673", "200331", "en-us", "522623", "Shibing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202674", "200331", "en-us", "522624", "Sansui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202675", "200331", "en-us", "522625", "Zhenyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202676", "200331", "en-us", "522626", "Cengong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202677", "200331", "en-us", "522627", "Tianzhu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202678", "200331", "en-us", "522628", "Jinping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202679", "200331", "en-us", "522629", "Jianhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202680", "200331", "en-us", "522630", "Taijiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202681", "200331", "en-us", "522631", "Liping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202682", "200331", "en-us", "522632", "Rongjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202683", "200331", "en-us", "522633", "Congjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202684", "200331", "en-us", "522634", "Leishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202685", "200331", "en-us", "522635", "Majiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202686", "200331", "en-us", "522636", "Danzhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202699", "200332", "en-us", "530102", "Wuhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202700", "200332", "en-us", "530103", "Panlong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202701", "200332", "en-us", "530111", "Guandu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202702", "200332", "en-us", "530112", "Xishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202703", "200332", "en-us", "530113", "Dongchuan District)", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202704", "200332", "en-us", "530114", "Chenggong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202706", "200332", "en-us", "530124", "Fumin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202707", "200332", "en-us", "530125", "Yiliang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202708", "200332", "en-us", "530126", "Shilin Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202709", "200332", "en-us", "530127", "Songming County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202710", "200332", "en-us", "530128", "Luquan Yizu and Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202711", "200332", "en-us", "530129", "Xundian Huizu and Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202712", "200332", "en-us", "530181", "Anning City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202705", "200332", "en-us", "530182", "Jinning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202713", "200333", "en-us", "530302", "Qilin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202714", "200333", "en-us", "530303", "Zhanyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202715", "200333", "en-us", "530321", "Longma County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202716", "200333", "en-us", "530322", "Luliang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202717", "200333", "en-us", "530323", "Shizong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202718", "200333", "en-us", "530324", "Luoping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202719", "200333", "en-us", "530325", "Fuyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202720", "200333", "en-us", "530326", "Huize County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202721", "200333", "en-us", "530381", "Xuanwei City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202722", "200334", "en-us", "530402", "Hongta District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202723", "200334", "en-us", "530403", "Jiangchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202724", "200334", "en-us", "530422", "Chengjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202725", "200334", "en-us", "530423", "Tonghai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202726", "200334", "en-us", "530424", "Huaning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202727", "200334", "en-us", "530425", "Yimen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202728", "200334", "en-us", "530426", "Eshan Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202729", "200334", "en-us", "530427", "Xinping Yizu and Daizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202730", "200334", "en-us", "530428", "Yuanjiang Hanizu, Yizu and Daizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202731", "200335", "en-us", "530502", "Longyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202732", "200335", "en-us", "530521", "Shidian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202733", "200335", "en-us", "530523", "Longling county", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202734", "200335", "en-us", "530524", "Changning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202735", "200335", "en-us", "530581", "Tengchong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202736", "200336", "en-us", "530602", "Zhaoyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202737", "200336", "en-us", "530621", "Ludian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202738", "200336", "en-us", "530622", "Qiaojia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202739", "200336", "en-us", "530623", "Yanjin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202740", "200336", "en-us", "530624", "Daguan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202741", "200336", "en-us", "530625", "Yongshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202742", "200336", "en-us", "530626", "Suijiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202743", "200336", "en-us", "530627", "Zhenxiong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202744", "200336", "en-us", "530628", "Yiliang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202745", "200336", "en-us", "530629", "Weixin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202746", "200336", "en-us", "530630", "Shuifu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202747", "200337", "en-us", "530702", "Gucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202748", "200337", "en-us", "530721", "Yulong Naxizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202749", "200337", "en-us", "530722", "Yongsheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202750", "200337", "en-us", "530723", "Huaping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202751", "200337", "en-us", "530724", "Ninglang Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202752", "200338", "en-us", "530802", "Simao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202753", "200338", "en-us", "530821", "Ninger Hanizu and Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202754", "200338", "en-us", "530822", "Mojiang Hanizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202755", "200338", "en-us", "530823", "Jingdong Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202756", "200338", "en-us", "530824", "Jinggu Daizu and Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202757", "200338", "en-us", "530825", "Zhenyuan Yizu, Hanizu and Lahuzu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202758", "200338", "en-us", "530826", "Jiangcheng Hanizu and Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202759", "200338", "en-us", "530827", "Menglian Daizu, Lahuzu and Vazu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202760", "200338", "en-us", "530828", "Lancang Lahuzu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202761", "200338", "en-us", "530829", "Ximeng Vazu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202762", "200339", "en-us", "530902", "Linxiang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202763", "200339", "en-us", "530921", "Fengqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202764", "200339", "en-us", "530922", "Yunxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202765", "200339", "en-us", "530923", "Yongde County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202766", "200339", "en-us", "530924", "Zhenkang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202767", "200339", "en-us", "530925", "Lahu-Va-Blang-Dai Autonomous County of Shuangjiang", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202768", "200339", "en-us", "530926", "Gengma Daizu and Vazu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202769", "200339", "en-us", "530927", "Cangyuan Vazu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202770", "200340", "en-us", "532301", "Chuxiong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202771", "200340", "en-us", "532322", "Shuangbai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202772", "200340", "en-us", "532323", "Mouding County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202773", "200340", "en-us", "532324", "Nanhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202774", "200340", "en-us", "532325", "Yao'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202775", "200340", "en-us", "532326", "Dayao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202776", "200340", "en-us", "532327", "Yongren County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202777", "200340", "en-us", "532328", "Yuanmou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202778", "200340", "en-us", "532329", "Wuding County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202779", "200340", "en-us", "532331", "Lufeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202780", "200341", "en-us", "532501", "Gejiu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202781", "200341", "en-us", "532502", "Kaiyuan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202782", "200341", "en-us", "532503", "Mengzi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202783", "200341", "en-us", "532504", "Mile City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202784", "200341", "en-us", "532523", "Pingbian Miaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202785", "200341", "en-us", "532524", "Jianshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202786", "200341", "en-us", "532525", "Shiping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202787", "200341", "en-us", "532527", "Luxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202788", "200341", "en-us", "532528", "Yuanyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202789", "200341", "en-us", "532529", "Honghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202790", "200341", "en-us", "532530", "Jinping Miaozu, Yaozu, Daizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202791", "200341", "en-us", "532531", "LvChun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202792", "200341", "en-us", "532532", "Hekou Yaozu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202793", "200342", "en-us", "532601", "Wenshan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202794", "200342", "en-us", "532622", "Yanshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202795", "200342", "en-us", "532623", "Xichou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202796", "200342", "en-us", "532624", "Malipo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202797", "200342", "en-us", "532625", "Maguan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202798", "200342", "en-us", "532626", "Qiubei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202799", "200342", "en-us", "532627", "Guangnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202800", "200342", "en-us", "532628", "Funing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202801", "200343", "en-us", "532801", "Jinghong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202802", "200343", "en-us", "532822", "Menghai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202803", "200343", "en-us", "532823", "Mengla County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202804", "200344", "en-us", "532901", "Dali City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202805", "200344", "en-us", "532922", "Yangbi Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202806", "200344", "en-us", "532923", "Xiangyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202807", "200344", "en-us", "532924", "Binchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202808", "200344", "en-us", "532925", "Midu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202809", "200344", "en-us", "532926", "Nanjian Yizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202810", "200344", "en-us", "532927", "Weishan Yizu Huizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202811", "200344", "en-us", "532928", "Yongping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202812", "200344", "en-us", "532929", "Yunlong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202813", "200344", "en-us", "532930", "Eryuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202814", "200344", "en-us", "532931", "Jianchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202815", "200344", "en-us", "532932", "Heqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202816", "200345", "en-us", "533102", "Ruili City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202817", "200345", "en-us", "533103", "Mangshi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202818", "200345", "en-us", "533122", "Lianghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202819", "200345", "en-us", "533123", "Yingjiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202820", "200345", "en-us", "533124", "Longchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202821", "200346", "en-us", "533301", "Lushui City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202822", "200346", "en-us", "533323", "Fugong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202823", "200346", "en-us", "533324", "Derung-Nu Autonomous County Gongshan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202824", "200346", "en-us", "533325", "Lanping Baizu and Pumizu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202825", "200347", "en-us", "533401", "Shangri-la City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202826", "200347", "en-us", "533422", "Deqin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202827", "200347", "en-us", "533423", "Weixi Lisuzu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202829", "200348", "en-us", "540103", "Duolong Deqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202830", "200348", "en-us", "540121", "Linzhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202831", "200348", "en-us", "540122", "Damxung County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202832", "200348", "en-us", "540123", "Nyemo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202833", "200348", "en-us", "540124", "Qushui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202834", "200348", "en-us", "540126", "Dazi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202835", "200348", "en-us", "540127", "Maizhokunggar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202828", "200348", "en-us", "540128", "Chengguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202836", "200349", "en-us", "540202", "Sangzhuzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202837", "200349", "en-us", "540221", "Namling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202838", "200349", "en-us", "540222", "Gyangze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202839", "200349", "en-us", "540223", "Tingri County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202840", "200349", "en-us", "540224", "Sagya County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202841", "200349", "en-us", "540225", "Lazi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202842", "200349", "en-us", "540226", "Ngamring County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202843", "200349", "en-us", "540227", "Xietongmen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202844", "200349", "en-us", "540228", "Bainang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202845", "200349", "en-us", "540229", "Rinbung County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202846", "200349", "en-us", "540230", "Kangmar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202847", "200349", "en-us", "540231", "Dinggye County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202848", "200349", "en-us", "540232", "Zhongba County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202849", "200349", "en-us", "540233", "Yadong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202850", "200349", "en-us", "540234", "Gyirong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202851", "200349", "en-us", "540235", "Nyalam County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202852", "200349", "en-us", "540236", "Saga County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202853", "200349", "en-us", "540237", "Kamba County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202854", "200350", "en-us", "540302", "Karuo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202855", "200350", "en-us", "540321", "Jomda County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202856", "200350", "en-us", "540322", "Gonjo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202857", "200350", "en-us", "540323", "Riwoqe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202858", "200350", "en-us", "540324", "Dengqen", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202859", "200350", "en-us", "540325", "Chagyab County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202860", "200350", "en-us", "540326", "Baxoi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202861", "200350", "en-us", "540327", "Zuogong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202862", "200350", "en-us", "540328", "Markam County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202863", "200350", "en-us", "540329", "Lhorong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202864", "200350", "en-us", "540330", "Banbar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202865", "200351", "en-us", "540402", "Bayi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202866", "200351", "en-us", "540421", "Gongbujiangda County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202867", "200351", "en-us", "540422", "Mainling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202868", "200351", "en-us", "540423", "Medog County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202869", "200351", "en-us", "540424", "Bome County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202870", "200351", "en-us", "540425", "Zayu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202871", "200351", "en-us", "540426", "Nang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202872", "200352", "en-us", "540502", "Naidong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202873", "200352", "en-us", "540521", "Chanang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202874", "200352", "en-us", "540522", "Konggar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202875", "200352", "en-us", "540523", "Sangri County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202876", "200352", "en-us", "540524", "Qonggyai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202877", "200352", "en-us", "540525", "Qusum County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202878", "200352", "en-us", "540526", "Comai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202879", "200352", "en-us", "540527", "Lhozhag County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202880", "200352", "en-us", "540528", "Gyaca County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202881", "200352", "en-us", "540529", "Lhunze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202882", "200352", "en-us", "540530", "Cona County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202883", "200352", "en-us", "540531", "Nagarze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202884", "200353", "en-us", "542421", "Nagchu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202885", "200353", "en-us", "542422", "Lhari County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202886", "200353", "en-us", "542423", "Biru County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202887", "200353", "en-us", "542424", "Nyainrong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202888", "200353", "en-us", "542425", "Anduo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202889", "200353", "en-us", "542426", "Shenza County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202890", "200353", "en-us", "542427", "Sog County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202891", "200353", "en-us", "542428", "Baingoin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202892", "200353", "en-us", "542429", "Baqing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202893", "200353", "en-us", "542430", "Nyima County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202894", "200353", "en-us", "542431", "Shuanghu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202895", "200354", "en-us", "542521", "Purang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202896", "200354", "en-us", "542522", "Zanda County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202897", "200354", "en-us", "542523", "Gar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202898", "200354", "en-us", "542524", "Rutog County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202899", "200354", "en-us", "542525", "Ge'gyai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202900", "200354", "en-us", "542526", "Gerze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202901", "200354", "en-us", "542527", "Coqen County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202903", "200355", "en-us", "610103", "Beilin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202904", "200355", "en-us", "610104", "Lianhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202905", "200355", "en-us", "610111", "Baqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202906", "200355", "en-us", "610112", "Weiyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202907", "200355", "en-us", "610113", "Yanta District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202908", "200355", "en-us", "610114", "Yanliang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202909", "200355", "en-us", "610115", "Lintong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202911", "200355", "en-us", "610117", "Gaoling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202913", "200355", "en-us", "610122", "Lantian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202914", "200355", "en-us", "610124", "Zhouzhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202902", "200355", "en-us", "610125", "Xincheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202910", "200355", "en-us", "610126", "Chang'an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202912", "200355", "en-us", "610127", "Huyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202915", "200356", "en-us", "610202", "Wangyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202916", "200356", "en-us", "610203", "Yintai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202917", "200356", "en-us", "610204", "Yaozhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202918", "200356", "en-us", "610222", "Yijun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202919", "200357", "en-us", "610302", "Weibin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202920", "200357", "en-us", "610303", "Jintai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202921", "200357", "en-us", "610304", "Chencang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202922", "200357", "en-us", "610322", "Fengxiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202923", "200357", "en-us", "610323", "Qishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202924", "200357", "en-us", "610324", "Fufeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202925", "200357", "en-us", "610326", "Meixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202926", "200357", "en-us", "610327", "Longxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202927", "200357", "en-us", "610328", "Qianyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202928", "200357", "en-us", "610329", "Linyou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202929", "200357", "en-us", "610330", "Fengxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202930", "200357", "en-us", "610331", "Taibai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202931", "200358", "en-us", "610402", "Qindu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202932", "200358", "en-us", "610403", "Yangling District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202933", "200358", "en-us", "610404", "Weicheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202934", "200358", "en-us", "610422", "Sanyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202935", "200358", "en-us", "610423", "Jingyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202936", "200358", "en-us", "610424", "Qianxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202937", "200358", "en-us", "610425", "Liquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202938", "200358", "en-us", "610426", "Yongshou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202939", "200358", "en-us", "610427", "Binxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202940", "200358", "en-us", "610428", "Changwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202941", "200358", "en-us", "610429", "Xunyi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202942", "200358", "en-us", "610430", "Chunhua County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202943", "200358", "en-us", "610431", "Wugong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202944", "200358", "en-us", "610481", "Xingping City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202945", "200359", "en-us", "610502", "Linwei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202946", "200359", "en-us", "610503", "Huazhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202947", "200359", "en-us", "610522", "Tongguan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202948", "200359", "en-us", "610523", "Dali County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202949", "200359", "en-us", "610524", "Heyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202950", "200359", "en-us", "610525", "Chengcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202951", "200359", "en-us", "610526", "Pucheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202952", "200359", "en-us", "610527", "Baishui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202953", "200359", "en-us", "610528", "Fuping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202954", "200359", "en-us", "610581", "Hancheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202955", "200359", "en-us", "610582", "Huayin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202956", "200360", "en-us", "610602", "Baota District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202957", "200360", "en-us", "610603", "Ansai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202958", "200360", "en-us", "610621", "Yanchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202959", "200360", "en-us", "610622", "Yanchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202960", "200360", "en-us", "610623", "Zichang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202961", "200360", "en-us", "610625", "Zhidan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202962", "200360", "en-us", "610626", "Wuqi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202963", "200360", "en-us", "610627", "Ganquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202964", "200360", "en-us", "610628", "Fu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202965", "200360", "en-us", "610629", "Luochuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202966", "200360", "en-us", "610630", "Yichuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202967", "200360", "en-us", "610631", "Huanglong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202968", "200360", "en-us", "610632", "Huangling County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202969", "200361", "en-us", "610702", "Hantai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202970", "200361", "en-us", "610721", "Nanzheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202971", "200361", "en-us", "610722", "Chenggu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202972", "200361", "en-us", "610723", "Yang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202973", "200361", "en-us", "610724", "Xixiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202974", "200361", "en-us", "610725", "Mianxian county", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202975", "200361", "en-us", "610726", "Ningqiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202976", "200361", "en-us", "610727", "Lueyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202977", "200361", "en-us", "610728", "Zhenba County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202978", "200361", "en-us", "610729", "Liuba County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202979", "200361", "en-us", "610730", "Foping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202980", "200362", "en-us", "610802", "Yuyang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202981", "200362", "en-us", "610803", "Hengshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202982", "200362", "en-us", "610822", "Fugu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202983", "200362", "en-us", "610824", "Jingbian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202984", "200362", "en-us", "610825", "Dingbian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202985", "200362", "en-us", "610826", "Suide County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202986", "200362", "en-us", "610827", "Mizhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202987", "200362", "en-us", "610828", "Jia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202988", "200362", "en-us", "610829", "Wubu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202989", "200362", "en-us", "610830", "Qingjian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202990", "200362", "en-us", "610831", "Zizhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202991", "200362", "en-us", "610832", "Shenmu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202992", "200363", "en-us", "610902", "Hanbin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202993", "200363", "en-us", "610921", "Hanyin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202994", "200363", "en-us", "610922", "Shiquan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202995", "200363", "en-us", "610923", "Ningshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202996", "200363", "en-us", "610924", "Ziyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202997", "200363", "en-us", "610925", "Lang'ao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202998", "200363", "en-us", "610926", "Pingli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("202999", "200363", "en-us", "610927", "Zhenping County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203000", "200363", "en-us", "610928", "Xunyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203001", "200363", "en-us", "610929", "Baihe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203002", "200364", "en-us", "611002", "Shangzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203003", "200364", "en-us", "611021", "Luonan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203004", "200364", "en-us", "611022", "Danfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203005", "200364", "en-us", "611023", "Shangnan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203006", "200364", "en-us", "611024", "Shanyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203007", "200364", "en-us", "611025", "Zhen'an County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203008", "200364", "en-us", "611026", "Zhashui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203641", "203640", "en-us", "611201", "Airport New City, Xixian New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203642", "203640", "en-us", "611202", "Fengdong New City, Xixian New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203643", "203640", "en-us", "611203", "Qinhan New City, Xixian New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203644", "203640", "en-us", "611204", "Fengxi New City, Xixian New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203645", "203640", "en-us", "611205", "Jinghe New City, Xixian New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203009", "200365", "en-us", "620102", "Chengguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203010", "200365", "en-us", "620103", "Qilihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203011", "200365", "en-us", "620104", "Xigu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203012", "200365", "en-us", "620105", "Anning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203013", "200365", "en-us", "620111", "Honggu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203014", "200365", "en-us", "620121", "Yongdeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203015", "200365", "en-us", "620122", "Gaolan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203016", "200365", "en-us", "620123", "Yuzhong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203017", "200368", "en-us", "620201", "Jiayuguan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203018", "200369", "en-us", "620302", "Jinchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203019", "200369", "en-us", "620321", "Yongchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203020", "200370", "en-us", "620402", "Baiyin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203021", "200370", "en-us", "620403", "Pingchuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203022", "200370", "en-us", "620421", "Jingyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203023", "200370", "en-us", "620422", "Huining County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203024", "200370", "en-us", "620423", "Jingtai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203025", "200371", "en-us", "620502", "Qinzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203026", "200371", "en-us", "620503", "Maiji District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203027", "200371", "en-us", "620521", "Qingshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203028", "200371", "en-us", "620522", "Qinan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203029", "200371", "en-us", "620523", "Gangu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203030", "200371", "en-us", "620524", "Wushan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203031", "200371", "en-us", "620525", "Zhangjiachuan Hui Autonomy County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203032", "200372", "en-us", "620602", "Liangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203033", "200372", "en-us", "620621", "Minqin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203034", "200372", "en-us", "620622", "Gulang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203035", "200372", "en-us", "620623", "Tianzhu Zang Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203036", "200373", "en-us", "620702", "Ganshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203037", "200373", "en-us", "620721", "Yugur Autonomous County Of Sunan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203038", "200373", "en-us", "620722", "Minle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203039", "200373", "en-us", "620723", "Linze County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203040", "200373", "en-us", "620724", "Gaotai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203041", "200373", "en-us", "620725", "Shandan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203042", "200374", "en-us", "620802", "Kongtong?District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203043", "200374", "en-us", "620821", "Jingchuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203044", "200374", "en-us", "620822", "Lingtai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203045", "200374", "en-us", "620823", "Chongxin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203046", "200374", "en-us", "620824", "Huating County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203047", "200374", "en-us", "620825", "Zhuanglang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203048", "200374", "en-us", "620826", "Jingning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203049", "200375", "en-us", "620902", "Suzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203050", "200375", "en-us", "620921", "Jinta County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203051", "200375", "en-us", "620922", "Guazhou County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203052", "200375", "en-us", "620923", "Mongolian Autonomous County Of Subei", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203053", "200375", "en-us", "620924", "Kazak Autonomous County Of Aksay", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203054", "200375", "en-us", "620981", "Yumen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203055", "200375", "en-us", "620982", "Dunhuang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203056", "200376", "en-us", "621002", "Xifeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203057", "200376", "en-us", "621021", "Qingcheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203058", "200376", "en-us", "621022", "Huan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203059", "200376", "en-us", "621023", "Huachi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203060", "200376", "en-us", "621024", "Heshui County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203061", "200376", "en-us", "621025", "Zhengning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203062", "200376", "en-us", "621026", "Ningxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203063", "200376", "en-us", "621027", "Zhenyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203064", "200377", "en-us", "621102", "Anning District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203065", "200377", "en-us", "621121", "Tongwei County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203066", "200377", "en-us", "621122", "Longxi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203067", "200377", "en-us", "621123", "Weiyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203068", "200377", "en-us", "621124", "Lintao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203069", "200377", "en-us", "621125", "Zhangxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203070", "200377", "en-us", "621126", "Minxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203071", "200378", "en-us", "621202", "Wudu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203072", "200378", "en-us", "621221", "Chengxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203073", "200378", "en-us", "621222", "Wenxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203074", "200378", "en-us", "621223", "Tanchang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203075", "200378", "en-us", "621224", "Kangxian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203076", "200378", "en-us", "621225", "Xihe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203077", "200378", "en-us", "621226", "Lixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203078", "200378", "en-us", "621227", "Huixian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203079", "200378", "en-us", "621228", "Liangdang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("200367", "200366", "en-us", "621301", "Lanzhou New Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203080", "200379", "en-us", "622901", "Linxia City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203081", "200379", "en-us", "622921", "Linxia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203082", "200379", "en-us", "622922", "Kangle County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203083", "200379", "en-us", "622923", "Yongjing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203084", "200379", "en-us", "622924", "Guanghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203085", "200379", "en-us", "622925", "Hezheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203086", "200379", "en-us", "622926", "Dongxiang Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203087", "200379", "en-us", "622927", "Jishishan Baoan Nationality, Dongxiang Nationality and Sala Nationality Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203088", "200380", "en-us", "623001", "Hezuo City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203089", "200380", "en-us", "623021", "Lintan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203090", "200380", "en-us", "623022", "Zhuoni County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203091", "200380", "en-us", "623023", "Zhouqu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203092", "200380", "en-us", "623024", "Diebu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203093", "200380", "en-us", "623025", "Quma County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203094", "200380", "en-us", "623026", "Luqu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203095", "200380", "en-us", "623027", "Xiahe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203096", "200381", "en-us", "630102", "Chengdong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203098", "200381", "en-us", "630104", "Chengxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203099", "200381", "en-us", "630105", "Chengbei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203100", "200381", "en-us", "630121", "Datong Hui And Tu?Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203101", "200381", "en-us", "630122", "Huangzhong County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203102", "200381", "en-us", "630123", "Huangyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203097", "200381", "en-us", "630124", "Chengzhong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203103", "200382", "en-us", "630202", "Ledu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203104", "200382", "en-us", "630203", "Pingan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203105", "200382", "en-us", "630222", "Minhe Hui And Tu Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203106", "200382", "en-us", "630223", "Tu Autonomous County Of Huzhu", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203107", "200382", "en-us", "630224", "Hui Autonomous County Of Hualong", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203108", "200382", "en-us", "630225", "Salar Autonomous County of Xunhua", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203109", "200383", "en-us", "632221", "Salar Autonomous County Of Xunhua", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203110", "200383", "en-us", "632222", "Qilian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203111", "200383", "en-us", "632223", "Haiyan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203112", "200383", "en-us", "632224", "Gangcha County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203113", "200384", "en-us", "632321", "Tongren County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203114", "200384", "en-us", "632322", "Jainca County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203115", "200384", "en-us", "632323", "Zeku County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203116", "200384", "en-us", "632324", "Mongolian Autonomous County Of Henan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203117", "200385", "en-us", "632521", "Gonghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203118", "200385", "en-us", "632522", "Tongde County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203119", "200385", "en-us", "632523", "Guide County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203120", "200385", "en-us", "632524", "Xinghai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203121", "200385", "en-us", "632525", "Guinan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203122", "200386", "en-us", "632621", "Maqin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203123", "200386", "en-us", "632622", "Banma County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203124", "200386", "en-us", "632623", "Gande County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203125", "200386", "en-us", "632624", "Dari County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203126", "200386", "en-us", "632625", "Jiuzhi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203127", "200386", "en-us", "632626", "Maduo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203128", "200387", "en-us", "632701", "Yushu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203129", "200387", "en-us", "632722", "Zadoi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203130", "200387", "en-us", "632723", "Chindu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203131", "200387", "en-us", "632724", "Zhiduo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203132", "200387", "en-us", "632725", "Nangqian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203133", "200387", "en-us", "632726", "Qumarl?§ob Cou", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203134", "200388", "en-us", "632801", "Geermu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203135", "200388", "en-us", "632802", "Delhi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203136", "200388", "en-us", "632821", "Wulan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203137", "200388", "en-us", "632822", "Dulan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203138", "200388", "en-us", "632823", "Tianjun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203139", "200388", "en-us", "632824", "Lenghu", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203140", "200388", "en-us", "632825", "Dachai", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203141", "200388", "en-us", "632826", "Mangya", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203142", "200389", "en-us", "640104", "Xingqing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203143", "200389", "en-us", "640105", "Xixia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203144", "200389", "en-us", "640106", "Jinfeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203145", "200389", "en-us", "640121", "Yongning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203146", "200389", "en-us", "640122", "Helan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203147", "200389", "en-us", "640181", "Lingwu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203148", "200390", "en-us", "640202", "Dawukou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203149", "200390", "en-us", "640205", "Huinong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203150", "200390", "en-us", "640221", "Pingluo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203151", "200391", "en-us", "640302", "Litong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203152", "200391", "en-us", "640303", "Hongsibao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203153", "200391", "en-us", "640323", "Yanchi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203154", "200391", "en-us", "640324", "Tongxin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203155", "200391", "en-us", "640381", "Qingtongxia City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203156", "200392", "en-us", "640402", "Yuanzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203157", "200392", "en-us", "640422", "Xiji County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203158", "200392", "en-us", "640423", "Longde County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203159", "200392", "en-us", "640424", "Jingyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203160", "200392", "en-us", "640425", "Pengyang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203161", "200393", "en-us", "640502", "Shapotou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203162", "200393", "en-us", "640521", "Zhongning County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203163", "200393", "en-us", "640522", "Haiyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203164", "200394", "en-us", "650102", "Tianshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203165", "200394", "en-us", "650103", "Saybag District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203166", "200394", "en-us", "650104", "Xinshi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203167", "200394", "en-us", "650105", "Shuimogou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203168", "200394", "en-us", "650106", "Toutunhe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203169", "200394", "en-us", "650107", "Dabancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203170", "200394", "en-us", "650109", "Midong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203171", "200394", "en-us", "650121", "Urumqi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203172", "200395", "en-us", "650202", "Dushanzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203173", "200395", "en-us", "650203", "Kelamayi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203174", "200395", "en-us", "650204", "Baijiantan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203175", "200395", "en-us", "650205", "Urho District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203176", "200396", "en-us", "650402", "Gaochang?District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203177", "200396", "en-us", "650421", "Shanshan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203178", "200396", "en-us", "650422", "Tuokexun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203179", "200397", "en-us", "650502", "Yizhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203180", "200397", "en-us", "650521", "Balikun Kazakh Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203181", "200397", "en-us", "650522", "Yiwu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203663", "203662", "en-us", "650601", "Aral City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203665", "203664", "en-us", "650701", "Tiemenguan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203667", "203666", "en-us", "650801", "Tumxuk City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203669", "203668", "en-us", "650901", "Kokdala City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203671", "203670", "en-us", "651001", "Shuanghe City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203673", "203672", "en-us", "651101", "Wujiaqu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203675", "203674", "en-us", "651201", "Shihezi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203677", "203676", "en-us", "651301", "Beitun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203679", "203678", "en-us", "651401", "Kunyu City Corps", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203182", "200398", "en-us", "652301", "Changji City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203183", "200398", "en-us", "652302", "Fukang City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203184", "200398", "en-us", "652323", "Hutubi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203185", "200398", "en-us", "652324", "Manasi Xian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203186", "200398", "en-us", "652325", "Qitai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203187", "200398", "en-us", "652327", "Jimusaer County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203188", "200398", "en-us", "652328", "Mulei Kazakh Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203189", "200399", "en-us", "652701", "Bole City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203190", "200399", "en-us", "652702", "Alashankou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203191", "200399", "en-us", "652722", "Jinghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203192", "200399", "en-us", "652723", "Wenquan Xian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203193", "200400", "en-us", "652801", "Kuerle City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203194", "200400", "en-us", "652822", "Bugur County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203195", "200400", "en-us", "652823", "Yuli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203196", "200400", "en-us", "652824", "Ruoqiang County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203197", "200400", "en-us", "652825", "Qiemo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203198", "200400", "en-us", "652826", "Yanqi Hui Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203199", "200400", "en-us", "652827", "Hejing County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203200", "200400", "en-us", "652828", "Heshuo County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203201", "200400", "en-us", "652829", "Bohu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203202", "200401", "en-us", "652901", "Aksu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203203", "200401", "en-us", "652922", "Wensu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203204", "200401", "en-us", "652923", "Kuqa County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203205", "200401", "en-us", "652924", "Shaya County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203206", "200401", "en-us", "652925", "Xinhe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203207", "200401", "en-us", "652926", "Baicheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203208", "200401", "en-us", "652927", "Wushi Xian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203209", "200401", "en-us", "652928", "Awat County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203210", "200401", "en-us", "652929", "Kalpin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203211", "200402", "en-us", "653001", "Atush City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203212", "200402", "en-us", "653022", "Aketao County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203213", "200402", "en-us", "653023", "Aheqi County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203214", "200402", "en-us", "653024", "Wuqia County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203215", "200403", "en-us", "653101", "Qeshqer Shehiri", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203216", "200403", "en-us", "653121", "Shufu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203217", "200403", "en-us", "653122", "Shule County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203218", "200403", "en-us", "653123", "Yengisar County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203219", "200403", "en-us", "653124", "Poskam?Country", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203220", "200403", "en-us", "653125", "Yarkant?County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203221", "200403", "en-us", "653126", "Yecheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203222", "200403", "en-us", "653127", "Makit County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203223", "200403", "en-us", "653128", "Yopurga County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203224", "200403", "en-us", "653129", "Payzawat?County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203225", "200403", "en-us", "653130", "Marabishi?County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203226", "200403", "en-us", "653131", "Tajik Autonomous County of Taxkorgan", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203227", "200404", "en-us", "653201", "Hetian City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203228", "200404", "en-us", "653221", "Hetian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203229", "200404", "en-us", "653222", "Karakax County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203230", "200404", "en-us", "653223", "Pishan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203231", "200404", "en-us", "653224", "Lop County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203232", "200404", "en-us", "653225", "Qira County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203233", "200404", "en-us", "653226", "Yutian County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203234", "200404", "en-us", "653227", "Minfeng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203235", "200405", "en-us", "654002", "Yining City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203236", "200405", "en-us", "654003", "Kuitun City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203237", "200405", "en-us", "654004", "Khorgos City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203238", "200405", "en-us", "654021", "Yining County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203239", "200405", "en-us", "654022", "Qapqal Xibe Autonomous County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203240", "200405", "en-us", "654023", "Huocheng County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203241", "200405", "en-us", "654024", "Gongliu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203242", "200405", "en-us", "654025", "Xinyuan County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203243", "200405", "en-us", "654026", "Zhaosu County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203244", "200405", "en-us", "654027", "Tekes County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203245", "200405", "en-us", "654028", "Nilka County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203246", "200406", "en-us", "654201", "Tacheng City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203247", "200406", "en-us", "654202", "Wusu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203248", "200406", "en-us", "654221", "Emin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203249", "200406", "en-us", "654223", "Shawan county", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203250", "200406", "en-us", "654224", "Toli County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203251", "200406", "en-us", "654225", "Yumin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203252", "200406", "en-us", "654226", "Mongolian Autonomous County of Hoboksar?", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203253", "200407", "en-us", "654301", "Altay?City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203254", "200407", "en-us", "654321", "Burqin County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203255", "200407", "en-us", "654322", "Fuyun County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203256", "200407", "en-us", "654323", "Fuhai County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203257", "200407", "en-us", "654324", "Habahe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203258", "200407", "en-us", "654325", "Qinghe County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203259", "200407", "en-us", "654326", "Jeminay County", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203260", "200408", "en-us", "710101", "Zhongzheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203261", "200408", "en-us", "710102", "Datong", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203262", "200408", "en-us", "710103", "Zhongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203263", "200408", "en-us", "710104", "Songshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203264", "200408", "en-us", "710105", "Datong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203265", "200408", "en-us", "710106", "Wanhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203266", "200408", "en-us", "710107", "Xinyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203267", "200408", "en-us", "710108", "Shilin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203268", "200408", "en-us", "710109", "Bey Tow Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203269", "200408", "en-us", "710110", "Neihu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203270", "200408", "en-us", "710111", "Nangang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203271", "200408", "en-us", "710112", "Nangang Area", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203272", "200409", "en-us", "710201", "Xinxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203273", "200409", "en-us", "710202", "Qianjin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203274", "200409", "en-us", "710203", "Lingya District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203275", "200409", "en-us", "710204", "Yancheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203276", "200409", "en-us", "710205", "Gushan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203277", "200409", "en-us", "710206", "Cijin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203278", "200409", "en-us", "710207", "Qianzyhen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203279", "200409", "en-us", "710208", "Sanmin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203280", "200409", "en-us", "710209", "Zuoying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203281", "200409", "en-us", "710210", "Nanzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203282", "200409", "en-us", "710211", "Xiaogang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203283", "200409", "en-us", "710212", "Renwu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203284", "200409", "en-us", "710213", "Dashe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203285", "200409", "en-us", "710214", "Gangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203286", "200409", "en-us", "710215", "Luzhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203287", "200409", "en-us", "710216", "Alian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203288", "200409", "en-us", "710217", "Tianliao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203289", "200409", "en-us", "710218", "Yanchao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203290", "200409", "en-us", "710219", "Qiaotou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203291", "200409", "en-us", "710220", "Ziguan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203292", "200409", "en-us", "710221", "Mituo District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203293", "200409", "en-us", "710222", "Yongan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203294", "200409", "en-us", "710223", "Hunei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203295", "200409", "en-us", "710224", "Fengshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203296", "200409", "en-us", "710225", "Daliao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203297", "200409", "en-us", "710226", "Linyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203298", "200409", "en-us", "710227", "Niaosong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203299", "200409", "en-us", "710228", "Dashu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203300", "200409", "en-us", "710229", "Qishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203301", "200409", "en-us", "710230", "Meinong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203302", "200409", "en-us", "710231", "Liugui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203303", "200409", "en-us", "710232", "Neimen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203304", "200409", "en-us", "710233", "Shanlin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203305", "200409", "en-us", "710234", "Jiaxian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203306", "200409", "en-us", "710235", "Taoyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203307", "200409", "en-us", "710236", "Namasia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203308", "200409", "en-us", "710237", "Maolin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203309", "200409", "en-us", "710238", "Jiading District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203310", "200410", "en-us", "710301", "Central and Western District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203311", "200410", "en-us", "710302", "North District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203312", "200410", "en-us", "710303", "South District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203313", "200410", "en-us", "710304", "North District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203314", "200410", "en-us", "710305", "Anping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203315", "200410", "en-us", "710306", "Annan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203316", "200410", "en-us", "710307", "Yongkang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203317", "200410", "en-us", "710308", "Guiren District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203318", "200410", "en-us", "710309", "Xinhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203319", "200410", "en-us", "710310", "Zuozhen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203320", "200410", "en-us", "710311", "Yujing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203321", "200410", "en-us", "710312", "Nanxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203322", "200410", "en-us", "710313", "Nanhua", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203323", "200410", "en-us", "710314", "Rende District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203324", "200410", "en-us", "710315", "Guanmiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203325", "200410", "en-us", "710316", "Longqi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203326", "200410", "en-us", "710317", "Guantian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203327", "200410", "en-us", "710318", "Madou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203328", "200410", "en-us", "710319", "Jiali District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203329", "200410", "en-us", "710320", "Xigang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203330", "200410", "en-us", "710321", "Cigu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203331", "200410", "en-us", "710322", "Jiangjyun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203332", "200410", "en-us", "710323", "Syuejia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203333", "200410", "en-us", "710324", "Beimen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203334", "200410", "en-us", "710325", "Xinying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203335", "200410", "en-us", "710326", "Houbi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203336", "200410", "en-us", "710327", "Baihe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203337", "200410", "en-us", "710328", "Dongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203338", "200410", "en-us", "710329", "Lioujia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203339", "200410", "en-us", "710330", "Xiaying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203340", "200410", "en-us", "710331", "Liouying District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203341", "200410", "en-us", "710332", "Yanshuei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203342", "200410", "en-us", "710333", "Shanhua District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203343", "200410", "en-us", "710334", "Danei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203344", "200410", "en-us", "710335", "Shanshang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203345", "200410", "en-us", "710336", "Sinshih District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203346", "200410", "en-us", "710337", "Anding District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203347", "200411", "en-us", "710401", "Central District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203348", "200411", "en-us", "710402", "East District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203349", "200411", "en-us", "710403", "South District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203350", "200411", "en-us", "710404", "West District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203351", "200411", "en-us", "710405", "North District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203352", "200411", "en-us", "710406", "Beitun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203353", "200411", "en-us", "710407", "Xitun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203354", "200411", "en-us", "710408", "Nantun District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203355", "200411", "en-us", "710409", "Taiping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203356", "200411", "en-us", "710410", "Dali District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203357", "200411", "en-us", "710411", "Wufeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203358", "200411", "en-us", "710412", "Wuri District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203359", "200411", "en-us", "710413", "Fengyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203360", "200411", "en-us", "710414", "Houli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203361", "200411", "en-us", "710415", "Shigang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203362", "200411", "en-us", "710416", "Dongshi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203363", "200411", "en-us", "710417", "Heping District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203364", "200411", "en-us", "710418", "Xinshe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203365", "200411", "en-us", "710419", "Tanzi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203366", "200411", "en-us", "710420", "Daya District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203367", "200411", "en-us", "710421", "Shengang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203368", "200411", "en-us", "710422", "Dadu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203369", "200411", "en-us", "710423", "Shalu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203370", "200411", "en-us", "710424", "Longjing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203371", "200411", "en-us", "710425", "Wuqi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203372", "200411", "en-us", "710426", "Qingshui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203373", "200411", "en-us", "710427", "Dajia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203374", "200411", "en-us", "710428", "Waipu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203375", "200411", "en-us", "710429", "Da’an District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203376", "200412", "en-us", "710501", "Nantou City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203377", "200412", "en-us", "710502", "Zhongliao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203378", "200412", "en-us", "710503", "Caotun Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203379", "200412", "en-us", "710504", "Guosing Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203380", "200412", "en-us", "710505", "Puli Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203381", "200412", "en-us", "710506", "Ren’ai Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203382", "200412", "en-us", "710507", "Mingjian Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203383", "200412", "en-us", "710508", "Jiji Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203384", "200412", "en-us", "710509", "Shuili Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203385", "200412", "en-us", "710510", "Yuchih Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203386", "200412", "en-us", "710511", "Sinyi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203387", "200412", "en-us", "710512", "Jhushan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203388", "200412", "en-us", "710513", "Lugu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203389", "200413", "en-us", "710601", "Ren’ai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203390", "200413", "en-us", "710602", "Sinyi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203391", "200413", "en-us", "710603", "Jhongjheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203392", "200413", "en-us", "710604", "Jhongshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203393", "200413", "en-us", "710605", "Anle District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203394", "200413", "en-us", "710606", "Nuannuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203395", "200413", "en-us", "710607", "Cidu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203396", "200414", "en-us", "710701", "East District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203397", "200414", "en-us", "710702", "North District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203398", "200414", "en-us", "710703", "Hsiangshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203442", "200414", "en-us", "710704", "Zhubei City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203443", "200414", "en-us", "710705", "Hukou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203444", "200414", "en-us", "710706", "Xinfeng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203445", "200414", "en-us", "710707", "Sinpu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203446", "200414", "en-us", "710708", "Guansi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203447", "200414", "en-us", "710709", "Cyonglin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203448", "200414", "en-us", "710710", "Baoshan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203449", "200414", "en-us", "710711", "Zhudong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203450", "200414", "en-us", "710712", "Wufeng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203451", "200414", "en-us", "710713", "Hengshan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203452", "200414", "en-us", "710714", "Jianshi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203453", "200414", "en-us", "710715", "Beipu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203454", "200414", "en-us", "710716", "Emei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203512", "200415", "en-us", "710801", "Fanlu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203513", "200415", "en-us", "710802", "Meishan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203514", "200415", "en-us", "710803", "Jhuci Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203515", "200415", "en-us", "710804", "Alishan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203516", "200415", "en-us", "710805", "Zhongpu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203517", "200415", "en-us", "710806", "Dapu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203518", "200415", "en-us", "710807", "Shueishang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203519", "200415", "en-us", "710808", "Lucao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203520", "200415", "en-us", "710809", "Taibao City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203521", "200415", "en-us", "710810", "Puzi City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203522", "200415", "en-us", "710811", "Dongshih Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203523", "200415", "en-us", "710812", "Lioujiao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203524", "200415", "en-us", "710813", "Singang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203525", "200415", "en-us", "710814", "Minsyong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203526", "200415", "en-us", "710815", "Dalin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203527", "200415", "en-us", "710816", "Sikou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203528", "200415", "en-us", "710817", "Yijhu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203529", "200415", "en-us", "710818", "Budai Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203399", "200415", "en-us", "710821", "East District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203400", "200415", "en-us", "710822", "West District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203401", "200416", "en-us", "710901", "Wanli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203402", "200416", "en-us", "710902", "Jinshan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203403", "200416", "en-us", "710903", "Banqiao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203404", "200416", "en-us", "710904", "Xizhi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203405", "200416", "en-us", "710905", "Shenkeng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203406", "200416", "en-us", "710906", "Shihding District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203407", "200416", "en-us", "710907", "Ruifang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203408", "200416", "en-us", "710908", "Pingsi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203409", "200416", "en-us", "710909", "Shuangsi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203410", "200416", "en-us", "710910", "Gongliao District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203411", "200416", "en-us", "710911", "Sindian District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203412", "200416", "en-us", "710912", "Pinglin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203413", "200416", "en-us", "710913", "Wulai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203414", "200416", "en-us", "710914", "Yonghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203415", "200416", "en-us", "710915", "Jhonghe District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203416", "200416", "en-us", "710916", "Tucheng District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203417", "200416", "en-us", "710917", "Sansia District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203418", "200416", "en-us", "710918", "Shulin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203419", "200416", "en-us", "710919", "Yingge District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203420", "200416", "en-us", "710920", "Sanchong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203421", "200416", "en-us", "710921", "Xinzhuang District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203422", "200416", "en-us", "710922", "Taishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203423", "200416", "en-us", "710923", "Linkou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203424", "200416", "en-us", "710924", "Luzhou District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203425", "200416", "en-us", "710925", "Wugu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203426", "200416", "en-us", "710926", "Bali District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203427", "200416", "en-us", "710927", "Tamsui District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203428", "200416", "en-us", "710928", "Sanzhi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203429", "200416", "en-us", "710929", "Shimen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203430", "200417", "en-us", "711001", "Yilan City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203431", "200417", "en-us", "711002", "Toucheng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203432", "200417", "en-us", "711003", "Jiaosi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203433", "200417", "en-us", "711004", "Jhuangwei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203434", "200417", "en-us", "711005", "Yuanshan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203435", "200417", "en-us", "711006", "Luodong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203436", "200417", "en-us", "711007", "Sansing Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203437", "200417", "en-us", "711008", "Datong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203438", "200417", "en-us", "711009", "Wujie Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203439", "200417", "en-us", "711010", "Dongshan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203440", "200417", "en-us", "711011", "Su’ao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203441", "200417", "en-us", "711012", "Nan’ao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203455", "200418", "en-us", "711101", "Zhongli District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203456", "200418", "en-us", "711102", "Pingzhen District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203457", "200418", "en-us", "711103", "Longtan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203458", "200418", "en-us", "711104", "Yangmei District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203459", "200418", "en-us", "711105", "Xinwu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203460", "200418", "en-us", "711106", "Guanyin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203461", "200418", "en-us", "711107", "Taoyuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203462", "200418", "en-us", "711108", "Guishan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203463", "200418", "en-us", "711109", "Bade District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203464", "200418", "en-us", "711110", "Daxi District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203465", "200418", "en-us", "711111", "Fuxing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203466", "200418", "en-us", "711112", "Dayuan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203467", "200418", "en-us", "711113", "Luzhu District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203468", "200419", "en-us", "711201", "Zhunan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203469", "200419", "en-us", "711202", "Toufen City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203470", "200419", "en-us", "711203", "Sanwan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203471", "200419", "en-us", "711204", "Nanzhuang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203472", "200419", "en-us", "711205", "Shitan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203473", "200419", "en-us", "711206", "Houlong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203474", "200419", "en-us", "711207", "Tongxiao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203475", "200419", "en-us", "711208", "Yuanli Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203476", "200419", "en-us", "711209", "Miaoli City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203477", "200419", "en-us", "711210", "Zaociao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203478", "200419", "en-us", "711211", "Touwu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203479", "200419", "en-us", "711212", "Gongguan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203480", "200419", "en-us", "711213", "Dahu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203481", "200419", "en-us", "711214", "Tai’an Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203482", "200419", "en-us", "711215", "Tongluo Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203483", "200419", "en-us", "711216", "Sanyi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203484", "200419", "en-us", "711217", "Sihu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203485", "200419", "en-us", "711218", "Jhuolan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203486", "200420", "en-us", "711301", "Changhua City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203487", "200420", "en-us", "711302", "Fenyuan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203488", "200420", "en-us", "711303", "Huatan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203489", "200420", "en-us", "711304", "Sioushuei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203490", "200420", "en-us", "711305", "Lugang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203491", "200420", "en-us", "711306", "Fusing Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203492", "200420", "en-us", "711307", "Siansi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203493", "200420", "en-us", "711308", "Hemei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203494", "200420", "en-us", "711309", "Shengang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203495", "200420", "en-us", "711310", "Yuanlin City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203496", "200420", "en-us", "711311", "Shetou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203497", "200420", "en-us", "711312", "Yongjing Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203498", "200420", "en-us", "711313", "Pusin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203499", "200420", "en-us", "711314", "Xihu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203500", "200420", "en-us", "711315", "Dacun Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203501", "200420", "en-us", "711316", "Puyan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203502", "200420", "en-us", "711317", "Tianzhong ownship", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203503", "200420", "en-us", "711318", "Beidou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203504", "200420", "en-us", "711319", "Tianwei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203505", "200420", "en-us", "711320", "Pitou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203506", "200420", "en-us", "711321", "Xizhou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203507", "200420", "en-us", "711322", "Zhutang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203508", "200420", "en-us", "711323", "Erlin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203509", "200420", "en-us", "711324", "Dacheng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203510", "200420", "en-us", "711325", "Fangyuan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203511", "200420", "en-us", "711326", "Ershui Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203530", "200421", "en-us", "711401", "Dounan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203531", "200421", "en-us", "711402", "Dapi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203532", "200421", "en-us", "711403", "Huwei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203533", "200421", "en-us", "711404", "Tuku Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203534", "200421", "en-us", "711405", "Baozhong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203535", "200421", "en-us", "711406", "Dongshi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203536", "200421", "en-us", "711407", "Taisi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203537", "200421", "en-us", "711408", "Lunbei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203538", "200421", "en-us", "711409", "Mailiao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203539", "200421", "en-us", "711410", "Douliu City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203540", "200421", "en-us", "711411", "Linnei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203541", "200421", "en-us", "711412", "Gukeng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203542", "200421", "en-us", "711413", "Cihtong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203543", "200421", "en-us", "711414", "Siluo Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203544", "200421", "en-us", "711415", "Erlun Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203545", "200421", "en-us", "711416", "Beigang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203546", "200421", "en-us", "711417", "Shueilin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203547", "200421", "en-us", "711418", "Kouhu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203548", "200421", "en-us", "711419", "Sihhu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203549", "200421", "en-us", "711420", "Yuanchang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203550", "200422", "en-us", "711501", "Pingtung City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203551", "200422", "en-us", "711502", "Sandimen Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203552", "200422", "en-us", "711503", "Wutai Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203553", "200422", "en-us", "711504", "Majia Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203554", "200422", "en-us", "711505", "Jiouru Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203555", "200422", "en-us", "711506", "Ligang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203556", "200422", "en-us", "711507", "Gaoshu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203557", "200422", "en-us", "711508", "Yanpu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203558", "200422", "en-us", "711509", "Changjhih Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203559", "200422", "en-us", "711510", "Linluo Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203560", "200422", "en-us", "711511", "Jhutian Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203561", "200422", "en-us", "711512", "Neipu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203562", "200422", "en-us", "711513", "Wandan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203563", "200422", "en-us", "711514", "Chaojhou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203564", "200422", "en-us", "711515", "Taiwu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203565", "200422", "en-us", "711516", "Laiyi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203566", "200422", "en-us", "711517", "Wanluan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203567", "200422", "en-us", "711518", "Kanding Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203568", "200422", "en-us", "711519", "Sinpi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203569", "200422", "en-us", "711520", "Nanjhou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203570", "200422", "en-us", "711521", "Linbian Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203571", "200422", "en-us", "711522", "Donggang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203572", "200422", "en-us", "711523", "Liouciou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203573", "200422", "en-us", "711524", "Jiadong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203574", "200422", "en-us", "711525", "Xinyuan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203575", "200422", "en-us", "711526", "Fangliao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203576", "200422", "en-us", "711527", "Fangshan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203577", "200422", "en-us", "711528", "Chunri Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203578", "200422", "en-us", "711529", "Shihzih Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203579", "200422", "en-us", "711530", "Checheng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203580", "200422", "en-us", "711531", "Mudan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203581", "200422", "en-us", "711532", "Hengchun Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203582", "200422", "en-us", "711533", "Manjhou Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203583", "200423", "en-us", "711601", "Taitung City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203584", "200423", "en-us", "711602", "Lyudao Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203585", "200423", "en-us", "711603", "Lanyu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203586", "200423", "en-us", "711604", "Yanping Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203587", "200423", "en-us", "711605", "Beinan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203588", "200423", "en-us", "711606", "Luye Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203589", "200423", "en-us", "711607", "Guanshan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203590", "200423", "en-us", "711608", "Haiduan Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203591", "200423", "en-us", "711609", "Chihshang Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203592", "200423", "en-us", "711610", "Donghe Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203593", "200423", "en-us", "711611", "Chenggong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203594", "200423", "en-us", "711612", "Changbin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203595", "200423", "en-us", "711613", "Jinfeng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203596", "200423", "en-us", "711614", "Dawu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203597", "200423", "en-us", "711615", "Daren Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203598", "200423", "en-us", "711616", "Taimali Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203599", "200424", "en-us", "711701", "Hualien City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203600", "200424", "en-us", "711702", "Sincheng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203601", "200424", "en-us", "711703", "Sioulin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203602", "200424", "en-us", "711704", "Ji’an Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203603", "200424", "en-us", "711705", "Shoufeng Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203604", "200424", "en-us", "711706", "Fenglin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203605", "200424", "en-us", "711707", "Guangfu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203606", "200424", "en-us", "711708", "Fengbin Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203607", "200424", "en-us", "711709", "Ruisui Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203608", "200424", "en-us", "711710", "Wanrong Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203609", "200424", "en-us", "711711", "Yuli Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203610", "200424", "en-us", "711712", "Jhuosi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203611", "200424", "en-us", "711713", "Fuli Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203612", "200425", "en-us", "711801", "Magong City", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203613", "200425", "en-us", "711802", "Siyu Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203614", "200425", "en-us", "711803", "Wang’an Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203615", "200425", "en-us", "711804", "Cimei Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203616", "200425", "en-us", "711805", "Baisha Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203617", "200425", "en-us", "711806", "Husi Township", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203618", "200065", "en-us", "810001", "Central and Western District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203619", "200065", "en-us", "810002", "Eastern District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203620", "200065", "en-us", "810003", "Kowloon City District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203621", "200065", "en-us", "810004", "Kwun Tong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203622", "200065", "en-us", "810005", "Southern District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203623", "200065", "en-us", "810006", "Sham Shui Po District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203624", "200065", "en-us", "810007", "Wan Chai District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203625", "200065", "en-us", "810008", "Wong Tai Sin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203626", "200065", "en-us", "810009", "Yau Tsim Mong District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203627", "200065", "en-us", "810010", "Islands District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203628", "200065", "en-us", "810011", "Kwai Tsing District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203629", "200065", "en-us", "810012", "North District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203630", "200065", "en-us", "810013", "Sai Kung District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203631", "200065", "en-us", "810014", "Sha Tin District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203632", "200065", "en-us", "810015", "Tuen Mun district", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203633", "200065", "en-us", "810016", "Tai Po District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203634", "200065", "en-us", "810017", "Tsuen Wan District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203635", "200065", "en-us", "810018", "Yuen Long District", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203636", "200066", "en-us", "820001", "Macau Peninsula", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203637", "200066", "en-us", "820002", "Taipa", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203638", "200066", "en-us", "820003", "Cotai", "3", 0, 1, now(), NULL, NULL);
INSERT INTO `tsys_business_parameter_geography`(`id`, `pId`, `local`, `district_code`, `district_name`, `type`, `is_delete`, `creator_id`, `create_time`, `editor_id`, `edit_time`) VALUES ("203639", "200066", "en-us", "820004", "Coloane", "3", 0, 1, now(), NULL, NULL);