From 652ad4e88d77e64d971021f9e071459478b72ffc Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期四, 09 二月 2023 00:22:23 +0800 Subject: [PATCH] 新增加司机端接口和日志注解 --- driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/api/DriverController.java | 171 + driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/DriverRegisterWarpper.java | 4 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/model/Driver.java | 5 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/dao/mapping/DriverMapper.xml | 1 driver/guns-admin/src/main/resources/logback-spring.xml | 3 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IDriverService.java | 40 driver/guns-admin/src/main/resources/application.yml | 5 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/impl/DriverServiceImpl.java | 212 ++ driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/SMSUtil.java | 229 ++ driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/UUIDUtil.java | 23 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/TokenWarpper.java | 19 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/ResultUtil.java | 20 driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/annotion/ServiceLog.java | 25 driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/ResponseWarpper.java | 4 super_save_driving.sql | 4188 +++++++++++++++++++++++++++++++++++++++++++++++++ driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/aspect/ServiceLogAspect.java | 72 16 files changed, 4,960 insertions(+), 61 deletions(-) diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/annotion/ServiceLog.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/annotion/ServiceLog.java new file mode 100644 index 0000000..8459524 --- /dev/null +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/annotion/ServiceLog.java @@ -0,0 +1,25 @@ +package com.supersavedriving.driver.core.common.annotion; + +import com.supersavedriving.driver.modular.system.warpper.ResponseWarpper; + +import java.lang.annotation.*; + +/** + * 接口日志注解 + */ +@Inherited +@Retention(RetentionPolicy.RUNTIME) +@Target({ElementType.METHOD}) +public @interface ServiceLog { + /** + * 接口名称 + * @return + */ + String name() default ""; + + /** + * 接口地址 + * @return + */ + String url() default ""; +} diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/aspect/ServiceLogAspect.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/aspect/ServiceLogAspect.java new file mode 100644 index 0000000..fdd682f --- /dev/null +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/core/common/aspect/ServiceLogAspect.java @@ -0,0 +1,72 @@ +package com.supersavedriving.driver.core.common.aspect; + +import com.alibaba.fastjson.JSONObject; +import com.supersavedriving.driver.core.common.annotion.ServiceLog; +import org.aspectj.lang.ProceedingJoinPoint; +import org.aspectj.lang.annotation.Around; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Pointcut; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.stereotype.Component; + +import java.lang.reflect.Method; +import java.lang.reflect.Parameter; + +@Aspect +@Component +public class ServiceLogAspect { + + Logger logger = LoggerFactory.getLogger("ServiceLog"); + + /** + * //切面点为标记了@ServiceLog注解的方法 + */ + @Pointcut("@annotation(com.supersavedriving.driver.core.common.annotion.ServiceLog)") + public void serviceLog(){ + } + + + //环绕通知 + @Around("serviceLog()") + @SuppressWarnings("unchecked") + public Object around(ProceedingJoinPoint joinPoint) throws Throwable { + long starTime = System.currentTimeMillis(); + //通过反射获取被调用方法的Class + Class type = joinPoint.getSignature().getDeclaringType(); + //获取类名 + String typeName = type.getSimpleName(); + //方法名 + String methodName = joinPoint.getSignature().getName(); + //获取参数列表 + Object[] args = joinPoint.getArgs(); + //参数Class的数组 + Class[] clazz = new Class[args.length]; + for (int i = 0; i < args.length; i++) { + clazz[i] = args[i].getClass(); + } + //通过反射获取调用的方法method + Method method = type.getMethod(methodName, clazz); + ServiceLog serviceLog = method.getAnnotation(ServiceLog.class); + //获取方法的参数 + Parameter[] parameters = method.getParameters(); + JSONObject jsonObject = new JSONObject(); + for (int i = 0; i < parameters.length; i++) { + Parameter parameter = parameters[i]; + String name = parameter.getName(); + jsonObject.put(name, args[i]); + } + //执行结果 + //执行目标方法,获取执行结果 + Object res = joinPoint.proceed(); + logger.debug("调用{}.{}方法成功\n" + + "接口名称:{}\n" + + "接口地址:{}\n" + + "耗时:{}ms\n" + + "参数为:{}\n" + + "返回结果:{}", typeName, methodName, serviceLog.name(), serviceLog.url(), + (System.currentTimeMillis() - starTime), jsonObject.toJSONString(), JSONObject.toJSONString(res)); + //返回执行结果 + return res; + } +} diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/api/DriverController.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/api/DriverController.java index 86ea340..f7b0cc5 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/api/DriverController.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/api/DriverController.java @@ -1,13 +1,18 @@ package com.supersavedriving.driver.modular.system.api; import com.alibaba.fastjson.JSON; +import com.supersavedriving.driver.core.common.annotion.ServiceLog; import com.supersavedriving.driver.core.util.ToolUtil; import com.supersavedriving.driver.modular.system.service.IBranchOfficeService; import com.supersavedriving.driver.modular.system.service.IDriverService; +import com.supersavedriving.driver.modular.system.util.RedisUtil; import com.supersavedriving.driver.modular.system.util.ResultUtil; +import com.supersavedriving.driver.modular.system.util.SMSUtil; +import com.supersavedriving.driver.modular.system.util.UUIDUtil; import com.supersavedriving.driver.modular.system.warpper.DriverRegisterWarpper; import com.supersavedriving.driver.modular.system.warpper.OpenCityWarpper; import com.supersavedriving.driver.modular.system.warpper.ResponseWarpper; +import com.supersavedriving.driver.modular.system.warpper.TokenWarpper; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; @@ -19,6 +24,7 @@ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; +import javax.servlet.http.HttpServletRequest; import java.util.List; /** @@ -30,13 +36,14 @@ @RequestMapping("") public class DriverController { - Logger logger = LoggerFactory.getLogger("ServiceLog"); - @Autowired private IBranchOfficeService branchOfficeService; @Autowired private IDriverService driverService; + + @Autowired + private RedisUtil redisUtil; @@ -44,25 +51,18 @@ @ResponseBody @PostMapping("/base/driver/queryCityList") + @ServiceLog(name = "获取开通的省市数据", url = "/base/driver/queryCityList") @ApiOperation(value = "获取开通的省市数据", tags = {"司机端-登录注册"}, notes = "") @ApiImplicitParams({ }) public ResponseWarpper<List<OpenCityWarpper>> queryCityList(){ - ResponseWarpper responseWarpper = null; try { List<OpenCityWarpper> list = branchOfficeService.queryOpenCity(); - responseWarpper = ResponseWarpper.success(list); + return ResponseWarpper.success(list); }catch (Exception e){ e.printStackTrace(); - responseWarpper = new ResponseWarpper(500, e.getMessage()); + return new ResponseWarpper(500, e.getMessage()); } - logger.debug("" + - "\n接口地址:/base/driver/queryCityList" + - "\n接口名称:获取开通的省市数据" + - "\n请求参数:" + - "\n响应结果:{}" - , JSON.toJSONString(responseWarpper)); - return responseWarpper; } @@ -70,32 +70,22 @@ @ResponseBody @PostMapping("/base/driver/queryOpenDistrict") + @ServiceLog(name = "根据城市code获取开通区域", url = "/base/driver/queryOpenDistrict") @ApiOperation(value = "根据城市code获取开通区域", tags = {"司机端-登录注册"}, notes = "") @ApiImplicitParams({ @ApiImplicitParam(value = "城市code", name = "cityCode", required = true, dataType = "string"), }) public ResponseWarpper<List<OpenCityWarpper>> queryOpenDistrict(String cityCode){ - ResponseWarpper responseWarpper = null; if(ToolUtil.isEmpty(cityCode)){ - responseWarpper = ResponseWarpper.success(ResultUtil.paranErr()); + return ResponseWarpper.success(ResultUtil.paranErr("cityCode")); } - - if(ToolUtil.isNotEmpty(cityCode)){ - try { - List<OpenCityWarpper> list = branchOfficeService.queryOpenDistrict(cityCode); - responseWarpper = ResponseWarpper.success(list); - }catch (Exception e){ - e.printStackTrace(); - responseWarpper = new ResponseWarpper(500, e.getMessage()); - } + try { + List<OpenCityWarpper> list = branchOfficeService.queryOpenDistrict(cityCode); + return ResponseWarpper.success(list); + }catch (Exception e){ + e.printStackTrace(); + return new ResponseWarpper(500, e.getMessage()); } - logger.debug("" + - "\n接口地址:/base/driver/queryOpenDistrict" + - "\n接口名称:根据城市code获取开通区域" + - "\n请求参数:cityCode={}" + - "\n响应结果:{}" - , cityCode, JSON.toJSONString(responseWarpper)); - return responseWarpper; } @@ -103,24 +93,125 @@ @ResponseBody @PostMapping("/base/driver/driverRegister") + @ServiceLog(name = "司机注册申请", url = "/base/driver/driverRegister") @ApiOperation(value = "司机注册申请", tags = {"司机端-登录注册"}, notes = "") @ApiImplicitParams({ }) public ResponseWarpper driverRegister(DriverRegisterWarpper driverRegisterWarpper){ - ResponseWarpper responseWarpper = null; try { ResultUtil resultUtil = driverService.driverRegister(driverRegisterWarpper); - responseWarpper = ResponseWarpper.success(resultUtil); + return ResponseWarpper.success(resultUtil); }catch (Exception e){ e.printStackTrace(); - responseWarpper = new ResponseWarpper(500, e.getMessage()); + return new ResponseWarpper(500, e.getMessage()); } - logger.debug("" + - "\n接口地址:/base/driver/driverRegister" + - "\n接口名称:司机注册申请" + - "\n请求参数:" + JSON.toJSONString(driverRegisterWarpper) + - "\n响应结果:{}" - , JSON.toJSONString(responseWarpper)); - return responseWarpper; } + + + + + @ResponseBody + @PostMapping("/base/driver/getVerificationCode") + @ServiceLog(name = "获取短信验证码", url = "/base/driver/getVerificationCode") + @ApiOperation(value = "获取短信验证码", tags = {"司机端-登录注册"}, notes = "") + @ApiImplicitParams({ + @ApiImplicitParam(value = "国家代码+86", name = "receiver", required = true, dataType = "string"), + @ApiImplicitParam(value = "电话号码", name = "phone", required = true, dataType = "string"), + }) + public ResponseWarpper getVerificationCode(String receiver, String phone){ + if(ToolUtil.isEmpty(receiver)){ + return ResponseWarpper.success(ResultUtil.paranErr("receiver")); + } + if(ToolUtil.isEmpty(phone)){ + return ResponseWarpper.success(ResultUtil.paranErr("phone")); + } + try { + String numberRandom = UUIDUtil.getNumberRandom(6); + SMSUtil.send_huawei_sms("", receiver + phone, "[\"" + numberRandom + "\"]"); + redisUtil.setStrValue(receiver + phone, numberRandom, 300);//5分钟有效期 + return ResponseWarpper.success(ResultUtil.success()); + }catch (Exception e){ + e.printStackTrace(); + return new ResponseWarpper(500, e.getMessage()); + } + } + + + + + @ResponseBody + @PostMapping("/base/driver/driverCodeLogin") + @ServiceLog(name = "司机短信验证码登录", url = "/base/driver/driverCodeLogin") + @ApiOperation(value = "司机短信验证码登录", tags = {"司机端-登录注册"}, notes = "") + @ApiImplicitParams({ + @ApiImplicitParam(value = "国家代码+86", name = "receiver", required = true, dataType = "string"), + @ApiImplicitParam(value = "电话号码", name = "phone", required = true, dataType = "string"), + @ApiImplicitParam(value = "短信验证码", name = "code", required = true, dataType = "string"), + }) + public ResponseWarpper<TokenWarpper> driverCodeLogin(String receiver, String phone, String code){ + if(ToolUtil.isEmpty(receiver)){ + return ResponseWarpper.success(ResultUtil.paranErr("receiver")); + } + if(ToolUtil.isEmpty(phone)){ + return ResponseWarpper.success(ResultUtil.paranErr("phone")); + } + try { + ResultUtil<TokenWarpper> tokenWarpper = driverService.driverLogin(receiver, phone, code); + return ResponseWarpper.success(tokenWarpper); + }catch (Exception e){ + e.printStackTrace(); + return new ResponseWarpper(500, e.getMessage()); + } + } + + + + @ResponseBody + @PostMapping("/api/driver/flushedToken") + @ServiceLog(name = "刷新token", url = "/api/driver/flushedToken") + @ApiOperation(value = "刷新token", tags = {"司机端-登录注册"}, notes = "") + @ApiImplicitParams({ + @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") + }) + public ResponseWarpper<TokenWarpper> flushedToken(HttpServletRequest request){ + try { + Integer uid = driverService.getUserByRequset(request); + if(null == uid){ + return ResponseWarpper.success(ResultUtil.tokenErr()); + } + ResultUtil<TokenWarpper> tokenWarpper = driverService.flushedToken(uid); + return ResponseWarpper.success(tokenWarpper); + }catch (Exception e){ + e.printStackTrace(); + return new ResponseWarpper(500, e.getMessage()); + } + } + + + + @ResponseBody + @PostMapping("/api/driver/setPassword") + @ServiceLog(name = "司机设置密码", url = "/api/driver/setPassword") + @ApiOperation(value = "司机设置密码", tags = {"司机端-首页"}, notes = "") + @ApiImplicitParams({ + @ApiImplicitParam(value = "密码", name = "password", required = true, dataType = "string"), + @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") + }) + public ResponseWarpper setPassword(String password, HttpServletRequest request){ + if(ToolUtil.isEmpty(password)){ + return ResponseWarpper.success(ResultUtil.paranErr("password")); + } + try { + Integer uid = driverService.getUserByRequset(request); + if(null == uid){ + return ResponseWarpper.success(ResultUtil.tokenErr()); + } + driverService.setPassword(uid, password); + return ResponseWarpper.success(); + }catch (Exception e){ + e.printStackTrace(); + return new ResponseWarpper(500, e.getMessage()); + } + } + } diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/dao/mapping/DriverMapper.xml b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/dao/mapping/DriverMapper.xml index 20652de..028544c 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/dao/mapping/DriverMapper.xml +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/dao/mapping/DriverMapper.xml @@ -9,6 +9,7 @@ <result column="name" property="name"/> <result column="avatar" property="avatar"/> <result column="phone" property="phone"/> + <result column="password" property="password"/> <result column="sex" property="sex"/> <result column="source" property="source"/> <result column="emergencyContact" property="emergencyContact"/> diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/model/Driver.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/model/Driver.java index 9f1f282..93c0b4e 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/model/Driver.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/model/Driver.java @@ -43,6 +43,11 @@ @TableField("phone") private String phone; /** + * 密码 + */ + @TableField("password") + private String password; + /** * 性别(1=男,2=女) */ @TableField("sex") diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IDriverService.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IDriverService.java index 863f992..8316f97 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IDriverService.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IDriverService.java @@ -4,6 +4,9 @@ import com.supersavedriving.driver.modular.system.model.Driver; import com.supersavedriving.driver.modular.system.util.ResultUtil; import com.supersavedriving.driver.modular.system.warpper.DriverRegisterWarpper; +import com.supersavedriving.driver.modular.system.warpper.TokenWarpper; + +import javax.servlet.http.HttpServletRequest; /** * 司机 @@ -20,4 +23,41 @@ * @throws Exception */ ResultUtil driverRegister(DriverRegisterWarpper driverRegisterWarpper) throws Exception; + + + /** + * 司机登录 + * @param receiver 国家代码+86 + * @param phone 登录手机号 + * @param code 短信验证码 + * @return + * @throws Exception + */ + ResultUtil<TokenWarpper> driverLogin(String receiver, String phone, String code) throws Exception; + + + /** + * 刷新token + * @param uid + * @return + * @throws Exception + */ + ResultUtil<TokenWarpper> flushedToken(Integer uid) throws Exception; + + + /** + * 校验token获取用户信息 + * @param request + * @return + */ + Integer getUserByRequset(HttpServletRequest request) throws Exception; + + + /** + * 设置司机密码 + * @param uid + * @param password + * @throws Exception + */ + void setPassword(Integer uid, String password) throws Exception; } diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/impl/DriverServiceImpl.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/impl/DriverServiceImpl.java index 0718c77..3bebf26 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/impl/DriverServiceImpl.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/impl/DriverServiceImpl.java @@ -2,12 +2,33 @@ import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.baomidou.mybatisplus.service.impl.ServiceImpl; +import com.supersavedriving.driver.core.common.constant.JwtConstants; +import com.supersavedriving.driver.core.shiro.ShiroKit; +import com.supersavedriving.driver.core.shiro.ShiroUser; +import com.supersavedriving.driver.core.util.JwtTokenUtil; +import com.supersavedriving.driver.core.util.ToolUtil; import com.supersavedriving.driver.modular.system.dao.DriverMapper; +import com.supersavedriving.driver.modular.system.model.BranchOffice; import com.supersavedriving.driver.modular.system.model.Driver; +import com.supersavedriving.driver.modular.system.service.IBranchOfficeService; import com.supersavedriving.driver.modular.system.service.IDriverService; +import com.supersavedriving.driver.modular.system.util.RedisUtil; import com.supersavedriving.driver.modular.system.util.ResultUtil; +import com.supersavedriving.driver.modular.system.util.UUIDUtil; import com.supersavedriving.driver.modular.system.warpper.DriverRegisterWarpper; +import com.supersavedriving.driver.modular.system.warpper.TokenWarpper; +import org.apache.shiro.authc.SimpleAuthenticationInfo; +import org.apache.shiro.authc.UsernamePasswordToken; +import org.apache.shiro.authc.credential.HashedCredentialsMatcher; +import org.apache.shiro.crypto.hash.Md5Hash; +import org.apache.shiro.util.ByteSource; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; + +import javax.servlet.http.HttpServletRequest; +import java.util.Date; + +import static org.bouncycastle.asn1.x500.style.RFC4519Style.c; /** * 司机 @@ -16,6 +37,14 @@ */ @Service public class DriverServiceImpl extends ServiceImpl<DriverMapper, Driver> implements IDriverService { + + private final String salt = "i#sm4"; + + @Autowired + private IBranchOfficeService branchOfficeService; + + @Autowired + private RedisUtil redisUtil; /** @@ -39,17 +68,25 @@ //账号审核拒绝后的处理 if(null != driver && driver.getApprovalStatus() == 3){ - driver = setDriverParamete(driver, driverRegisterWarpper); - this.updateById(driver); + try { + driver = setDriverParamete(driver, driverRegisterWarpper); + }catch (Exception e){ + return ResultUtil.error(e.getMessage()); + } + this.updateAllColumnById(driver); } //新账号 if(null == driver){ driver = new Driver(); - driver = setDriverParamete(driver, driverRegisterWarpper); + driver.setCode(UUIDUtil.getNumberRandom(16)); + try { + driver = setDriverParamete(driver, driverRegisterWarpper); + }catch (Exception e){ + return ResultUtil.error(e.getMessage()); + } + driver.setCreateTime(new Date()); this.insert(driver); } - //发送消息 - return ResultUtil.success(); } @@ -60,7 +97,170 @@ * @param driverRegisterWarpper * @return */ - public Driver setDriverParamete(Driver driver, DriverRegisterWarpper driverRegisterWarpper){ + public Driver setDriverParamete(Driver driver, DriverRegisterWarpper driverRegisterWarpper) throws Exception{ + driver.setAvatar(driverRegisterWarpper.getAvatar()); + driver.setPhone(driverRegisterWarpper.getPhone()); + driver.setEmergencyContact(driverRegisterWarpper.getEmergencyContact()); + driver.setEmergencyPhone(driverRegisterWarpper.getEmergencyPhone()); + driver.setIdcardBack(driverRegisterWarpper.getIdcardBack()); + driver.setIdcardFront(driverRegisterWarpper.getIdcardFront()); + driver.setDriverLicense(driverRegisterWarpper.getDriverLicense()); + //注册地 + String code = driverRegisterWarpper.getCode(); + BranchOffice branchOffice = branchOfficeService.selectOne(new EntityWrapper<BranchOffice>().eq("districtCode", code).eq("status", 1)); + if(null == branchOffice){ + throw new Exception("该区域无服务商"); + } + driver.setBranchOfficeId(branchOffice.getId()); + driver.setAgentId(branchOffice.getAgentId()); + driver.setInviterType(driverRegisterWarpper.getInviterType()); + driver.setInviterId(driverRegisterWarpper.getInviterId()); + driver.setApprovalStatus(1); + driver.setApprovalNotes(""); + driver.setApprovalTime(null); + driver.setApprovalUserId(null); + driver.setStatus(1); return driver; } + + + /** + * 司机登录逻辑 + * @param receiver 国家代码+86 + * @param phone 登录手机号 + * @param code 短信验证码 + * @return + * @throws Exception + */ + @Override + public ResultUtil<TokenWarpper> driverLogin(String receiver, String phone, String code) throws Exception { + String value = redisUtil.getValue(receiver + phone); + if(ToolUtil.isEmpty(value)){ + return ResultUtil.error("短信验证码无效"); + } + if(!value.equals(code)){ + return ResultUtil.error("短信验证码无效"); + } + String token = getToken(phone, code); + if(ToolUtil.isEmpty(token)){ + return ResultUtil.error("登录异常,请联系管理员。"); + } + Driver driver = this.selectOne(new EntityWrapper<Driver>().eq("phone", phone).ne("status", 3)); + if(null == driver){ + return ResultUtil.error("请先进行注册"); + } + if(driver.getStatus() == 2){ + return ResultUtil.error("账号已被冻结,请联系管理员。"); + } + if(driver.getApprovalStatus() == 1){ + return ResultUtil.error("账号正在审核中。"); + } + if(driver.getApprovalStatus() == 3){ + return ResultUtil.error("账号审核不通过,请重新申请。"); + } + + TokenWarpper tokenWarpper = new TokenWarpper(); + tokenWarpper.setToken(token); + tokenWarpper.setValidTime(7200L); + tokenWarpper.setIsSetPassword(ToolUtil.isEmpty(driver.getPassword()) ? 0 : 1); + return ResultUtil.success(tokenWarpper); + } + + + /** + * 获取身份凭证 + * @param phone + * @param password + * @return + * @throws Exception + */ + private String getToken(String phone, String password) throws Exception{ + //封装请求账号密码为shiro可验证的token + UsernamePasswordToken usernamePasswordToken = new UsernamePasswordToken(phone, password.toCharArray()); + + //获取数据库中的账号密码,准备比对 + String credentials = ShiroKit.md5(password, salt); + Driver driver = this.selectOne(new EntityWrapper<Driver>().eq("phone", phone).eq("status", 1)); + ByteSource credentialsSalt = new Md5Hash(salt); + SimpleAuthenticationInfo simpleAuthenticationInfo = new SimpleAuthenticationInfo( + new ShiroUser(), credentials, credentialsSalt, ""); + + //校验用户账号密码 + HashedCredentialsMatcher md5CredentialsMatcher = new HashedCredentialsMatcher(); + md5CredentialsMatcher.setHashAlgorithmName(ShiroKit.hashAlgorithmName); + md5CredentialsMatcher.setHashIterations(ShiroKit.hashIterations); + boolean passwordTrueFlag = md5CredentialsMatcher.doCredentialsMatch( + usernamePasswordToken, simpleAuthenticationInfo); + + if (passwordTrueFlag) { + String token = JwtTokenUtil.generateToken(phone); + String key = token; + if(token.length() > 16){ + key = token.substring(token.length() - 16); + } + redisUtil.setStrValue(key, driver.getId().toString(), 7200);//2小时 + return token; + } + return ""; + } + + + /** + * 刷新token + * @param uid + * @return + * @throws Exception + */ + @Override + public ResultUtil<TokenWarpper> flushedToken(Integer uid) throws Exception { + Driver driver = this.selectById(uid); + String token = getToken(driver.getPhone(), driver.getPhone()); + if(ToolUtil.isEmpty(token)){ + return ResultUtil.error("刷新token异常,请联系管理员。"); + } + TokenWarpper tokenWarpper = new TokenWarpper(); + tokenWarpper.setToken(token); + tokenWarpper.setValidTime(7200L); + tokenWarpper.setIsSetPassword(ToolUtil.isEmpty(driver.getPassword()) ? 0 : 1); + return ResultUtil.success(tokenWarpper); + } + + /** + * 校验token获取用户信息 + * @param request + * @return + * @throws Exception + */ + @Override + public Integer getUserByRequset(HttpServletRequest request) throws Exception { + String requestHeader = request.getHeader(JwtConstants.AUTH_HEADER); + if (ToolUtil.isNotEmpty(requestHeader) && requestHeader.startsWith("Bearer ")) { + requestHeader = requestHeader.substring(requestHeader.indexOf(" ") + 1); + String key = null; + int length = requestHeader.length(); + if(length > 16){ + key = requestHeader.substring(length - 16); + }else{ + key = requestHeader; + } + String value = redisUtil.getValue(key); + return null != value ? Integer.valueOf(value) : null; + }else{ + return null; + } + } + + + /** + * 设置司机密码 + * @param uid + * @param password + * @throws Exception + */ + @Override + public void setPassword(Integer uid, String password) throws Exception { + Driver driver = this.selectById(uid); + driver.setPassword(ShiroKit.md5(password, salt)); + this.updateById(driver); + } } diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/ResultUtil.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/ResultUtil.java index 186b501..4e3219c 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/ResultUtil.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/ResultUtil.java @@ -21,9 +21,9 @@ public static final Integer RUNTIME_ERROR = 10050; - public static final String Token = "TOKEN_INVALID"; + public static final String Token = "token无效"; - public static final String SIGN = "SIGN_INVALID"; + public static final String SIGN = "签名无效"; @ApiModelProperty(name = "code", value = "业务状态码 10000:成功,10010:参数错误,10020:系统提示, 10030:身份校验异常,10040:签名不通过,10050:系统运行异常") private Integer code;//备用状态码 @@ -105,16 +105,16 @@ * 参数异常 * @return */ - public static ResultUtil paranErr(){ - return ResultUtil.getResult(ResultUtil.PARAM_ERROR, "param_error", new Object()); + public static ResultUtil paranErr(String...ages){ + return ResultUtil.getResult(ResultUtil.PARAM_ERROR, "【" + ages + "】参数异常", new Object()); } /** * 参数异常 * @return */ - public static <T> ResultUtil<T> paranErr(T data){ - return ResultUtil.getResult(ResultUtil.PARAM_ERROR, "system_run_error", data); + public static ResultUtil paranErr(){ + return ResultUtil.getResult(ResultUtil.PARAM_ERROR, "参数异常", new Object()); } /** @@ -122,7 +122,7 @@ * @return */ public static ResultUtil runErr(){ - return ResultUtil.getResult(ResultUtil.RUNTIME_ERROR, "system_run_error", new Object()); + return ResultUtil.getResult(ResultUtil.RUNTIME_ERROR, "系统运行异常", new Object()); } @@ -131,7 +131,7 @@ * @return */ public static <T>ResultUtil<T> runErr(T data){ - return ResultUtil.getResult(ResultUtil.RUNTIME_ERROR, "system_run_error", data); + return ResultUtil.getResult(ResultUtil.RUNTIME_ERROR, "系统运行异常", data); } /** @@ -149,7 +149,7 @@ * @return */ public static ResultUtil success(){ - return ResultUtil.getResult(ResultUtil.SUCCESS, "ok", new Object()); + return ResultUtil.getResult(ResultUtil.SUCCESS, "成功", new Object()); } @@ -160,7 +160,7 @@ * @return */ public static <T> ResultUtil<T> success(T data){ - return ResultUtil.getResult(ResultUtil.SUCCESS, "ok", data); + return ResultUtil.getResult(ResultUtil.SUCCESS, "成功", data); } /** diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/SMSUtil.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/SMSUtil.java new file mode 100644 index 0000000..4ff7a9b --- /dev/null +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/SMSUtil.java @@ -0,0 +1,229 @@ +package com.supersavedriving.driver.modular.system.util; + + +import javax.net.ssl.*; +import java.io.*; +import java.net.URL; +import java.net.URLEncoder; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.security.cert.CertificateException; +import java.security.cert.X509Certificate; +import java.text.SimpleDateFormat; +import java.util.*; + +public class SMSUtil { + + //无需修改,用于格式化鉴权头域,给"X-WSSE"参数赋值 + private static final String WSSE_HEADER_FORMAT = "UsernameToken Username=\"%s\",PasswordDigest=\"%s\",Nonce=\"%s\",Created=\"%s\""; + //无需修改,用于格式化鉴权头域,给"Authorization"参数赋值 + private static final String AUTH_HEADER_VALUE = "WSSE realm=\"SDP\",profile=\"UsernameToken\",type=\"Appkey\""; + + /** + * 发送短信(华为云) + * @param templateId 模板id + * @param receiver 必填,全局号码格式(包含国家码),示例:+8615123456789,多个号码之间用英文逗号分隔 + * @param templateParas 选填,使用无变量模板时请赋空值 String templateParas = "",双变量模板示例:模板内容为"您有${1}件快递请到${2}领取"时,templateParas可填写为"[\"3\",\"人民公园正门\"]" + * 模板变量,此处以单变量验证码短信为例,请客户自行生成6位验证码,并定义为字符串类型,以杜绝首位0丢失的问题(例如:002569变成了2569) + * @throws Exception + */ + public static void send_huawei_sms(String templateId, String receiver, String templateParas) throws Exception { + + //必填,请参考"开发准备"获取如下数据,替换为实际值 + String url = "https://smsapi.cn-south-1.myhuaweicloud.com:443"; //APP接入地址(在控制台"应用管理"页面获取)+接口访问URI + String appKey = "g3DW0G5Fbp3110UiGl5fkWcn799s"; //APP_Key + String appSecret = "LaT1NYvQKNkHO5KikniEueN8iTaz"; //APP_Secret + String sender = "ismsapp0000000103"; //国内短信签名通道号或国际/港澳台短信通道号 + + //条件必填,国内短信关注,当templateId指定的模板类型为通用模板时生效且必填,必须是已审核通过的,与模板类型一致的签名名称 + //国际/港澳台短信不用关注该参数 + String signature = "IGO"; //签名名称 + + //选填,短信状态报告接收地址,推荐使用域名,为空或者不填表示不接收状态报告 + String statusCallBack = ""; + + //请求Body,不携带签名名称时,signature请填null + String body = buildRequestBody(sender, receiver, templateId, templateParas, statusCallBack, signature); + if (null == body || body.isEmpty()) { + System.out.println("body is null."); + return; + } + + //请求Headers中的X-WSSE参数值 + String wsseHeader = buildWsseHeader(appKey, appSecret); + if (null == wsseHeader || wsseHeader.isEmpty()) { + System.out.println("wsse header is null."); + return; + } + + Writer out = null; + BufferedReader in = null; + StringBuffer result = new StringBuffer(); + HttpsURLConnection connection = null; + InputStream is = null; + + + HostnameVerifier hv = new HostnameVerifier() { + + @Override + public boolean verify(String hostname, SSLSession session) { + return true; + } + }; + trustAllHttpsCertificates(); + + try { + URL realUrl = new URL(url); + connection = (HttpsURLConnection) realUrl.openConnection(); + + connection.setHostnameVerifier(hv); + connection.setDoOutput(true); + connection.setDoInput(true); + connection.setUseCaches(true); + //请求方法 + connection.setRequestMethod("POST"); + //请求Headers参数 + connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + connection.setRequestProperty("Authorization", AUTH_HEADER_VALUE); + connection.setRequestProperty("X-WSSE", wsseHeader); + + connection.connect(); + out = new OutputStreamWriter(connection.getOutputStream()); + out.write(body); //发送请求Body参数 + out.flush(); + out.close(); + + int status = connection.getResponseCode(); + if (200 == status) { //200 + is = connection.getInputStream(); + } else { //400/401 + is = connection.getErrorStream(); + } + in = new BufferedReader(new InputStreamReader(is, "UTF-8")); + String line = ""; + while ((line = in.readLine()) != null) { + result.append(line); + } + System.out.println(result.toString()); //打印响应消息实体 + } catch (Exception e) { + e.printStackTrace(); + } finally { + try { + if (null != out) { + out.close(); + } + if (null != is) { + is.close(); + } + if (null != in) { + in.close(); + } + } catch (Exception e) { + e.printStackTrace(); + } + } + } + + /** + * 构造请求Body体 + * @param sender + * @param receiver + * @param templateId + * @param templateParas + * @param statusCallBack + * @param signature | 签名名称,使用国内短信通用模板时填写 + * @return + */ + static String buildRequestBody(String sender, String receiver, String templateId, String templateParas, + String statusCallBack, String signature) { + if (null == sender || null == receiver || null == templateId || sender.isEmpty() || receiver.isEmpty() + || templateId.isEmpty()) { + System.out.println("buildRequestBody(): sender, receiver or templateId is null."); + return null; + } + Map<String, String> map = new HashMap<String, String>(); + + map.put("from", sender); + map.put("to", receiver); + map.put("templateId", templateId); + if (null != templateParas && !templateParas.isEmpty()) { + map.put("templateParas", templateParas); + } + if (null != statusCallBack && !statusCallBack.isEmpty()) { + map.put("statusCallback", statusCallBack); + } + if (null != signature && !signature.isEmpty()) { + map.put("signature", signature); + } + + StringBuilder sb = new StringBuilder(); + String temp = ""; + + for (String s : map.keySet()) { + try { + temp = URLEncoder.encode(map.get(s), "UTF-8"); + } catch (UnsupportedEncodingException e) { + e.printStackTrace(); + } + sb.append(s).append("=").append(temp).append("&"); + } + + return sb.deleteCharAt(sb.length()-1).toString(); + } + + /** + * 构造X-WSSE参数值 + * @param appKey + * @param appSecret + * @return + */ + static String buildWsseHeader(String appKey, String appSecret) { + if (null == appKey || null == appSecret || appKey.isEmpty() || appSecret.isEmpty()) { + System.out.println("buildWsseHeader(): appKey or appSecret is null."); + return null; + } + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); + String time = sdf.format(new Date()); //Created + String nonce = UUID.randomUUID().toString().replace("-", ""); //Nonce + + MessageDigest md; + byte[] passwordDigest = null; + + try { + md = MessageDigest.getInstance("SHA-256"); + md.update((nonce + time + appSecret).getBytes()); + passwordDigest = md.digest(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + } + + //如果JDK版本是1.8,请加载原生Base64类,并使用如下代码 + String passwordDigestBase64Str = Base64.getEncoder().encodeToString(passwordDigest); //PasswordDigest + //如果JDK版本低于1.8,请加载三方库提供Base64类,并使用如下代码 + //String passwordDigestBase64Str = Base64.encodeBase64String(passwordDigest); //PasswordDigest + //若passwordDigestBase64Str中包含换行符,请执行如下代码进行修正 + //passwordDigestBase64Str = passwordDigestBase64Str.replaceAll("[\\s*\t\n\r]", ""); + return String.format(WSSE_HEADER_FORMAT, appKey, passwordDigestBase64Str, nonce, time); + } + + /*** @throws Exception + */ + static void trustAllHttpsCertificates() throws Exception { + TrustManager[] trustAllCerts = new TrustManager[] { + new X509TrustManager() { + public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException { + return; + } + public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException { + return; + } + public X509Certificate[] getAcceptedIssuers() { + return null; + } + } + }; + SSLContext sc = SSLContext.getInstance("SSL"); + sc.init(null, trustAllCerts, null); + HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory()); + } +} diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/UUIDUtil.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/UUIDUtil.java index defdc58..c4bed7f 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/UUIDUtil.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/util/UUIDUtil.java @@ -72,7 +72,28 @@ * @return */ public synchronized static String getTimeStr(){ - SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMddhhmmssS"); + SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMddHHmmssSSS"); return simpleDateFormat.format(new Date()); } + + + + /** + * @Description: 获取数字随机码 + * @Author pzb + * @Date 2021/8/11 16:52 + * @Param + * @Return + * @Exception + */ + public static String getNumberRandom(Integer num){ + if(null == num){ + num = 32; + } + StringBuffer sb = new StringBuffer(); + for(int i = 0; i < num; i++){ + sb.append(Double.valueOf(Math.random() * 10).intValue()); + } + return sb.toString(); + } } diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/DriverRegisterWarpper.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/DriverRegisterWarpper.java index 44fade9..94dc1e9 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/DriverRegisterWarpper.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/DriverRegisterWarpper.java @@ -28,4 +28,8 @@ private String idcardBack; @ApiModelProperty(value = "驾驶证照片", required = true, dataType = "string") private String driverLicense; + @ApiModelProperty(value = "邀约人类型(1=用户,2=司机)", required = false, dataType = "int") + private Integer inviterType; + @ApiModelProperty(value = "邀约人Id", required = false, dataType = "int") + private Integer inviterId; } diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/ResponseWarpper.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/ResponseWarpper.java index c9f9aa3..fd0106c 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/ResponseWarpper.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/ResponseWarpper.java @@ -35,6 +35,10 @@ this.resultUtil = resultUtil; } + public static ResponseWarpper success() { + return new ResponseWarpper(200, "success", ResultUtil.success()); + } + public static <T> ResponseWarpper<T> success(T data) { return new ResponseWarpper(200, "success", ResultUtil.success(data)); } diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/TokenWarpper.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/TokenWarpper.java new file mode 100644 index 0000000..18e1c5c --- /dev/null +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/warpper/TokenWarpper.java @@ -0,0 +1,19 @@ +package com.supersavedriving.driver.modular.system.warpper; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * 登录token实体类 + */ +@Data +@ApiModel +public class TokenWarpper { + @ApiModelProperty(value = "token", required = true, dataType = "string") + private String token; + @ApiModelProperty(value = "token有效期(秒)", required = true, dataType = "long") + private Long validTime; + @ApiModelProperty(value = "是否设置密码(0=否,1=是)", required = true, dataType = "int") + private Integer isSetPassword; +} diff --git a/driver/guns-admin/src/main/resources/application.yml b/driver/guns-admin/src/main/resources/application.yml index 1ff760e..22f3260 100644 --- a/driver/guns-admin/src/main/resources/application.yml +++ b/driver/guns-admin/src/main/resources/application.yml @@ -116,7 +116,4 @@ #callbackPath: http://47.108.254.217:80/user ---- - -#交通部推送数据功能开关 -pushMinistryOfTransport: false \ No newline at end of file +--- \ No newline at end of file diff --git a/driver/guns-admin/src/main/resources/logback-spring.xml b/driver/guns-admin/src/main/resources/logback-spring.xml index 35fc651..bdefb47 100644 --- a/driver/guns-admin/src/main/resources/logback-spring.xml +++ b/driver/guns-admin/src/main/resources/logback-spring.xml @@ -196,6 +196,7 @@ <appender-ref ref="ALL_FILE" /> </root> <logger name="ServiceLog" level="debug"/> + <logger name="com.supersavedriving.driver.modular.system.dao" level="debug"/> </springProfile> <springProfile name="fat"> @@ -208,6 +209,7 @@ <appender-ref ref="ALL_FILE" /> </root> <logger name="ServiceLog" level="debug"/> + <logger name="com.supersavedriving.driver.modular.system.dao" level="debug"/> </springProfile> <springProfile name="produce"> @@ -220,6 +222,7 @@ <appender-ref ref="ALL_FILE" /> </root> <logger name="ServiceLog" level="debug"/> + <logger name="com.supersavedriving.driver.modular.system.dao" level="debug"/> </springProfile> </configuration> \ No newline at end of file diff --git a/super_save_driving.sql b/super_save_driving.sql new file mode 100644 index 0000000..45556bd --- /dev/null +++ b/super_save_driving.sql @@ -0,0 +1,4188 @@ +/* + Navicat Premium Data Transfer + + Source Server : 127.0.0.1 + Source Server Type : MySQL + Source Server Version : 50637 + Source Host : localhost:3306 + Source Schema : super_save_driving + + Target Server Type : MySQL + Target Server Version : 50637 + File Encoding : 65001 + + Date: 09/02/2023 00:20:49 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for sys_dept +-- ---------------------------- +DROP TABLE IF EXISTS `sys_dept`; +CREATE TABLE `sys_dept` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键id', + `num` int(11) NULL DEFAULT NULL COMMENT '排序', + `pid` int(11) NULL DEFAULT NULL COMMENT '父部门id', + `pids` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '父级ids', + `simplename` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '简称', + `fullname` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '全称', + `tips` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '提示', + `version` int(11) NULL DEFAULT NULL COMMENT '版本(乐观锁保留字段)', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '部门表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_dept +-- ---------------------------- +INSERT INTO `sys_dept` VALUES (1, 1, 0, '[0],', '总公司', '总公司', '', NULL); + +-- ---------------------------- +-- Table structure for sys_dict +-- ---------------------------- +DROP TABLE IF EXISTS `sys_dict`; +CREATE TABLE `sys_dict` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键id', + `num` int(11) NULL DEFAULT NULL COMMENT '排序', + `pid` int(11) NULL DEFAULT NULL COMMENT '父级字典', + `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `tips` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '提示', + `code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '字典表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_dict +-- ---------------------------- +INSERT INTO `sys_dict` VALUES (1, 0, 0, '性别', NULL, 'sys_sex'); +INSERT INTO `sys_dict` VALUES (2, 1, 1, '男', NULL, '1'); +INSERT INTO `sys_dict` VALUES (3, 2, 1, '女', NULL, '2'); +INSERT INTO `sys_dict` VALUES (4, 0, 0, '状态', NULL, 'sys_state'); +INSERT INTO `sys_dict` VALUES (5, 1, 4, '启用', NULL, '1'); +INSERT INTO `sys_dict` VALUES (6, 2, 4, '禁用', NULL, '2'); +INSERT INTO `sys_dict` VALUES (7, 0, 0, '账号状态', NULL, 'account_state'); +INSERT INTO `sys_dict` VALUES (8, 1, 7, '启用', NULL, '1'); +INSERT INTO `sys_dict` VALUES (9, 2, 7, '冻结', NULL, '2'); +INSERT INTO `sys_dict` VALUES (10, 3, 7, '已删除', NULL, '3'); + +-- ---------------------------- +-- Table structure for sys_expense +-- ---------------------------- +DROP TABLE IF EXISTS `sys_expense`; +CREATE TABLE `sys_expense` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `money` decimal(20, 2) NULL DEFAULT NULL COMMENT '报销金额', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '描述', + `createtime` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', + `state` int(11) NULL DEFAULT NULL COMMENT '状态: 1.待提交 2:待审核 3.审核通过 4:驳回', + `userid` int(11) NULL DEFAULT NULL COMMENT '用户id', + `processId` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '流程定义id', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '报销表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_expense +-- ---------------------------- + +-- ---------------------------- +-- Table structure for sys_login_log +-- ---------------------------- +DROP TABLE IF EXISTS `sys_login_log`; +CREATE TABLE `sys_login_log` ( + `id` int(65) NOT NULL AUTO_INCREMENT COMMENT '主键', + `logname` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日志名称', + `userid` int(65) NULL DEFAULT NULL COMMENT '管理员id', + `createtime` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', + `succeed` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否执行成功', + `message` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '具体消息', + `ip` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录ip', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '登录记录' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_login_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for sys_menu +-- ---------------------------- +DROP TABLE IF EXISTS `sys_menu`; +CREATE TABLE `sys_menu` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键id', + `code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单编号', + `pcode` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单父编号', + `pcodes` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '当前菜单的所有父菜单编号', + `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单名称', + `icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单图标', + `url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'url地址', + `num` int(65) NULL DEFAULT NULL COMMENT '菜单排序号', + `levels` int(65) NULL DEFAULT NULL COMMENT '菜单层级', + `ismenu` int(11) NULL DEFAULT NULL COMMENT '是否是菜单(1:是 0:不是)', + `tips` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `status` int(65) NULL DEFAULT NULL COMMENT '菜单状态 : 1:启用 0:不启用', + `isopen` int(11) NULL DEFAULT NULL COMMENT '是否打开: 1:打开 0:不打开', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 168 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '菜单表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_menu +-- ---------------------------- +INSERT INTO `sys_menu` VALUES (105, 'system', '0', '[0],', '系统管理', 'fa-user', '#', 4, 1, 1, NULL, 1, 1); +INSERT INTO `sys_menu` VALUES (106, 'mgr', 'system', '[0],[system],', '用户管理', '', '/mgr', 1, 2, 1, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (107, 'mgr_add', 'mgr', '[0],[system],[mgr],', '添加用户', NULL, '/mgr/add', 1, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (108, 'mgr_edit', 'mgr', '[0],[system],[mgr],', '修改用户', NULL, '/mgr/edit', 2, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (109, 'mgr_delete', 'mgr', '[0],[system],[mgr],', '删除用户', NULL, '/mgr/delete', 3, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (110, 'mgr_reset', 'mgr', '[0],[system],[mgr],', '重置密码', NULL, '/mgr/reset', 4, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (111, 'mgr_freeze', 'mgr', '[0],[system],[mgr],', '冻结用户', NULL, '/mgr/freeze', 5, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (112, 'mgr_unfreeze', 'mgr', '[0],[system],[mgr],', '解除冻结用户', NULL, '/mgr/unfreeze', 6, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (113, 'mgr_setRole', 'mgr', '[0],[system],[mgr],', '分配角色', NULL, '/mgr/setRole', 7, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (114, 'role', 'system', '[0],[system],', '角色管理', NULL, '/role', 2, 2, 1, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (115, 'role_add', 'role', '[0],[system],[role],', '添加角色', NULL, '/role/add', 1, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (116, 'role_edit', 'role', '[0],[system],[role],', '修改角色', NULL, '/role/edit', 2, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (117, 'role_remove', 'role', '[0],[system],[role],', '删除角色', NULL, '/role/remove', 3, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (118, 'role_setAuthority', 'role', '[0],[system],[role],', '配置权限', NULL, '/role/setAuthority', 4, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (119, 'menu', 'system', '[0],[system],', '菜单管理', NULL, '/menu', 4, 2, 1, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (120, 'menu_add', 'menu', '[0],[system],[menu],', '添加菜单', NULL, '/menu/add', 1, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (121, 'menu_edit', 'menu', '[0],[system],[menu],', '修改菜单', NULL, '/menu/edit', 2, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (122, 'menu_remove', 'menu', '[0],[system],[menu],', '删除菜单', NULL, '/menu/remove', 3, 3, 0, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (128, 'log', 'system', '[0],[system],', '业务日志', NULL, '/log', 6, 2, 1, NULL, 1, 0); +INSERT INTO `sys_menu` VALUES (130, 'druid', 'system', '[0],[system],', '监控管理', NULL, '/druid', 7, 2, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (131, 'dept', 'system', '[0],[system],', '部门管理', NULL, '/dept', 3, 2, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (132, 'dict', 'system', '[0],[system],', '字典管理', NULL, '/dict', 4, 2, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (133, 'loginLog', 'system', '[0],[system],', '登录日志', NULL, '/loginLog', 6, 2, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (134, 'log_clean', 'log', '[0],[system],[log],', '清空日志', NULL, '/log/delLog', 3, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (135, 'dept_add', 'dept', '[0],[system],[dept],', '添加部门', NULL, '/dept/add', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (136, 'dept_update', 'dept', '[0],[system],[dept],', '修改部门', NULL, '/dept/update', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (137, 'dept_delete', 'dept', '[0],[system],[dept],', '删除部门', NULL, '/dept/delete', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (138, 'dict_add', 'dict', '[0],[system],[dict],', '添加字典', NULL, '/dict/add', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (139, 'dict_update', 'dict', '[0],[system],[dict],', '修改字典', NULL, '/dict/update', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (140, 'dict_delete', 'dict', '[0],[system],[dict],', '删除字典', NULL, '/dict/delete', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (141, 'notice', 'system', '[0],[system],', '通知管理', NULL, '/notice', 9, 2, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (142, 'notice_add', 'notice', '[0],[system],[notice],', '添加通知', NULL, '/notice/add', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (143, 'notice_update', 'notice', '[0],[system],[notice],', '修改通知', NULL, '/notice/update', 2, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (144, 'notice_delete', 'notice', '[0],[system],[notice],', '删除通知', NULL, '/notice/delete', 3, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (145, 'hello', '0', '[0],', '通知', 'fa-rocket', '/notice/hello', 1, 1, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (148, 'code', '0', '[0],', '代码生成', 'fa-code', '/code', 3, 1, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (149, 'api_mgr', '0', '[0],', '接口文档', 'fa-leaf', '/swagger-ui.html', 2, 1, 1, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (150, 'to_menu_edit', 'menu', '[0],[system],[menu],', '菜单编辑跳转', '', '/menu/menu_edit', 4, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (151, 'menu_list', 'menu', '[0],[system],[menu],', '菜单列表', '', '/menu/list', 5, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (152, 'to_dept_update', 'dept', '[0],[system],[dept],', '修改部门跳转', '', '/dept/dept_update', 4, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (153, 'dept_list', 'dept', '[0],[system],[dept],', '部门列表', '', '/dept/list', 5, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (154, 'dept_detail', 'dept', '[0],[system],[dept],', '部门详情', '', '/dept/detail', 6, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (155, 'to_dict_edit', 'dict', '[0],[system],[dict],', '修改菜单跳转', '', '/dict/dict_edit', 4, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (156, 'dict_list', 'dict', '[0],[system],[dict],', '字典列表', '', '/dict/list', 5, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (157, 'dict_detail', 'dict', '[0],[system],[dict],', '字典详情', '', '/dict/detail', 6, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (158, 'log_list', 'log', '[0],[system],[log],', '日志列表', '', '/log/list', 2, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (159, 'log_detail', 'log', '[0],[system],[log],', '日志详情', '', '/log/detail', 3, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (160, 'del_login_log', 'loginLog', '[0],[system],[loginLog],', '清空登录日志', '', '/loginLog/delLoginLog', 1, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (161, 'login_log_list', 'loginLog', '[0],[system],[loginLog],', '登录日志列表', '', '/loginLog/list', 2, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (162, 'to_role_edit', 'role', '[0],[system],[role],', '修改角色跳转', '', '/role/role_edit', 5, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (163, 'to_role_assign', 'role', '[0],[system],[role],', '角色分配跳转', '', '/role/role_assign', 6, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (164, 'role_list', 'role', '[0],[system],[role],', '角色列表', '', '/role/list', 7, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (165, 'to_assign_role', 'mgr', '[0],[system],[mgr],', '分配角色跳转', '', '/mgr/role_assign', 8, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (166, 'to_user_edit', 'mgr', '[0],[system],[mgr],', '编辑用户跳转', '', '/mgr/user_edit', 9, 3, 0, NULL, 1, NULL); +INSERT INTO `sys_menu` VALUES (167, 'mgr_list', 'mgr', '[0],[system],[mgr],', '用户列表', '', '/mgr/list', 10, 3, 0, NULL, 1, NULL); + +-- ---------------------------- +-- Table structure for sys_notice +-- ---------------------------- +DROP TABLE IF EXISTS `sys_notice`; +CREATE TABLE `sys_notice` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题', + `type` int(11) NULL DEFAULT NULL COMMENT '类型', + `content` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容', + `createtime` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', + `creater` int(11) NULL DEFAULT NULL COMMENT '创建人', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '通知表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_notice +-- ---------------------------- +INSERT INTO `sys_notice` VALUES (6, '世界', 10, '欢迎使用Guns管理系统', '2017-01-11 08:53:20', 1); +INSERT INTO `sys_notice` VALUES (8, '你好', NULL, '你好', '2017-05-10 19:28:57', 1); + +-- ---------------------------- +-- Table structure for sys_operation_log +-- ---------------------------- +DROP TABLE IF EXISTS `sys_operation_log`; +CREATE TABLE `sys_operation_log` ( + `id` int(65) NOT NULL AUTO_INCREMENT COMMENT '主键', + `logtype` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日志类型', + `logname` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日志名称', + `userid` int(65) NULL DEFAULT NULL COMMENT '用户id', + `classname` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类名称', + `method` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '方法名称', + `createtime` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', + `succeed` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否成功', + `message` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '操作日志' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_operation_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for sys_relation +-- ---------------------------- +DROP TABLE IF EXISTS `sys_relation`; +CREATE TABLE `sys_relation` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `menuid` bigint(11) NULL DEFAULT NULL COMMENT '菜单id', + `roleid` int(11) NULL DEFAULT NULL COMMENT '角色id', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 56 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色和菜单关联表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_relation +-- ---------------------------- +INSERT INTO `sys_relation` VALUES (1, 105, 1); +INSERT INTO `sys_relation` VALUES (2, 106, 1); +INSERT INTO `sys_relation` VALUES (3, 107, 1); +INSERT INTO `sys_relation` VALUES (4, 108, 1); +INSERT INTO `sys_relation` VALUES (5, 109, 1); +INSERT INTO `sys_relation` VALUES (6, 110, 1); +INSERT INTO `sys_relation` VALUES (7, 111, 1); +INSERT INTO `sys_relation` VALUES (8, 112, 1); +INSERT INTO `sys_relation` VALUES (9, 113, 1); +INSERT INTO `sys_relation` VALUES (10, 165, 1); +INSERT INTO `sys_relation` VALUES (11, 166, 1); +INSERT INTO `sys_relation` VALUES (12, 167, 1); +INSERT INTO `sys_relation` VALUES (13, 114, 1); +INSERT INTO `sys_relation` VALUES (14, 115, 1); +INSERT INTO `sys_relation` VALUES (15, 116, 1); +INSERT INTO `sys_relation` VALUES (16, 117, 1); +INSERT INTO `sys_relation` VALUES (17, 118, 1); +INSERT INTO `sys_relation` VALUES (18, 162, 1); +INSERT INTO `sys_relation` VALUES (19, 163, 1); +INSERT INTO `sys_relation` VALUES (20, 164, 1); +INSERT INTO `sys_relation` VALUES (21, 119, 1); +INSERT INTO `sys_relation` VALUES (22, 120, 1); +INSERT INTO `sys_relation` VALUES (23, 121, 1); +INSERT INTO `sys_relation` VALUES (24, 122, 1); +INSERT INTO `sys_relation` VALUES (25, 150, 1); +INSERT INTO `sys_relation` VALUES (26, 151, 1); +INSERT INTO `sys_relation` VALUES (27, 128, 1); +INSERT INTO `sys_relation` VALUES (28, 134, 1); +INSERT INTO `sys_relation` VALUES (29, 158, 1); +INSERT INTO `sys_relation` VALUES (30, 159, 1); +INSERT INTO `sys_relation` VALUES (31, 130, 1); +INSERT INTO `sys_relation` VALUES (32, 131, 1); +INSERT INTO `sys_relation` VALUES (33, 135, 1); +INSERT INTO `sys_relation` VALUES (34, 136, 1); +INSERT INTO `sys_relation` VALUES (35, 137, 1); +INSERT INTO `sys_relation` VALUES (36, 152, 1); +INSERT INTO `sys_relation` VALUES (37, 153, 1); +INSERT INTO `sys_relation` VALUES (38, 154, 1); +INSERT INTO `sys_relation` VALUES (39, 132, 1); +INSERT INTO `sys_relation` VALUES (40, 138, 1); +INSERT INTO `sys_relation` VALUES (41, 139, 1); +INSERT INTO `sys_relation` VALUES (42, 140, 1); +INSERT INTO `sys_relation` VALUES (43, 155, 1); +INSERT INTO `sys_relation` VALUES (44, 156, 1); +INSERT INTO `sys_relation` VALUES (45, 157, 1); +INSERT INTO `sys_relation` VALUES (46, 133, 1); +INSERT INTO `sys_relation` VALUES (47, 160, 1); +INSERT INTO `sys_relation` VALUES (48, 161, 1); +INSERT INTO `sys_relation` VALUES (49, 141, 1); +INSERT INTO `sys_relation` VALUES (50, 142, 1); +INSERT INTO `sys_relation` VALUES (51, 143, 1); +INSERT INTO `sys_relation` VALUES (52, 144, 1); +INSERT INTO `sys_relation` VALUES (53, 145, 1); +INSERT INTO `sys_relation` VALUES (54, 148, 1); +INSERT INTO `sys_relation` VALUES (55, 149, 1); + +-- ---------------------------- +-- Table structure for sys_role +-- ---------------------------- +DROP TABLE IF EXISTS `sys_role`; +CREATE TABLE `sys_role` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键id', + `num` int(11) NULL DEFAULT NULL COMMENT '序号', + `pid` int(11) NULL DEFAULT NULL COMMENT '父角色id', + `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色名称', + `deptid` int(11) NULL DEFAULT NULL COMMENT '部门名称', + `tips` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '提示', + `version` int(11) NULL DEFAULT NULL COMMENT '保留字段(暂时没用)', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_role +-- ---------------------------- +INSERT INTO `sys_role` VALUES (1, 1, 0, '超级管理员', 24, 'administrator', 1); + +-- ---------------------------- +-- Table structure for sys_user +-- ---------------------------- +DROP TABLE IF EXISTS `sys_user`; +CREATE TABLE `sys_user` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键id', + `avatar` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '头像', + `account` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '账号', + `password` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密码', + `salt` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'md5密码盐', + `name` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名字', + `birthday` datetime(0) NULL DEFAULT NULL COMMENT '生日', + `sex` int(11) NULL DEFAULT NULL COMMENT '性别(1:男 2:女)', + `email` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电子邮件', + `phone` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电话', + `roleid` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色id', + `deptid` int(11) NULL DEFAULT NULL COMMENT '部门id', + `status` int(11) NULL DEFAULT NULL COMMENT '状态(1:启用 2:冻结 3:删除)', + `createtime` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', + `version` int(11) NULL DEFAULT NULL COMMENT '保留字段', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '管理员表' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of sys_user +-- ---------------------------- +INSERT INTO `sys_user` VALUES (1, 'girl.gif', 'admin', 'ecfadcde9305f8891bcfe5a1e28c253e', '8pgby', '张三', '2017-05-05 00:00:00', 2, 'sn93@qq.com', '18200000000', '1', 27, 1, '2016-01-29 08:49:53', 25); + +-- ---------------------------- +-- Table structure for t_agent +-- ---------------------------- +DROP TABLE IF EXISTS `t_agent`; +CREATE TABLE `t_agent` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `principal` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '负责人姓名', + `principalPhone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '负责人电话', + `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '邮箱', + `provinceCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域省编号', + `provinceName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域省名称', + `cityCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域市编号', + `cityName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域市名称', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '代理商' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_agent +-- ---------------------------- +INSERT INTO `t_agent` VALUES (1, 'admin', '1588888888', '393733352@qq.com', '510000', '四川省', '510100', '成都市', 1, '2023-02-03 14:52:57'); + +-- ---------------------------- +-- Table structure for t_app_user +-- ---------------------------- +DROP TABLE IF EXISTS `t_app_user`; +CREATE TABLE `t_app_user` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `nickname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '用户昵称', + `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '手机号', + `sex` int(1) NULL DEFAULT NULL COMMENT '性别(1=男,2=女)', + `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '头像', + `openid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '微信openid', + `unionid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '微信unionid', + `emergencyContact` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '紧急联系人', + `emergencyPhone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '紧急联系电话', + `accountBalance` double(11, 2) NULL DEFAULT NULL COMMENT '账户余额', + `userTagId` int(11) NULL DEFAULT NULL COMMENT '用户标签id', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '用户基础信息' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_app_user +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_branch_office +-- ---------------------------- +DROP TABLE IF EXISTS `t_branch_office`; +CREATE TABLE `t_branch_office` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `agentId` int(11) NULL DEFAULT NULL COMMENT '代理商id', + `principal` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '负责人姓名', + `principalPhone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '负责人电话', + `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '邮箱', + `provinceCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域省编号', + `provinceName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域省名称', + `cityCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域市编号', + `cityName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域市名称', + `districtCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域区编号', + `districtName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '代理区域区名称', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '分公司' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_branch_office +-- ---------------------------- +INSERT INTO `t_branch_office` VALUES (1, 1, 'test', '1566666666', '393733352@qq.com', '510000', '四川省', '510100', '成都市', '510107', '武侯区', 1, '2023-02-03 14:53:48'); + +-- ---------------------------- +-- Table structure for t_complaint +-- ---------------------------- +DROP TABLE IF EXISTS `t_complaint`; +CREATE TABLE `t_complaint` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `userId` int(11) NULL DEFAULT NULL COMMENT '用户id', + `driverId` int(11) NULL DEFAULT NULL COMMENT '投诉司机id', + `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '投诉原因', + `notes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '注释', + `state` int(1) NULL DEFAULT NULL COMMENT '处理状态(1=待处理,2=已处理)', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '投诉' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_complaint +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_coupon +-- ---------------------------- +DROP TABLE IF EXISTS `t_coupon`; +CREATE TABLE `t_coupon` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '优惠券' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_coupon +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_driver +-- ---------------------------- +DROP TABLE IF EXISTS `t_driver`; +CREATE TABLE `t_driver` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '编号', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '姓名', + `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '头像', + `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '手机号', + `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '密码', + `sex` int(1) NULL DEFAULT NULL COMMENT '性别(1=男,2=女)', + `source` int(1) NULL DEFAULT NULL COMMENT '来源(1=)', + `emergencyContact` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '紧急联系人', + `emergencyPhone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '紧急联系电话', + `driverLicenseNumber` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '驾驶证号码', + `driverLicense` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '驾驶证照片', + `idcard` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '身份证号码', + `idcardFront` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '身份证正面照', + `idcardBack` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '身份证背面照', + `inviterType` int(1) NULL DEFAULT NULL COMMENT '邀约人类型(1=用户,2=司机)', + `inviterId` int(11) NULL DEFAULT NULL COMMENT '邀约人id', + `agentId` int(11) NULL DEFAULT NULL COMMENT '代理商id', + `branchOfficeId` int(11) NULL DEFAULT NULL COMMENT '分公司id', + `approvalStatus` int(1) NULL DEFAULT NULL COMMENT '审核状态(1=待审核,2=已同意,3=已拒绝)', + `approvalNotes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '审核注释', + `approvalUserId` int(11) NULL DEFAULT NULL COMMENT '审核用户id', + `approvalTime` datetime(0) NULL DEFAULT NULL COMMENT '审核时间', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '司机基础信息' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_driver +-- ---------------------------- +INSERT INTO `t_driver` VALUES (1, '6450492139306606', NULL, '11', '15828353127', NULL, NULL, NULL, 'kk', '18382330577', NULL, '11', NULL, '11', '11', 1, 11, 1, 1, 1, '', NULL, NULL, 1, '2023-02-08 23:48:29'); + +-- ---------------------------- +-- Table structure for t_evaluate +-- ---------------------------- +DROP TABLE IF EXISTS `t_evaluate`; +CREATE TABLE `t_evaluate` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `orderId` int(11) NULL DEFAULT NULL COMMENT '订单id', + `userId` int(11) NULL DEFAULT NULL COMMENT '用户id', + `score` int(1) NULL DEFAULT NULL COMMENT '评分', + `evaluate` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '评价内容', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '订单评价' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_evaluate +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_html +-- ---------------------------- +DROP TABLE IF EXISTS `t_html`; +CREATE TABLE `t_html` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `type` int(1) NULL DEFAULT NULL COMMENT '类型(1=)', + `html` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT 'H5内容', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = 'H5富文本' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_html +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_img +-- ---------------------------- +DROP TABLE IF EXISTS `t_img`; +CREATE TABLE `t_img` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `type` int(1) NULL DEFAULT NULL COMMENT '数据类型(1=启动页)', + `img` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '图片地址', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '系统图片' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_img +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_order +-- ---------------------------- +DROP TABLE IF EXISTS `t_order`; +CREATE TABLE `t_order` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '编号', + `userId` int(11) NULL DEFAULT NULL COMMENT '用户id', + `driverId` int(11) NULL DEFAULT NULL COMMENT '司机id', + `source` int(1) NULL DEFAULT NULL COMMENT '订单来源(1=小程序)', + `agentId` int(11) NULL DEFAULT NULL COMMENT '代理商id', + `branchOfficeId` int(11) NULL DEFAULT NULL COMMENT '分公司id', + `startTime` datetime(0) NULL DEFAULT NULL COMMENT '开始服务时间', + `startAddress` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '起点地址', + `startLat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '起点纬度', + `startLng` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '起点经度', + `endAddress` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '终点地址', + `endLat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '终点纬度', + `endLng` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '终点经度', + `boardingTime` datetime(0) NULL DEFAULT NULL COMMENT '上车时间', + `getoffTime` datetime(0) NULL DEFAULT NULL COMMENT '下车时间', + `estimatedPrice` decimal(10, 2) NULL DEFAULT NULL COMMENT '预估价', + `orderMoney` decimal(10, 2) NULL DEFAULT NULL COMMENT '订单金额', + `payMoney` decimal(10, 2) NULL DEFAULT NULL COMMENT '支付金额', + `discountedPrice` decimal(10, 2) NULL DEFAULT NULL COMMENT '优惠金额', + `couponId` int(11) NULL DEFAULT NULL COMMENT '优惠券id', + `payType` int(1) NULL DEFAULT NULL COMMENT '支付类型(1=线上)', + `payTime` datetime(0) NULL DEFAULT NULL COMMENT '支付时间', + `state` int(1) NULL DEFAULT NULL COMMENT '订单状态(1=待接单,2=已接单,3=)', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '订单' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_order +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_recharge_record +-- ---------------------------- +DROP TABLE IF EXISTS `t_recharge_record`; +CREATE TABLE `t_recharge_record` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `type` int(1) NULL DEFAULT NULL COMMENT '数据类型(1=用户,2=司机)', + `userId` int(11) NULL DEFAULT NULL COMMENT '用户id', + `code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '流水号', + `amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '充值金额', + `payType` int(1) NULL DEFAULT NULL COMMENT '支付方式(1=微信)', + `payTime` datetime(0) NULL DEFAULT NULL COMMENT '完成支付时间', + `payStatus` int(1) NULL DEFAULT NULL COMMENT '支付状态(1=待支付,2=已完成)', + `orderNumber` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '第三方流水号', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '充值记录' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_recharge_record +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_region +-- ---------------------------- +DROP TABLE IF EXISTS `t_region`; +CREATE TABLE `t_region` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', + `name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '城市名称', + `code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, + `citycode` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, + `parent_id` int(11) NULL DEFAULT NULL COMMENT '父级ID', + `english` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '英文名称', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 3537 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '省市区三级联动' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_region +-- ---------------------------- +INSERT INTO `t_region` VALUES (1, '北京市', '110000', '010', 0, 'Beijing Municipality'); +INSERT INTO `t_region` VALUES (2, '北京市市辖区', '110100', '010', 1, 'Beijing municipal'); +INSERT INTO `t_region` VALUES (3, '东城区', '110101', '010', 2, 'Dongcheng'); +INSERT INTO `t_region` VALUES (4, '西城区', '110102', '010', 2, 'Xicheng'); +INSERT INTO `t_region` VALUES (5, '朝阳区', '110105', '010', 2, 'Chaoyang'); +INSERT INTO `t_region` VALUES (6, '丰台区', '110106', '010', 2, 'FengTai'); +INSERT INTO `t_region` VALUES (7, '石景山区', '110107', '010', 2, 'Shijingshan'); +INSERT INTO `t_region` VALUES (8, '海淀区', '110108', '010', 2, 'Haidian'); +INSERT INTO `t_region` VALUES (9, '门头沟区', '110109', '010', 2, 'Mentougou'); +INSERT INTO `t_region` VALUES (10, '房山区', '110111', '010', 2, 'Fangshan'); +INSERT INTO `t_region` VALUES (11, '通州区', '110112', '010', 2, 'Tongzhou'); +INSERT INTO `t_region` VALUES (12, '顺义区', '110113', '010', 2, 'Shunyi'); +INSERT INTO `t_region` VALUES (13, '昌平区', '110114', '010', 2, 'Changping'); +INSERT INTO `t_region` VALUES (14, '大兴区', '110115', '010', 2, 'Daxing'); +INSERT INTO `t_region` VALUES (15, '怀柔区', '110116', '010', 2, 'Huairou'); +INSERT INTO `t_region` VALUES (16, '平谷区', '110117', '010', 2, 'Pinggu'); +INSERT INTO `t_region` VALUES (17, '密云区', '110118', '010', 2, 'Miyun'); +INSERT INTO `t_region` VALUES (18, '延庆区', '110119', '010', 2, 'Yanqing'); +INSERT INTO `t_region` VALUES (19, '天津市', '120000', '022', 0, 'Tianjin Municipality '); +INSERT INTO `t_region` VALUES (20, '天津市市辖区', '120100', '022', 19, 'Tianjin municipal'); +INSERT INTO `t_region` VALUES (21, '和平区', '120101', '022', 20, 'peace zone '); +INSERT INTO `t_region` VALUES (22, '河东区', '120102', '022', 20, 'Hedong'); +INSERT INTO `t_region` VALUES (23, '河西区', '120103', '022', 20, 'Hexi'); +INSERT INTO `t_region` VALUES (24, '南开区', '120104', '022', 20, 'Nankai'); +INSERT INTO `t_region` VALUES (25, '河北区', '120105', '022', 20, 'Hebei'); +INSERT INTO `t_region` VALUES (26, '红桥区', '120106', '022', 20, 'Hongqiao'); +INSERT INTO `t_region` VALUES (27, '东丽区', '120110', '022', 20, 'dongli'); +INSERT INTO `t_region` VALUES (28, '西青区', '120111', '022', 20, 'Xiqing'); +INSERT INTO `t_region` VALUES (29, '津南区', '120112', '022', 20, 'jinnan'); +INSERT INTO `t_region` VALUES (30, '北辰区', '120113', '022', 20, 'Beichen'); +INSERT INTO `t_region` VALUES (31, '武清区', '120114', '022', 20, 'Wuqing'); +INSERT INTO `t_region` VALUES (32, '宝坻区', '120115', '022', 20, 'Baodi'); +INSERT INTO `t_region` VALUES (33, '滨海新区', '120116', '022', 20, 'binhai new area'); +INSERT INTO `t_region` VALUES (34, '宁河区', '120117', '022', 20, 'Ninghe'); +INSERT INTO `t_region` VALUES (35, '静海区', '120118', '022', 20, 'Jinghai'); +INSERT INTO `t_region` VALUES (36, '蓟州区', '120119', '022', 20, 'Thistle'); +INSERT INTO `t_region` VALUES (37, '河北省', '130000', '', 0, 'Hebei Province '); +INSERT INTO `t_region` VALUES (38, '石家庄市', '130100', '0311', 37, 'Shijiazhuang'); +INSERT INTO `t_region` VALUES (39, '石家庄市市辖区', '130101', '0311', 38, 'Shijiazhuang municipal'); +INSERT INTO `t_region` VALUES (40, '长安区', '130102', '0311', 38, 'Changan'); +INSERT INTO `t_region` VALUES (41, '桥西区', '130104', '0311', 38, 'Qiaoxi'); +INSERT INTO `t_region` VALUES (42, '新华区', '130105', '0311', 38, 'Xinhua'); +INSERT INTO `t_region` VALUES (43, '井陉矿区', '130107', '0311', 38, 'Jingxing Mining'); +INSERT INTO `t_region` VALUES (44, '裕华区', '130108', '0311', 38, 'Yuhua'); +INSERT INTO `t_region` VALUES (45, '藁城区', '130109', '0311', 38, 'Gaocheng'); +INSERT INTO `t_region` VALUES (46, '鹿泉区', '130110', '0311', 38, 'Luquan'); +INSERT INTO `t_region` VALUES (47, '栾城区', '130111', '0311', 38, 'Luancheng'); +INSERT INTO `t_region` VALUES (48, '井陉县', '130121', '0311', 38, 'Jingxing'); +INSERT INTO `t_region` VALUES (49, '正定县', '130123', '0311', 38, 'Zhengding'); +INSERT INTO `t_region` VALUES (50, '行唐县', '130125', '0311', 38, 'Xingtang'); +INSERT INTO `t_region` VALUES (51, '灵寿县', '130126', '0311', 38, 'Lingshou'); +INSERT INTO `t_region` VALUES (52, '高邑县', '130127', '0311', 38, 'Gaoyi'); +INSERT INTO `t_region` VALUES (53, '深泽县', '130128', '0311', 38, 'Shenze'); +INSERT INTO `t_region` VALUES (54, '赞皇县', '130129', '0311', 38, 'Zanhuang'); +INSERT INTO `t_region` VALUES (55, '无极县', '130130', '0311', 38, 'Wuji'); +INSERT INTO `t_region` VALUES (56, '平山县', '130131', '0311', 38, 'Pingshan'); +INSERT INTO `t_region` VALUES (57, '元氏县', '130132', '0311', 38, 'Yuanshi'); +INSERT INTO `t_region` VALUES (58, '赵县', '130133', '0311', 38, 'Zhaoxian'); +INSERT INTO `t_region` VALUES (59, '辛集市', '130181', '0311', 38, 'Xinji'); +INSERT INTO `t_region` VALUES (60, '晋州市', '130183', '0311', 38, 'Jinzhou City'); +INSERT INTO `t_region` VALUES (61, '新乐市', '130184', '0311', 38, 'Xinle City'); +INSERT INTO `t_region` VALUES (62, '唐山市', '130200', '0315', 37, 'Tangshan'); +INSERT INTO `t_region` VALUES (63, '唐山市市辖区', '130201', '0315', 62, 'Tangshan City'); +INSERT INTO `t_region` VALUES (64, '路南区', '130202', '0315', 62, 'Lunan'); +INSERT INTO `t_region` VALUES (65, '路北区', '130203', '0315', 62, 'Lubei'); +INSERT INTO `t_region` VALUES (66, '古冶区', '130204', '0315', 62, 'Guye'); +INSERT INTO `t_region` VALUES (67, '开平区', '130205', '0315', 62, 'Kaiping'); +INSERT INTO `t_region` VALUES (68, '丰南区', '130207', '0315', 62, 'fengnan'); +INSERT INTO `t_region` VALUES (69, '丰润区', '130208', '0315', 62, 'Rich area'); +INSERT INTO `t_region` VALUES (70, '曹妃甸区', '130209', '0315', 62, 'Caofeidian'); +INSERT INTO `t_region` VALUES (71, '滦县', '130223', '0315', 62, 'Luanxian'); +INSERT INTO `t_region` VALUES (72, '滦南县', '130224', '0315', 62, 'Luannan'); +INSERT INTO `t_region` VALUES (73, '乐亭县', '130225', '0315', 62, 'Leting'); +INSERT INTO `t_region` VALUES (74, '迁西县', '130227', '0315', 62, 'Qianxi'); +INSERT INTO `t_region` VALUES (75, '玉田县', '130229', '0315', 62, 'Yutian'); +INSERT INTO `t_region` VALUES (76, '遵化市', '130281', '0315', 62, 'Zunhua City'); +INSERT INTO `t_region` VALUES (77, '迁安市', '130283', '0315', 62, 'Qian\'an'); +INSERT INTO `t_region` VALUES (78, '秦皇岛市', '130300', '0335', 37, 'Qinhuangdao City'); +INSERT INTO `t_region` VALUES (79, '秦皇岛市市辖区', '130301', '0335', 78, 'Qinhuangdao municipal'); +INSERT INTO `t_region` VALUES (80, '海港区', '130302', '0335', 78, 'waterfront area '); +INSERT INTO `t_region` VALUES (81, '山海关区', '130303', '0335', 78, 'Shanhaiguan area'); +INSERT INTO `t_region` VALUES (82, '北戴河区', '130304', '0335', 78, 'Beidaihe'); +INSERT INTO `t_region` VALUES (83, '青龙满族自治县', '130321', '0335', 78, 'Qinglong'); +INSERT INTO `t_region` VALUES (84, '昌黎县', '130322', '0335', 78, 'Changli'); +INSERT INTO `t_region` VALUES (85, '抚宁区', '130306', '0335', 78, 'Funing'); +INSERT INTO `t_region` VALUES (86, '卢龙县', '130324', '0335', 78, 'Lulong'); +INSERT INTO `t_region` VALUES (87, '邯郸市', '130400', '0310', 37, 'Handan'); +INSERT INTO `t_region` VALUES (88, '邯郸市市辖区', '130401', '0310', 87, 'Handan municipal'); +INSERT INTO `t_region` VALUES (89, '邯山区', '130402', '0310', 87, 'Hanshan'); +INSERT INTO `t_region` VALUES (90, '丛台区', '130403', '0310', 87, 'Congtai'); +INSERT INTO `t_region` VALUES (91, '复兴区', '130404', '0310', 87, 'Revival area'); +INSERT INTO `t_region` VALUES (92, '峰峰矿区', '130406', '0310', 87, 'Fengfeng mining area'); +INSERT INTO `t_region` VALUES (93, '临漳县', '130423', '0310', 87, 'Linzhang'); +INSERT INTO `t_region` VALUES (94, '成安县', '130424', '0310', 87, 'Cheng’an'); +INSERT INTO `t_region` VALUES (95, '大名县', '130425', '0310', 87, 'Daming'); +INSERT INTO `t_region` VALUES (96, '涉县', '130426', '0310', 87, 'Shexian'); +INSERT INTO `t_region` VALUES (97, '磁县', '130427', '0310', 87, 'Cixian'); +INSERT INTO `t_region` VALUES (98, '肥乡区', '130407', '0310', 87, 'Feixiang'); +INSERT INTO `t_region` VALUES (99, '永年区', '130408', '0310', 87, 'Yongnian'); +INSERT INTO `t_region` VALUES (100, '邱县', '130430', '0310', 87, 'Qiuxian'); +INSERT INTO `t_region` VALUES (101, '鸡泽县', '130431', '0310', 87, 'Jize'); +INSERT INTO `t_region` VALUES (102, '广平县', '130432', '0310', 87, 'Guangping'); +INSERT INTO `t_region` VALUES (103, '馆陶县', '130433', '0310', 87, 'Guantao'); +INSERT INTO `t_region` VALUES (104, '魏县', '130434', '0310', 87, 'Weixian'); +INSERT INTO `t_region` VALUES (105, '曲周县', '130435', '0310', 87, 'Quzhou'); +INSERT INTO `t_region` VALUES (106, '武安市', '130481', '0310', 87, 'Wuan City'); +INSERT INTO `t_region` VALUES (107, '邢台市', '130500', '0319', 37, 'Xingtai'); +INSERT INTO `t_region` VALUES (108, '邢台市市辖区', '130501', '0319', 107, 'Xingtai municipal'); +INSERT INTO `t_region` VALUES (109, '桥东区', '130502', '0319', 107, 'Qiaodong'); +INSERT INTO `t_region` VALUES (110, '桥西区', '130503', '0319', 107, 'Qiaoxi'); +INSERT INTO `t_region` VALUES (111, '邢台县', '130521', '0319', 107, 'Xingtai'); +INSERT INTO `t_region` VALUES (112, '临城县', '130522', '0319', 107, 'Lincheng'); +INSERT INTO `t_region` VALUES (113, '内丘县', '130523', '0319', 107, 'Neiqiu'); +INSERT INTO `t_region` VALUES (114, '柏乡县', '130524', '0319', 107, 'Baixiang'); +INSERT INTO `t_region` VALUES (115, '隆尧县', '130525', '0319', 107, 'Longyao'); +INSERT INTO `t_region` VALUES (116, '任县', '130526', '0319', 107, 'Renxian'); +INSERT INTO `t_region` VALUES (117, '南和县', '130527', '0319', 107, 'Nanhe'); +INSERT INTO `t_region` VALUES (118, '宁晋县', '130528', '0319', 107, 'Ningjin'); +INSERT INTO `t_region` VALUES (119, '巨鹿县', '130529', '0319', 107, 'Julu'); +INSERT INTO `t_region` VALUES (120, '新河县', '130530', '0319', 107, 'Xinhe'); +INSERT INTO `t_region` VALUES (121, '广宗县', '130531', '0319', 107, 'Guangzong'); +INSERT INTO `t_region` VALUES (122, '平乡县', '130532', '0319', 107, 'Pingxiang'); +INSERT INTO `t_region` VALUES (123, '威县', '130533', '0319', 107, 'Weixian'); +INSERT INTO `t_region` VALUES (124, '清河县', '130534', '0319', 107, 'Qinhe'); +INSERT INTO `t_region` VALUES (125, '临西县', '130535', '0319', 107, 'Linxi'); +INSERT INTO `t_region` VALUES (126, '南宫市', '130581', '0319', 107, 'nangong'); +INSERT INTO `t_region` VALUES (127, '沙河市', '130582', '0319', 107, 'shahe'); +INSERT INTO `t_region` VALUES (128, '保定市', '130600', '0312', 37, 'Baoding'); +INSERT INTO `t_region` VALUES (129, '保定市市辖区', '130601', '0312', 128, 'Baoding municipal'); +INSERT INTO `t_region` VALUES (130, '竞秀区', '130602', '0312', 128, 'Competition show area'); +INSERT INTO `t_region` VALUES (131, '莲池区', '130606', '0312', 128, 'Lotus pond area'); +INSERT INTO `t_region` VALUES (132, '满城区', '130607', '0312', 128, 'Manchu'); +INSERT INTO `t_region` VALUES (133, '清苑区', '130608', '0312', 128, 'Qingyuan'); +INSERT INTO `t_region` VALUES (134, '涞水县', '130623', '0312', 128, 'Laishui'); +INSERT INTO `t_region` VALUES (135, '阜平县', '130624', '0312', 128, 'Fuping'); +INSERT INTO `t_region` VALUES (136, '徐水区', '130609', '0312', 128, 'Xushui'); +INSERT INTO `t_region` VALUES (137, '定兴县', '130626', '0312', 128, 'Dingxing'); +INSERT INTO `t_region` VALUES (138, '唐县', '130627', '0312', 128, 'Tangxian'); +INSERT INTO `t_region` VALUES (139, '高阳县', '130628', '0312', 128, 'Gaoyang'); +INSERT INTO `t_region` VALUES (140, '容城县', '130629', '0312', 128, 'Rongcheng'); +INSERT INTO `t_region` VALUES (141, '涞源县', '130630', '0312', 128, 'Laiyuan'); +INSERT INTO `t_region` VALUES (142, '望都县', '130631', '0312', 128, 'Wangdu'); +INSERT INTO `t_region` VALUES (143, '安新县', '130632', '0312', 128, 'Anxin'); +INSERT INTO `t_region` VALUES (144, '易县', '130633', '0312', 128, 'Yixian'); +INSERT INTO `t_region` VALUES (145, '曲阳县', '130634', '0312', 128, 'Quyang'); +INSERT INTO `t_region` VALUES (146, '蠡县', '130635', '0312', 128, 'Lixian'); +INSERT INTO `t_region` VALUES (147, '顺平县', '130636', '0312', 128, 'Shunping'); +INSERT INTO `t_region` VALUES (148, '博野县', '130637', '0312', 128, 'Boye'); +INSERT INTO `t_region` VALUES (149, '雄县', '130638', '0312', 128, 'Xiongxian'); +INSERT INTO `t_region` VALUES (150, '涿州市', '130681', '0312', 128, 'Zhuozhou'); +INSERT INTO `t_region` VALUES (151, '定州市', '130682', '0312', 128, 'Dingzhou'); +INSERT INTO `t_region` VALUES (152, '安国市', '130683', '0312', 128, 'Anguo'); +INSERT INTO `t_region` VALUES (153, '高碑店市', '130684', '0312', 128, 'Gaobeidian City'); +INSERT INTO `t_region` VALUES (154, '张家口市', '130700', '0313', 37, 'Zhangjiakou'); +INSERT INTO `t_region` VALUES (155, '张家口市市辖区', '130701', '0313', 154, 'Zhangjiakou municipal'); +INSERT INTO `t_region` VALUES (156, '桥东区', '130702', '0313', 154, 'Qiaodong'); +INSERT INTO `t_region` VALUES (157, '桥西区', '130703', '0313', 154, 'Qiaoxi'); +INSERT INTO `t_region` VALUES (158, '宣化区', '130705', '0313', 154, 'Xuanhua'); +INSERT INTO `t_region` VALUES (159, '下花园区', '130706', '0313', 154, 'Lower garden area'); +INSERT INTO `t_region` VALUES (160, '张北县', '130722', '0313', 154, 'Zhangbei'); +INSERT INTO `t_region` VALUES (161, '康保县', '130723', '0313', 154, 'Kangbao'); +INSERT INTO `t_region` VALUES (162, '沽源县', '130724', '0313', 154, 'Guyuan'); +INSERT INTO `t_region` VALUES (163, '尚义县', '130725', '0313', 154, 'Shangyi'); +INSERT INTO `t_region` VALUES (164, '蔚县', '130726', '0313', 154, 'Yuxian (ain Hebei Province) '); +INSERT INTO `t_region` VALUES (165, '阳原县', '130727', '0313', 154, 'Yangyuan'); +INSERT INTO `t_region` VALUES (166, '怀安县', '130728', '0313', 154, 'Huai\'an'); +INSERT INTO `t_region` VALUES (167, '万全区', '130708', '0313', 154, 'Wanquan'); +INSERT INTO `t_region` VALUES (168, '怀来县', '130730', '0313', 154, 'Huailai'); +INSERT INTO `t_region` VALUES (169, '涿鹿县', '130731', '0313', 154, 'Zhuolu'); +INSERT INTO `t_region` VALUES (170, '赤城县', '130732', '0313', 154, 'Chicheng'); +INSERT INTO `t_region` VALUES (171, '崇礼区', '130709', '0313', 154, 'Chongli'); +INSERT INTO `t_region` VALUES (172, '承德市', '130800', '0314', 37, 'Chengde'); +INSERT INTO `t_region` VALUES (173, '承德市市辖区', '130801', '0314', 172, 'Chengde municipal'); +INSERT INTO `t_region` VALUES (174, '双桥区', '130802', '0314', 172, 'Shuangqiao'); +INSERT INTO `t_region` VALUES (175, '双滦区', '130803', '0314', 172, 'shuangluan'); +INSERT INTO `t_region` VALUES (176, '鹰手营子矿区', '130804', '0314', 172, 'Yingshouyingzi Mining'); +INSERT INTO `t_region` VALUES (177, '承德县', '130821', '0314', 172, 'Chengde'); +INSERT INTO `t_region` VALUES (178, '兴隆县', '130822', '0314', 172, 'Xinglong'); +INSERT INTO `t_region` VALUES (179, '平泉市', '130881', '0314', 172, 'Pingquan City'); +INSERT INTO `t_region` VALUES (180, '滦平县', '130824', '0314', 172, 'Luanping'); +INSERT INTO `t_region` VALUES (181, '隆化县', '130825', '0314', 172, 'Longhua'); +INSERT INTO `t_region` VALUES (182, '丰宁满族自治县', '130826', '0314', 172, 'Fengning Manchu Autonomous'); +INSERT INTO `t_region` VALUES (183, '宽城满族自治县', '130827', '0314', 172, 'kuancheng'); +INSERT INTO `t_region` VALUES (184, '围场满族蒙古族自治县', '130828', '0314', 172, 'Manchu Mongol Autonomous, paddock'); +INSERT INTO `t_region` VALUES (185, '沧州市', '130900', '0317', 37, 'Cangzhou'); +INSERT INTO `t_region` VALUES (186, '沧州市市辖区', '130901', '0317', 185, 'Cangzhou municipal'); +INSERT INTO `t_region` VALUES (187, '新华区', '130902', '0317', 185, 'Xinhua'); +INSERT INTO `t_region` VALUES (188, '运河区', '130903', '0317', 185, 'canal zone'); +INSERT INTO `t_region` VALUES (189, '沧县', '130921', '0317', 185, 'Cangxian'); +INSERT INTO `t_region` VALUES (190, '青县', '130922', '0317', 185, 'Qingxian'); +INSERT INTO `t_region` VALUES (191, '东光县', '130923', '0317', 185, 'Dongguang'); +INSERT INTO `t_region` VALUES (192, '海兴县', '130924', '0317', 185, 'Haixing'); +INSERT INTO `t_region` VALUES (193, '盐山县', '130925', '0317', 185, 'Yanshan'); +INSERT INTO `t_region` VALUES (194, '肃宁县', '130926', '0317', 185, 'Suning'); +INSERT INTO `t_region` VALUES (195, '南皮县', '130927', '0317', 185, 'Nanpi'); +INSERT INTO `t_region` VALUES (196, '吴桥县', '130928', '0317', 185, 'Wuqiao'); +INSERT INTO `t_region` VALUES (197, '献县', '130929', '0317', 185, 'Xianxian'); +INSERT INTO `t_region` VALUES (198, '孟村回族自治县', '130930', '0317', 185, 'Hui Autonomousof Mengcun '); +INSERT INTO `t_region` VALUES (199, '泊头市', '130981', '0317', 185, 'Botou'); +INSERT INTO `t_region` VALUES (200, '任丘市', '130982', '0317', 185, 'Renqiu'); +INSERT INTO `t_region` VALUES (201, '黄骅市', '130983', '0317', 185, 'Huanghua City'); +INSERT INTO `t_region` VALUES (202, '河间市', '130984', '0317', 185, 'Hejian'); +INSERT INTO `t_region` VALUES (203, '廊坊市', '131000', '0316', 37, 'Langfang City'); +INSERT INTO `t_region` VALUES (204, '廊坊市市辖区', '131001', '0316', 203, 'Langfang municipal'); +INSERT INTO `t_region` VALUES (205, '安次区', '131002', '0316', 203, 'Anci'); +INSERT INTO `t_region` VALUES (206, '广阳区', '131003', '0316', 203, 'Guangyang'); +INSERT INTO `t_region` VALUES (207, '固安县', '131022', '0316', 203, 'Gu’an'); +INSERT INTO `t_region` VALUES (208, '永清县', '131023', '0316', 203, 'Yongqing'); +INSERT INTO `t_region` VALUES (209, '香河县', '131024', '0316', 203, 'Xianghe'); +INSERT INTO `t_region` VALUES (210, '大城县', '131025', '0316', 203, 'Daicheng'); +INSERT INTO `t_region` VALUES (211, '文安县', '131026', '0316', 203, 'Wen’an'); +INSERT INTO `t_region` VALUES (212, '大厂回族自治县', '131028', '0316', 203, 'Hui Autonomousof Dachang '); +INSERT INTO `t_region` VALUES (213, '霸州市', '131081', '0316', 203, 'bazhou city'); +INSERT INTO `t_region` VALUES (214, '三河市', '131082', '0316', 203, 'Sanhe'); +INSERT INTO `t_region` VALUES (215, '衡水市', '131100', '0318', 37, ''); +INSERT INTO `t_region` VALUES (216, '衡水市市辖区', '131101', '0318', 215, ''); +INSERT INTO `t_region` VALUES (217, '桃城区', '131102', '0318', 215, 'Taocheng'); +INSERT INTO `t_region` VALUES (218, '枣强县', '131121', '0318', 215, 'Zaoqiang'); +INSERT INTO `t_region` VALUES (219, '武邑县', '131122', '0318', 215, 'Wuyi'); +INSERT INTO `t_region` VALUES (220, '武强县', '131123', '0318', 215, 'Wuqiang'); +INSERT INTO `t_region` VALUES (221, '饶阳县', '131124', '0318', 215, 'Raoyang'); +INSERT INTO `t_region` VALUES (222, '安平县', '131125', '0318', 215, 'Anping'); +INSERT INTO `t_region` VALUES (223, '故城县', '131126', '0318', 215, 'Gucheng'); +INSERT INTO `t_region` VALUES (224, '景县', '131127', '0318', 215, 'Jingxian'); +INSERT INTO `t_region` VALUES (225, '阜城县', '131128', '0318', 215, 'Fucheng'); +INSERT INTO `t_region` VALUES (226, '冀州区', '131103', '0318', 215, 'Jizhou'); +INSERT INTO `t_region` VALUES (227, '深州市', '131182', '0318', 215, 'Shenzhou'); +INSERT INTO `t_region` VALUES (228, '山西省', '140000', '', 0, 'Shanxi International Gong and Drum Festival '); +INSERT INTO `t_region` VALUES (229, '太原市', '140100', '0351', 228, 'Taiyuan'); +INSERT INTO `t_region` VALUES (230, '太原市市辖区', '140101', '0351', 229, 'Taiyuan municipal'); +INSERT INTO `t_region` VALUES (231, '小店区', '140105', '0351', 229, 'Xiaodian'); +INSERT INTO `t_region` VALUES (232, '迎泽区', '140106', '0351', 229, 'Yingze'); +INSERT INTO `t_region` VALUES (233, '杏花岭区', '140107', '0351', 229, 'Xinghualing'); +INSERT INTO `t_region` VALUES (234, '尖草坪区', '140108', '0351', 229, 'Jiancaoping'); +INSERT INTO `t_region` VALUES (235, '万柏林区', '140109', '0351', 229, 'Wanbailin'); +INSERT INTO `t_region` VALUES (236, '晋源区', '140110', '0351', 229, 'jinyuan'); +INSERT INTO `t_region` VALUES (237, '清徐县', '140121', '0351', 229, 'Qingxu'); +INSERT INTO `t_region` VALUES (238, '阳曲县', '140122', '0351', 229, 'Yangqu'); +INSERT INTO `t_region` VALUES (239, '娄烦县', '140123', '0351', 229, 'Loufan'); +INSERT INTO `t_region` VALUES (240, '古交市', '140181', '0351', 229, 'gujiao city'); +INSERT INTO `t_region` VALUES (241, '大同市', '140200', '0352', 228, 'Datong'); +INSERT INTO `t_region` VALUES (242, '大同市市辖区', '140201', '0352', 241, 'Datong'); +INSERT INTO `t_region` VALUES (243, '城区', '140202', '0352', 241, 'theproper'); +INSERT INTO `t_region` VALUES (244, '矿区', '140203', '0352', 241, '[地质] ore'); +INSERT INTO `t_region` VALUES (245, '南郊区', '140211', '0352', 241, 'Nanjiao'); +INSERT INTO `t_region` VALUES (246, '新荣区', '140212', '0352', 241, 'Xinrong'); +INSERT INTO `t_region` VALUES (247, '阳高县', '140221', '0352', 241, 'Yanggao'); +INSERT INTO `t_region` VALUES (248, '天镇县', '140222', '0352', 241, 'Tianzhen'); +INSERT INTO `t_region` VALUES (249, '广灵县', '140223', '0352', 241, 'Guangling'); +INSERT INTO `t_region` VALUES (250, '灵丘县', '140224', '0352', 241, 'Lingqiu'); +INSERT INTO `t_region` VALUES (251, '浑源县', '140225', '0352', 241, 'Hunyuan'); +INSERT INTO `t_region` VALUES (252, '左云县', '140226', '0352', 241, 'Zuoyun'); +INSERT INTO `t_region` VALUES (253, '大同县', '140227', '0352', 241, 'Datong'); +INSERT INTO `t_region` VALUES (254, '阳泉市', '140300', '0353', 228, 'Yangquan'); +INSERT INTO `t_region` VALUES (255, '阳泉市市辖区', '140301', '0353', 254, 'Yangquan municipal'); +INSERT INTO `t_region` VALUES (256, '城区', '140302', '0353', 254, 'theproper'); +INSERT INTO `t_region` VALUES (257, '矿区', '140303', '0353', 254, 'ore'); +INSERT INTO `t_region` VALUES (258, '郊区', '140311', '0353', 254, 'suburbs'); +INSERT INTO `t_region` VALUES (259, '平定县', '140321', '0353', 254, 'Pingding'); +INSERT INTO `t_region` VALUES (260, '盂县', '140322', '0353', 254, 'Yuxian'); +INSERT INTO `t_region` VALUES (261, '长治市', '140400', '0355', 228, 'Changzhi'); +INSERT INTO `t_region` VALUES (262, '长治市市辖区', '140401', '0355', 261, 'Changzhi municipal'); +INSERT INTO `t_region` VALUES (263, '城区', '140402', '0355', 261, 'theproper'); +INSERT INTO `t_region` VALUES (264, '郊区', '140411', '0355', 261, 'suburbs'); +INSERT INTO `t_region` VALUES (265, '长治县', '140421', '0355', 261, 'Changzhi'); +INSERT INTO `t_region` VALUES (266, '襄垣县', '140423', '0355', 261, 'Xiangyuan'); +INSERT INTO `t_region` VALUES (267, '屯留县', '140424', '0355', 261, 'Tunliu'); +INSERT INTO `t_region` VALUES (268, '平顺县', '140425', '0355', 261, 'Pingshun'); +INSERT INTO `t_region` VALUES (269, '黎城县', '140426', '0355', 261, 'Licheng'); +INSERT INTO `t_region` VALUES (270, '壶关县', '140427', '0355', 261, 'Huguan'); +INSERT INTO `t_region` VALUES (271, '长子县', '140428', '0355', 261, 'Zhangzi'); +INSERT INTO `t_region` VALUES (272, '武乡县', '140429', '0355', 261, 'Wuxiang'); +INSERT INTO `t_region` VALUES (273, '沁县', '140430', '0355', 261, 'Qinxian'); +INSERT INTO `t_region` VALUES (274, '沁源县', '140431', '0355', 261, 'Qinyuan'); +INSERT INTO `t_region` VALUES (275, '潞城市', '140481', '0355', 261, 'lucheng'); +INSERT INTO `t_region` VALUES (276, '晋城市', '140500', '0356', 228, 'Jincheng City'); +INSERT INTO `t_region` VALUES (277, '晋城市市辖区', '140501', '0356', 276, 'Jincheng municipal'); +INSERT INTO `t_region` VALUES (278, '城区', '140502', '0356', 276, 'theproper'); +INSERT INTO `t_region` VALUES (279, '沁水县', '140521', '0356', 276, 'Qinshui'); +INSERT INTO `t_region` VALUES (280, '阳城县', '140522', '0356', 276, 'Yangcheng'); +INSERT INTO `t_region` VALUES (281, '陵川县', '140524', '0356', 276, 'Lingchuan'); +INSERT INTO `t_region` VALUES (282, '泽州县', '140525', '0356', 276, 'Zezhou'); +INSERT INTO `t_region` VALUES (283, '高平市', '140581', '0356', 276, 'gaoping'); +INSERT INTO `t_region` VALUES (284, '朔州市', '140600', '0349', 228, 'Shuozhou City'); +INSERT INTO `t_region` VALUES (285, '朔州市市辖区', '140601', '0349', 284, 'Shuozhou municipal'); +INSERT INTO `t_region` VALUES (286, '朔城区', '140602', '0349', 284, 'Shuocheng'); +INSERT INTO `t_region` VALUES (287, '平鲁区', '140603', '0349', 284, 'Pinglu'); +INSERT INTO `t_region` VALUES (288, '山阴县', '140621', '0349', 284, 'Shanyin'); +INSERT INTO `t_region` VALUES (289, '应县', '140622', '0349', 284, 'Yingxian'); +INSERT INTO `t_region` VALUES (290, '右玉县', '140623', '0349', 284, 'Youyu'); +INSERT INTO `t_region` VALUES (291, '怀仁县', '140624', '0349', 284, 'Huairen'); +INSERT INTO `t_region` VALUES (292, '晋中市', '140700', '0354', 228, 'Jinzhong'); +INSERT INTO `t_region` VALUES (293, '晋中市市辖区', '140701', '0354', 292, 'Jinzhong municipal'); +INSERT INTO `t_region` VALUES (294, '榆次区', '140702', '0354', 292, 'Yuci'); +INSERT INTO `t_region` VALUES (295, '榆社县', '140721', '0354', 292, 'Yushe'); +INSERT INTO `t_region` VALUES (296, '左权县', '140722', '0354', 292, 'Zuoquan'); +INSERT INTO `t_region` VALUES (297, '和顺县', '140723', '0354', 292, 'Heshun Couuty '); +INSERT INTO `t_region` VALUES (298, '昔阳县', '140724', '0354', 292, 'Xiyang'); +INSERT INTO `t_region` VALUES (299, '寿阳县', '140725', '0354', 292, 'Shouyang'); +INSERT INTO `t_region` VALUES (300, '太谷县', '140726', '0354', 292, 'Taigu'); +INSERT INTO `t_region` VALUES (301, '祁县', '140727', '0354', 292, 'Qixian'); +INSERT INTO `t_region` VALUES (302, '平遥县', '140728', '0354', 292, 'Pingyao'); +INSERT INTO `t_region` VALUES (303, '灵石县', '140729', '0354', 292, 'Lingshi'); +INSERT INTO `t_region` VALUES (304, '介休市', '140781', '0354', 292, 'jiexiu city'); +INSERT INTO `t_region` VALUES (305, '运城市', '140800', '0359', 228, 'Yuncheng City'); +INSERT INTO `t_region` VALUES (306, '运城市市辖区', '140801', '0359', 305, 'Yuncheng municipal'); +INSERT INTO `t_region` VALUES (307, '盐湖区', '140802', '0359', 305, 'Saline Lake'); +INSERT INTO `t_region` VALUES (308, '临猗县', '140821', '0359', 305, 'Linyi'); +INSERT INTO `t_region` VALUES (309, '万荣县', '140822', '0359', 305, 'Wanrong'); +INSERT INTO `t_region` VALUES (310, '闻喜县', '140823', '0359', 305, 'Wenxi'); +INSERT INTO `t_region` VALUES (311, '稷山县', '140824', '0359', 305, 'Jishan'); +INSERT INTO `t_region` VALUES (312, '新绛县', '140825', '0359', 305, 'Xinjiang'); +INSERT INTO `t_region` VALUES (313, '绛县', '140826', '0359', 305, 'Jiangxian'); +INSERT INTO `t_region` VALUES (314, '垣曲县', '140827', '0359', 305, 'Yuanqu'); +INSERT INTO `t_region` VALUES (315, '夏县', '140828', '0359', 305, 'Xiaxian'); +INSERT INTO `t_region` VALUES (316, '平陆县', '140829', '0359', 305, 'Pinglu'); +INSERT INTO `t_region` VALUES (317, '芮城县', '140830', '0359', 305, 'Ruicheng'); +INSERT INTO `t_region` VALUES (318, '永济市', '140881', '0359', 305, 'Yongji'); +INSERT INTO `t_region` VALUES (319, '河津市', '140882', '0359', 305, 'Hejin'); +INSERT INTO `t_region` VALUES (320, '忻州市', '140900', '0350', 228, 'xinzhou'); +INSERT INTO `t_region` VALUES (321, '忻州市市辖区', '140901', '0350', 320, 'Xinzhou municipal'); +INSERT INTO `t_region` VALUES (322, '忻府区', '140902', '0350', 320, 'Xinfu'); +INSERT INTO `t_region` VALUES (323, '定襄县', '140921', '0350', 320, 'Dingxiang'); +INSERT INTO `t_region` VALUES (324, '五台县', '140922', '0350', 320, 'Wutai'); +INSERT INTO `t_region` VALUES (325, '代县', '140923', '0350', 320, 'Daixian'); +INSERT INTO `t_region` VALUES (326, '繁峙县', '140924', '0350', 320, 'Fanshi'); +INSERT INTO `t_region` VALUES (327, '宁武县', '140925', '0350', 320, 'Ningwu'); +INSERT INTO `t_region` VALUES (328, '静乐县', '140926', '0350', 320, 'Jingle'); +INSERT INTO `t_region` VALUES (329, '神池县', '140927', '0350', 320, 'Shenchi'); +INSERT INTO `t_region` VALUES (330, '五寨县', '140928', '0350', 320, 'Wuzhai'); +INSERT INTO `t_region` VALUES (331, '岢岚县', '140929', '0350', 320, 'Kelan'); +INSERT INTO `t_region` VALUES (332, '河曲县', '140930', '0350', 320, 'Hequ'); +INSERT INTO `t_region` VALUES (333, '保德县', '140931', '0350', 320, 'Baode'); +INSERT INTO `t_region` VALUES (334, '偏关县', '140932', '0350', 320, 'Pianguan'); +INSERT INTO `t_region` VALUES (335, '原平市', '140981', '0350', 320, 'Yuanping'); +INSERT INTO `t_region` VALUES (336, '临汾市', '141000', '0357', 228, 'Linfen'); +INSERT INTO `t_region` VALUES (337, '临汾市市辖区', '141001', '0357', 336, 'Linfen municipal'); +INSERT INTO `t_region` VALUES (338, '尧都区', '141002', '0357', 336, 'Yaodu'); +INSERT INTO `t_region` VALUES (339, '曲沃县', '141021', '0357', 336, 'Quwo'); +INSERT INTO `t_region` VALUES (340, '翼城县', '141022', '0357', 336, 'Yicheng'); +INSERT INTO `t_region` VALUES (341, '襄汾县', '141023', '0357', 336, 'Xiangfen'); +INSERT INTO `t_region` VALUES (342, '洪洞县', '141024', '0357', 336, 'Hongdong'); +INSERT INTO `t_region` VALUES (343, '古县', '141025', '0357', 336, 'Guxian'); +INSERT INTO `t_region` VALUES (344, '安泽县', '141026', '0357', 336, 'Anze'); +INSERT INTO `t_region` VALUES (345, '浮山县', '141027', '0357', 336, 'Fushan'); +INSERT INTO `t_region` VALUES (346, '吉县', '141028', '0357', 336, 'Jixian'); +INSERT INTO `t_region` VALUES (347, '乡宁县', '141029', '0357', 336, 'Xiangning'); +INSERT INTO `t_region` VALUES (348, '大宁县', '141030', '0357', 336, 'Daning'); +INSERT INTO `t_region` VALUES (349, '隰县', '141031', '0357', 336, 'Xixian'); +INSERT INTO `t_region` VALUES (350, '永和县', '141032', '0357', 336, 'Yonghe'); +INSERT INTO `t_region` VALUES (351, '蒲县', '141033', '0357', 336, 'Puxian'); +INSERT INTO `t_region` VALUES (352, '汾西县', '141034', '0357', 336, 'Fenxi'); +INSERT INTO `t_region` VALUES (353, '侯马市', '141081', '0357', 336, 'Houma'); +INSERT INTO `t_region` VALUES (354, '霍州市', '141082', '0357', 336, 'Huozhou City'); +INSERT INTO `t_region` VALUES (355, '吕梁市', '141100', '0358', 228, 'Lüliang City'); +INSERT INTO `t_region` VALUES (356, '吕梁市市辖区', '141101', '0358', 355, 'Lvliang municipal'); +INSERT INTO `t_region` VALUES (357, '离石区', '141102', '0358', 355, 'Lishi'); +INSERT INTO `t_region` VALUES (358, '文水县', '141121', '0358', 355, 'Wenshui'); +INSERT INTO `t_region` VALUES (359, '交城县', '141122', '0358', 355, 'Jiaocheng'); +INSERT INTO `t_region` VALUES (360, '兴县', '141123', '0358', 355, 'Xingxian'); +INSERT INTO `t_region` VALUES (361, '临县', '141124', '0358', 355, 'Linxian'); +INSERT INTO `t_region` VALUES (362, '柳林县', '141125', '0358', 355, 'Liulin'); +INSERT INTO `t_region` VALUES (363, '石楼县', '141126', '0358', 355, 'Shilou'); +INSERT INTO `t_region` VALUES (364, '岚县', '141127', '0358', 355, 'Lanxian'); +INSERT INTO `t_region` VALUES (365, '方山县', '141128', '0358', 355, 'Fangshan'); +INSERT INTO `t_region` VALUES (366, '中阳县', '141129', '0358', 355, 'Zhongyang'); +INSERT INTO `t_region` VALUES (367, '交口县', '141130', '0358', 355, 'Jiaokou'); +INSERT INTO `t_region` VALUES (368, '孝义市', '141181', '0358', 355, 'Xiaoyi'); +INSERT INTO `t_region` VALUES (369, '汾阳市', '141182', '0358', 355, 'Fenyang'); +INSERT INTO `t_region` VALUES (370, '内蒙古自治区', '150000', '', 0, 'the Nei Monggol [Inner Mongolia] Autonomous Region '); +INSERT INTO `t_region` VALUES (371, '呼和浩特市', '150100', '0471', 370, 'Hohhot'); +INSERT INTO `t_region` VALUES (372, '呼和浩特市市辖区', '150101', '0471', 371, 'Hohhot municipal'); +INSERT INTO `t_region` VALUES (373, '新城区', '150102', '0471', 371, 'New urban area'); +INSERT INTO `t_region` VALUES (374, '回民区', '150103', '0471', 371, 'huimin'); +INSERT INTO `t_region` VALUES (375, '玉泉区', '150104', '0471', 371, 'Yuquan'); +INSERT INTO `t_region` VALUES (376, '赛罕区', '150105', '0471', 371, 'Saihan'); +INSERT INTO `t_region` VALUES (377, '土默特左旗', '150121', '0471', 371, 'Tumd Left Banner '); +INSERT INTO `t_region` VALUES (378, '托克托县', '150122', '0471', 371, 'Togtoh'); +INSERT INTO `t_region` VALUES (379, '和林格尔县', '150123', '0471', 371, 'Horinger'); +INSERT INTO `t_region` VALUES (380, '清水河县', '150124', '0471', 371, 'Qingshuihe'); +INSERT INTO `t_region` VALUES (381, '武川县', '150125', '0471', 371, 'Wuchuan'); +INSERT INTO `t_region` VALUES (382, '包头市', '150200', '0472', 370, 'Baotou'); +INSERT INTO `t_region` VALUES (383, '包头市市辖区', '150201', '0472', 382, 'Baotou municipal'); +INSERT INTO `t_region` VALUES (384, '东河区', '150202', '0472', 382, 'Donghe'); +INSERT INTO `t_region` VALUES (385, '昆都仑区', '150203', '0472', 382, 'Kun Du Lun'); +INSERT INTO `t_region` VALUES (386, '青山区', '150204', '0472', 382, 'Qingshan'); +INSERT INTO `t_region` VALUES (387, '石拐区', '150205', '0472', 382, 'shiguai'); +INSERT INTO `t_region` VALUES (388, '白云鄂博矿区', '150206', '0472', 382, 'Bayan Obo'); +INSERT INTO `t_region` VALUES (389, '九原区', '150207', '0472', 382, 'Jiuyuan'); +INSERT INTO `t_region` VALUES (390, '土默特右旗', '150221', '0472', 382, 'Tumd Right Banner '); +INSERT INTO `t_region` VALUES (391, '固阳县', '150222', '0472', 382, 'Guyang'); +INSERT INTO `t_region` VALUES (392, '达尔罕茂明安联合旗', '150223', '0472', 382, 'Darhan Muminggan Joint Banner '); +INSERT INTO `t_region` VALUES (393, '乌海市', '150300', '0473', 370, 'Wuhai'); +INSERT INTO `t_region` VALUES (394, '乌海市市辖区', '150301', '0473', 393, 'Wuhai municipal'); +INSERT INTO `t_region` VALUES (395, '海勃湾区', '150302', '0473', 393, 'Haibowan'); +INSERT INTO `t_region` VALUES (396, '海南区', '150303', '0473', 393, 'Hainan'); +INSERT INTO `t_region` VALUES (397, '乌达区', '150304', '0473', 393, 'Wuda'); +INSERT INTO `t_region` VALUES (398, '赤峰市', '150400', '0476', 370, 'Chifeng'); +INSERT INTO `t_region` VALUES (399, '赤峰市市辖区', '150401', '0476', 398, 'Chifeng municipal'); +INSERT INTO `t_region` VALUES (400, '红山区', '150402', '0476', 398, '[地名] [新加坡] Bukit Merah Estrate '); +INSERT INTO `t_region` VALUES (401, '元宝山区', '150403', '0476', 398, 'yuanbaoshan'); +INSERT INTO `t_region` VALUES (402, '松山区', '150404', '0476', 398, 'songshan'); +INSERT INTO `t_region` VALUES (403, '阿鲁科尔沁旗', '150421', '0476', 398, 'Ar Horqin Banner '); +INSERT INTO `t_region` VALUES (404, '巴林左旗', '150422', '0476', 398, 'Bairin Left Banner '); +INSERT INTO `t_region` VALUES (405, '巴林右旗', '150423', '0476', 398, 'Bairin Right Banner '); +INSERT INTO `t_region` VALUES (406, '林西县', '150424', '0476', 398, 'Linxi'); +INSERT INTO `t_region` VALUES (407, '克什克腾旗', '150425', '0476', 398, 'Hexigten Banner '); +INSERT INTO `t_region` VALUES (408, '翁牛特旗', '150426', '0476', 398, 'Ongniud Bannar '); +INSERT INTO `t_region` VALUES (409, '喀喇沁旗', '150428', '0476', 398, 'Harqin Banner '); +INSERT INTO `t_region` VALUES (410, '宁城县', '150429', '0476', 398, 'Ningcheng'); +INSERT INTO `t_region` VALUES (411, '敖汉旗', '150430', '0476', 398, 'Aohan Banner '); +INSERT INTO `t_region` VALUES (412, '通辽市', '150500', '0475', 370, 'Tongliao'); +INSERT INTO `t_region` VALUES (413, '通辽市市辖区', '150501', '0475', 412, 'Tongliao municipal'); +INSERT INTO `t_region` VALUES (414, '科尔沁区', '150502', '0475', 412, 'horqin'); +INSERT INTO `t_region` VALUES (415, '科尔沁左翼中旗', '150521', '0475', 412, 'Horqin Left Wing Middle Banner '); +INSERT INTO `t_region` VALUES (416, '科尔沁左翼后旗', '150522', '0475', 412, 'Horqin Left Wing Rear Banner '); +INSERT INTO `t_region` VALUES (417, '开鲁县', '150523', '0475', 412, 'Kailu'); +INSERT INTO `t_region` VALUES (418, '库伦旗', '150524', '0475', 412, 'Hure Banner '); +INSERT INTO `t_region` VALUES (419, '奈曼旗', '150525', '0475', 412, 'Naiman Banner '); +INSERT INTO `t_region` VALUES (420, '扎鲁特旗', '150526', '0475', 412, 'Jarud Banner '); +INSERT INTO `t_region` VALUES (421, '霍林郭勒市', '150581', '0475', 412, 'Huolingol Shi'); +INSERT INTO `t_region` VALUES (422, '鄂尔多斯市', '150600', '0477', 370, 'ordos city'); +INSERT INTO `t_region` VALUES (423, '鄂尔多斯市市辖区', '150601', '0477', 422, 'Ordos City'); +INSERT INTO `t_region` VALUES (424, '东胜区', '150602', '0477', 422, 'Dongsheng'); +INSERT INTO `t_region` VALUES (425, '康巴什区', '150603', '0477', 422, 'Kangbashi'); +INSERT INTO `t_region` VALUES (426, '达拉特旗', '150621', '0477', 422, 'Dalad Banner '); +INSERT INTO `t_region` VALUES (427, '准格尔旗', '150622', '0477', 422, 'Jungar Banner '); +INSERT INTO `t_region` VALUES (428, '鄂托克前旗', '150623', '0477', 422, 'Etuokeqianqi'); +INSERT INTO `t_region` VALUES (429, '鄂托克旗', '150624', '0477', 422, 'Otog Banner '); +INSERT INTO `t_region` VALUES (430, '杭锦旗', '150625', '0477', 422, 'Hanggin Banner '); +INSERT INTO `t_region` VALUES (431, '乌审旗', '150626', '0477', 422, 'Uxin Banner '); +INSERT INTO `t_region` VALUES (432, '伊金霍洛旗', '150627', '0477', 422, 'Ejin Horo Banner '); +INSERT INTO `t_region` VALUES (433, '呼伦贝尔市', '150700', '0470', 370, 'Hulun Buir City'); +INSERT INTO `t_region` VALUES (434, '呼伦贝尔市市辖区', '150701', '0470', 433, 'Hulun Buir municipal'); +INSERT INTO `t_region` VALUES (435, '海拉尔区', '150702', '0470', 433, 'hailar'); +INSERT INTO `t_region` VALUES (436, '扎赉诺尔区', '150703', '0470', 433, 'The Al al area'); +INSERT INTO `t_region` VALUES (437, '阿荣旗', '150721', '0470', 433, 'Arun Banner '); +INSERT INTO `t_region` VALUES (438, '莫力达瓦达斡尔族自治旗', '150722', '0470', 433, 'Daur Autonomous Banner of Morin Dawa '); +INSERT INTO `t_region` VALUES (439, '鄂伦春自治旗', '150723', '0470', 433, 'Oroqen Autonomous Banner '); +INSERT INTO `t_region` VALUES (440, '鄂温克族自治旗', '150724', '0470', 433, 'Evenki Autonomous Banner'); +INSERT INTO `t_region` VALUES (441, '陈巴尔虎旗', '150725', '0470', 433, 'Chen Barag Banner '); +INSERT INTO `t_region` VALUES (442, '新巴尔虎左旗', '150726', '0470', 433, 'Xin Barag Left Banner '); +INSERT INTO `t_region` VALUES (443, '新巴尔虎右旗', '150727', '0470', 433, 'Xin Barag Right Banner '); +INSERT INTO `t_region` VALUES (444, '满洲里市', '150781', '0470', 433, 'Manchuria City'); +INSERT INTO `t_region` VALUES (445, '牙克石市', '150782', '0470', 433, 'yakeshi'); +INSERT INTO `t_region` VALUES (446, '扎兰屯市', '150783', '0470', 433, 'Zhalantun'); +INSERT INTO `t_region` VALUES (447, '额尔古纳市', '150784', '0470', 433, 'Ergun City'); +INSERT INTO `t_region` VALUES (448, '根河市', '150785', '0470', 433, 'Genhe'); +INSERT INTO `t_region` VALUES (449, '巴彦淖尔市', '150800', '0478', 370, 'Bayannaoer City'); +INSERT INTO `t_region` VALUES (450, '巴彦淖尔市市辖区', '150801', '0478', 449, 'Bayannaoer municipal'); +INSERT INTO `t_region` VALUES (451, '临河区', '150802', '0478', 449, 'linhe'); +INSERT INTO `t_region` VALUES (452, '五原县', '150821', '0478', 449, 'Wuyuan'); +INSERT INTO `t_region` VALUES (453, '磴口县', '150822', '0478', 449, 'Dengkou'); +INSERT INTO `t_region` VALUES (454, '乌拉特前旗', '150823', '0478', 449, 'Urad Front Banner '); +INSERT INTO `t_region` VALUES (455, '乌拉特中旗', '150824', '0478', 449, 'Urat Zhongqi'); +INSERT INTO `t_region` VALUES (456, '乌拉特后旗', '150825', '0478', 449, 'The rear flag of the US'); +INSERT INTO `t_region` VALUES (457, '杭锦后旗', '150826', '0478', 449, 'Hanggin Rear Banner '); +INSERT INTO `t_region` VALUES (458, '乌兰察布市', '150900', '0474', 370, 'Wulanchabu City'); +INSERT INTO `t_region` VALUES (459, '乌兰察布市市辖区', '150901', '0474', 458, 'Wulanchabu municipal'); +INSERT INTO `t_region` VALUES (460, '集宁区', '150902', '0474', 458, 'Jining'); +INSERT INTO `t_region` VALUES (461, '卓资县', '150921', '0474', 458, 'Zhuozi'); +INSERT INTO `t_region` VALUES (462, '化德县', '150922', '0474', 458, 'Huade'); +INSERT INTO `t_region` VALUES (463, '商都县', '150923', '0474', 458, 'Shangdu'); +INSERT INTO `t_region` VALUES (464, '兴和县', '150924', '0474', 458, 'Xinghe'); +INSERT INTO `t_region` VALUES (465, '凉城县', '150925', '0474', 458, 'Liangcheng'); +INSERT INTO `t_region` VALUES (466, '察哈尔右翼前旗', '150926', '0474', 458, 'Qahar Right Wing Front Banner '); +INSERT INTO `t_region` VALUES (467, '察哈尔右翼中旗', '150927', '0474', 458, 'Qahar Right Wing Middle Banner '); +INSERT INTO `t_region` VALUES (468, '察哈尔右翼后旗', '150928', '0474', 458, 'Qahar Right Wing Rear Banner '); +INSERT INTO `t_region` VALUES (469, '四子王旗', '150929', '0474', 458, 'Siziwangqi'); +INSERT INTO `t_region` VALUES (470, '丰镇市', '150981', '0474', 458, 'Fengzhen'); +INSERT INTO `t_region` VALUES (471, '兴安盟', '152200', '0482', 370, 'hinggan league'); +INSERT INTO `t_region` VALUES (472, '乌兰浩特市', '152201', '0482', 471, 'Ulanhot City'); +INSERT INTO `t_region` VALUES (473, '阿尔山市', '152202', '0482', 471, 'Arxan'); +INSERT INTO `t_region` VALUES (474, '科尔沁右翼前旗', '152221', '0482', 471, 'Horqin Right Wing Front Banner '); +INSERT INTO `t_region` VALUES (475, '科尔沁右翼中旗', '152222', '0482', 471, 'Horqin Right Wing Middle Banner '); +INSERT INTO `t_region` VALUES (476, '扎赉特旗', '152223', '0482', 471, 'Jalaid Banner '); +INSERT INTO `t_region` VALUES (477, '突泉县', '152224', '0482', 471, 'Tuquan'); +INSERT INTO `t_region` VALUES (478, '锡林郭勒盟', '152500', '0479', 370, 'Xilin Gol League '); +INSERT INTO `t_region` VALUES (479, '二连浩特市', '152501', '0479', 478, 'Erenhot'); +INSERT INTO `t_region` VALUES (480, '锡林浩特市', '152502', '0479', 478, 'xilinhot'); +INSERT INTO `t_region` VALUES (481, '阿巴嘎旗', '152522', '0479', 478, 'Abag Banner '); +INSERT INTO `t_region` VALUES (482, '苏尼特左旗', '152523', '0479', 478, 'Sonid Left Banner '); +INSERT INTO `t_region` VALUES (483, '苏尼特右旗', '152524', '0479', 478, 'Sonid Right Banner '); +INSERT INTO `t_region` VALUES (484, '东乌珠穆沁旗', '152525', '0479', 478, 'Dong Ujimqin Banner '); +INSERT INTO `t_region` VALUES (485, '西乌珠穆沁旗', '152526', '0479', 478, 'Xi Ujimqin Banner '); +INSERT INTO `t_region` VALUES (486, '太仆寺旗', '152527', '0479', 478, 'Taibus Banner '); +INSERT INTO `t_region` VALUES (487, '镶黄旗', '152528', '0479', 478, 'Xianghuang Banner '); +INSERT INTO `t_region` VALUES (488, '正镶白旗', '152529', '0479', 478, 'Zhengxiangbai Banner '); +INSERT INTO `t_region` VALUES (489, '正蓝旗', '152530', '0479', 478, 'The blue flag'); +INSERT INTO `t_region` VALUES (490, '多伦县', '152531', '0479', 478, 'Duolun'); +INSERT INTO `t_region` VALUES (491, '阿拉善盟', '152900', '0483', 370, 'alxa league'); +INSERT INTO `t_region` VALUES (492, '阿拉善左旗', '152921', '0483', 491, 'Alxa Left Banner '); +INSERT INTO `t_region` VALUES (493, '阿拉善右旗', '152922', '0483', 491, 'Alxa Right Banner '); +INSERT INTO `t_region` VALUES (494, '额济纳旗', '152923', '0483', 491, 'Ejin Banner '); +INSERT INTO `t_region` VALUES (495, '辽宁省', '210000', '', 0, 'Liaoning Province'); +INSERT INTO `t_region` VALUES (496, '沈阳市', '210100', '024', 495, 'Shenyang '); +INSERT INTO `t_region` VALUES (497, '沈阳市市辖区', '210101', '024', 496, 'Shenyang municipal'); +INSERT INTO `t_region` VALUES (498, '和平区', '210102', '024', 496, '[法] peace zone '); +INSERT INTO `t_region` VALUES (499, '沈河区', '210103', '024', 496, 'Shenhe'); +INSERT INTO `t_region` VALUES (500, '大东区', '210104', '024', 496, 'Big East'); +INSERT INTO `t_region` VALUES (501, '皇姑区', '210105', '024', 496, 'Huanggu'); +INSERT INTO `t_region` VALUES (502, '铁西区', '210106', '024', 496, 'Tiexi'); +INSERT INTO `t_region` VALUES (503, '苏家屯区', '210111', '024', 496, 'sujiatun'); +INSERT INTO `t_region` VALUES (504, '浑南区', '210112', '024', 496, 'Hunnan'); +INSERT INTO `t_region` VALUES (505, '沈北新区', '210113', '024', 496, 'Shenbei New Area'); +INSERT INTO `t_region` VALUES (506, '于洪区', '210114', '024', 496, 'Yuhong'); +INSERT INTO `t_region` VALUES (507, '辽中区', '210115', '024', 496, 'Liaozhong'); +INSERT INTO `t_region` VALUES (508, '康平县', '210123', '024', 496, 'Kangping'); +INSERT INTO `t_region` VALUES (509, '法库县', '210124', '024', 496, 'Faku'); +INSERT INTO `t_region` VALUES (510, '新民市', '210181', '024', 496, 'Xinmin City'); +INSERT INTO `t_region` VALUES (511, '大连市', '210200', '0411', 495, 'Dalian'); +INSERT INTO `t_region` VALUES (512, '大连市市辖区', '210201', '0411', 511, 'Dalian municipal'); +INSERT INTO `t_region` VALUES (513, '中山区', '210202', '0411', 511, 'Zhongshan'); +INSERT INTO `t_region` VALUES (514, '西岗区', '210203', '0411', 511, 'xigang'); +INSERT INTO `t_region` VALUES (515, '沙河口区', '210204', '0411', 511, 'shahekou'); +INSERT INTO `t_region` VALUES (516, '甘井子区', '210211', '0411', 511, 'ganjingzi'); +INSERT INTO `t_region` VALUES (517, '旅顺口区', '210212', '0411', 511, 'Lushun mouth area'); +INSERT INTO `t_region` VALUES (518, '金州区', '210213', '0411', 511, 'Jinzhou'); +INSERT INTO `t_region` VALUES (519, '长海县', '210224', '0411', 511, 'Changhai'); +INSERT INTO `t_region` VALUES (520, '瓦房店市', '210281', '0411', 511, 'WafangdianCity'); +INSERT INTO `t_region` VALUES (521, '普兰店区', '210214', '0411', 511, 'Pulandian'); +INSERT INTO `t_region` VALUES (522, '庄河市', '210283', '0411', 511, 'Zhuanghe City'); +INSERT INTO `t_region` VALUES (523, '鞍山市', '210300', '0412', 495, 'Anshan'); +INSERT INTO `t_region` VALUES (524, '鞍山市市辖区', '210301', '0412', 523, 'Anshan municipal'); +INSERT INTO `t_region` VALUES (525, '铁东区', '210302', '0412', 523, 'Tiedong'); +INSERT INTO `t_region` VALUES (526, '铁西区', '210303', '0412', 523, 'Tiexi'); +INSERT INTO `t_region` VALUES (527, '立山区', '210304', '0412', 523, 'Lishan'); +INSERT INTO `t_region` VALUES (528, '千山区', '210311', '0412', 523, 'Qianshan'); +INSERT INTO `t_region` VALUES (529, '台安县', '210321', '0412', 523, 'Taan'); +INSERT INTO `t_region` VALUES (530, '岫岩满族自治县', '210323', '0412', 523, 'Xiuyan'); +INSERT INTO `t_region` VALUES (531, '海城市', '210381', '0412', 523, 'haicheng'); +INSERT INTO `t_region` VALUES (532, '抚顺市', '210400', '0413', 495, 'Fushun'); +INSERT INTO `t_region` VALUES (533, '抚顺市市辖区', '210401', '0413', 532, 'Fushun municipal'); +INSERT INTO `t_region` VALUES (534, '新抚区', '210402', '0413', 532, 'Xinfu'); +INSERT INTO `t_region` VALUES (535, '东洲区', '210403', '0413', 532, 'dongzhou'); +INSERT INTO `t_region` VALUES (536, '望花区', '210404', '0413', 532, 'Wanghua'); +INSERT INTO `t_region` VALUES (537, '顺城区', '210411', '0413', 532, 'Shun City'); +INSERT INTO `t_region` VALUES (538, '抚顺县', '210421', '0413', 532, 'Fushun'); +INSERT INTO `t_region` VALUES (539, '新宾满族自治县', '210422', '0413', 532, 'Xinbin Manchu Autonomous'); +INSERT INTO `t_region` VALUES (540, '清原满族自治县', '210423', '0413', 532, 'Qingyuan Manchu Autonomous'); +INSERT INTO `t_region` VALUES (541, '本溪市', '210500', '0414', 495, 'Benxi'); +INSERT INTO `t_region` VALUES (542, '本溪市市辖区', '210501', '0414', 541, 'Benxi municipal'); +INSERT INTO `t_region` VALUES (543, '平山区', '210502', '0414', 541, 'Pingshan'); +INSERT INTO `t_region` VALUES (544, '溪湖区', '210503', '0414', 541, 'xihu'); +INSERT INTO `t_region` VALUES (545, '明山区', '210504', '0414', 541, 'Mingshan'); +INSERT INTO `t_region` VALUES (546, '南芬区', '210505', '0414', 541, 'Nanfen'); +INSERT INTO `t_region` VALUES (547, '本溪满族自治县', '210521', '0414', 541, 'Benxi Manchu Autonomous'); +INSERT INTO `t_region` VALUES (548, '桓仁满族自治县', '210522', '0414', 541, 'Huanren Manchu Autonomous'); +INSERT INTO `t_region` VALUES (549, '丹东市', '210600', '0415', 495, 'Dandong'); +INSERT INTO `t_region` VALUES (550, '丹东市市辖区', '210601', '0415', 549, 'Dandong municipal'); +INSERT INTO `t_region` VALUES (551, '元宝区', '210602', '0415', 549, 'Yuanbao'); +INSERT INTO `t_region` VALUES (552, '振兴区', '210603', '0415', 549, 'Zhenxing'); +INSERT INTO `t_region` VALUES (553, '振安区', '210604', '0415', 549, 'Zhen an area'); +INSERT INTO `t_region` VALUES (554, '宽甸满族自治县', '210624', '0415', 549, 'Kuandian Manchu Autonomous'); +INSERT INTO `t_region` VALUES (555, '东港市', '210681', '0415', 549, 'donggang'); +INSERT INTO `t_region` VALUES (556, '凤城市', '210682', '0415', 549, 'Fengcheng City'); +INSERT INTO `t_region` VALUES (557, '锦州市', '210700', '0416', 495, 'Jinzhou'); +INSERT INTO `t_region` VALUES (558, '锦州市市辖区', '210701', '0416', 557, 'Jinzhou municipal'); +INSERT INTO `t_region` VALUES (559, '古塔区', '210702', '0416', 557, 'Guta'); +INSERT INTO `t_region` VALUES (560, '凌河区', '210703', '0416', 557, 'Linghe'); +INSERT INTO `t_region` VALUES (561, '太和区', '210711', '0416', 557, 'Taihe'); +INSERT INTO `t_region` VALUES (562, '黑山县', '210726', '0416', 557, 'Heishan'); +INSERT INTO `t_region` VALUES (563, '义县', '210727', '0416', 557, 'Yixian'); +INSERT INTO `t_region` VALUES (564, '凌海市', '210781', '0416', 557, 'Linghai City'); +INSERT INTO `t_region` VALUES (565, '北镇市', '210782', '0416', 557, 'Beizhen'); +INSERT INTO `t_region` VALUES (566, '营口市', '210800', '0417', 495, 'Yingkou'); +INSERT INTO `t_region` VALUES (567, '营口市市辖区', '210801', '0417', 566, 'Yingkou municipal'); +INSERT INTO `t_region` VALUES (568, '站前区', '210802', '0417', 566, 'Zhanqian'); +INSERT INTO `t_region` VALUES (569, '西市区', '210803', '0417', 566, 'West City'); +INSERT INTO `t_region` VALUES (570, '鲅鱼圈区', '210804', '0417', 566, 'Bayuquan'); +INSERT INTO `t_region` VALUES (571, '老边区', '210811', '0417', 566, 'Laobian'); +INSERT INTO `t_region` VALUES (572, '盖州市', '210881', '0417', 566, 'Gaizhou City'); +INSERT INTO `t_region` VALUES (573, '大石桥市', '210882', '0417', 566, 'dashiqiao'); +INSERT INTO `t_region` VALUES (574, '阜新市', '210900', '0418', 495, 'Fuxin'); +INSERT INTO `t_region` VALUES (575, '阜新市市辖区', '210901', '0418', 574, 'Fuxin municipal'); +INSERT INTO `t_region` VALUES (576, '海州区', '210902', '0418', 574, 'haizhou'); +INSERT INTO `t_region` VALUES (577, '新邱区', '210903', '0418', 574, 'Xinqiu'); +INSERT INTO `t_region` VALUES (578, '太平区', '210904', '0418', 574, 'Taiping'); +INSERT INTO `t_region` VALUES (579, '清河门区', '210905', '0418', 574, 'Qinghemen'); +INSERT INTO `t_region` VALUES (580, '细河区', '210911', '0418', 574, 'Xihe'); +INSERT INTO `t_region` VALUES (581, '阜新蒙古族自治县', '210921', '0418', 574, 'Mongolian Autonomousof Fuxin '); +INSERT INTO `t_region` VALUES (582, '彰武县', '210922', '0418', 574, 'Zhangwu'); +INSERT INTO `t_region` VALUES (583, '辽阳市', '211000', '0419', 495, 'Liaoyang'); +INSERT INTO `t_region` VALUES (584, '辽阳市市辖区', '211001', '0419', 583, 'Liaoyang municipal'); +INSERT INTO `t_region` VALUES (585, '白塔区', '211002', '0419', 583, 'Baita'); +INSERT INTO `t_region` VALUES (586, '文圣区', '211003', '0419', 583, 'Wensheng'); +INSERT INTO `t_region` VALUES (587, '宏伟区', '211004', '0419', 583, 'Hongwei'); +INSERT INTO `t_region` VALUES (588, '弓长岭区', '211005', '0419', 583, 'Gongchangling'); +INSERT INTO `t_region` VALUES (589, '太子河区', '211011', '0419', 583, 'Taizihe'); +INSERT INTO `t_region` VALUES (590, '辽阳县', '211021', '0419', 583, 'Liaoyang'); +INSERT INTO `t_region` VALUES (591, '灯塔市', '211081', '0419', 583, 'Dengta'); +INSERT INTO `t_region` VALUES (592, '盘锦市', '211100', '0427', 495, 'Panjin City'); +INSERT INTO `t_region` VALUES (593, '盘锦市市辖区', '211101', '0427', 592, 'Panjin municipal'); +INSERT INTO `t_region` VALUES (594, '双台子区', '211102', '0427', 592, 'Shuangtaizi'); +INSERT INTO `t_region` VALUES (595, '兴隆台区', '211103', '0427', 592, 'Xinglongtai'); +INSERT INTO `t_region` VALUES (596, '大洼区', '211104', '0427', 592, 'Dawa'); +INSERT INTO `t_region` VALUES (597, '盘山县', '211122', '0427', 592, 'Panshan'); +INSERT INTO `t_region` VALUES (598, '铁岭市', '211200', '0410', 495, 'tieling city'); +INSERT INTO `t_region` VALUES (599, '铁岭市市辖区', '211201', '0410', 598, 'Tieling municipal'); +INSERT INTO `t_region` VALUES (600, '银州区', '211202', '0410', 598, 'Yinzhou'); +INSERT INTO `t_region` VALUES (601, '清河区', '211204', '0410', 598, 'Qinghe'); +INSERT INTO `t_region` VALUES (602, '铁岭县', '211221', '0410', 598, 'Tieling'); +INSERT INTO `t_region` VALUES (603, '西丰县', '211223', '0410', 598, 'Xifeng'); +INSERT INTO `t_region` VALUES (604, '昌图县', '211224', '0410', 598, 'Changtu'); +INSERT INTO `t_region` VALUES (605, '调兵山市', '211281', '0410', 598, 'Diaobingshan'); +INSERT INTO `t_region` VALUES (606, '开原市', '211282', '0410', 598, 'Kaiyuan'); +INSERT INTO `t_region` VALUES (607, '朝阳市', '211300', '0421', 495, 'Chaoyang City'); +INSERT INTO `t_region` VALUES (608, '朝阳市市辖区', '211301', '0421', 607, 'Chaoyang City'); +INSERT INTO `t_region` VALUES (609, '双塔区', '211302', '0421', 607, 'Shuangta'); +INSERT INTO `t_region` VALUES (610, '龙城区', '211303', '0421', 607, 'Longcheng'); +INSERT INTO `t_region` VALUES (611, '朝阳县', '211321', '0421', 607, 'Chaoyang'); +INSERT INTO `t_region` VALUES (612, '建平县', '211322', '0421', 607, 'Jianping'); +INSERT INTO `t_region` VALUES (613, '喀喇沁左翼蒙古族自治县', '211324', '0421', 607, 'Harqin Left Wing Mongolian Autonomous'); +INSERT INTO `t_region` VALUES (614, '北票市', '211381', '0421', 607, 'Beipiao City'); +INSERT INTO `t_region` VALUES (615, '凌源市', '211382', '0421', 607, 'Lingyuan'); +INSERT INTO `t_region` VALUES (616, '葫芦岛市', '211400', '0429', 495, 'Huludao City'); +INSERT INTO `t_region` VALUES (617, '葫芦岛市市辖区', '211401', '0429', 616, 'Huludao municipal'); +INSERT INTO `t_region` VALUES (618, '连山区', '211402', '0429', 616, 'Lianshan mountains'); +INSERT INTO `t_region` VALUES (619, '龙港区', '211403', '0429', 616, 'Longgang'); +INSERT INTO `t_region` VALUES (620, '南票区', '211404', '0429', 616, 'Nanpiao'); +INSERT INTO `t_region` VALUES (621, '绥中县', '211421', '0429', 616, 'Suizhong'); +INSERT INTO `t_region` VALUES (622, '建昌县', '211422', '0429', 616, 'Jianchang'); +INSERT INTO `t_region` VALUES (623, '兴城市', '211481', '0429', 616, 'Xingcheng City'); +INSERT INTO `t_region` VALUES (624, '吉林省', '220000', '', 0, 'Jilin Province '); +INSERT INTO `t_region` VALUES (625, '长春市', '220100', '0431', 624, 'Changchun'); +INSERT INTO `t_region` VALUES (626, '长春市市辖区', '220101', '0431', 625, 'Changchun municipal'); +INSERT INTO `t_region` VALUES (627, '南关区', '220102', '0431', 625, 'Nanguan'); +INSERT INTO `t_region` VALUES (628, '宽城区', '220103', '0431', 625, 'Wide urban area'); +INSERT INTO `t_region` VALUES (629, '朝阳区', '220104', '0431', 625, 'Chaoyang'); +INSERT INTO `t_region` VALUES (630, '二道区', '220105', '0431', 625, 'Two'); +INSERT INTO `t_region` VALUES (631, '绿园区', '220106', '0431', 625, 'Luyuan'); +INSERT INTO `t_region` VALUES (632, '双阳区', '220112', '0431', 625, 'Shuangyang'); +INSERT INTO `t_region` VALUES (633, '九台区', '220113', '0431', 625, 'Nines'); +INSERT INTO `t_region` VALUES (634, '农安县', '220122', '0431', 625, 'Nong’an'); +INSERT INTO `t_region` VALUES (635, '榆树市', '220182', '0431', 625, 'Yushu'); +INSERT INTO `t_region` VALUES (636, '德惠市', '220183', '0431', 625, 'Dehui'); +INSERT INTO `t_region` VALUES (637, '吉林市', '220200', '0432', 624, 'Jilin'); +INSERT INTO `t_region` VALUES (638, '吉林市市辖区', '220201', '0432', 637, 'Jilin municipal'); +INSERT INTO `t_region` VALUES (639, '昌邑区', '220202', '0432', 637, 'Changyi'); +INSERT INTO `t_region` VALUES (640, '龙潭区', '220203', '0432', 637, 'Longtan'); +INSERT INTO `t_region` VALUES (641, '船营区', '220204', '0432', 637, 'Chuanying'); +INSERT INTO `t_region` VALUES (642, '丰满区', '220211', '0432', 637, 'Fengman'); +INSERT INTO `t_region` VALUES (643, '永吉县', '220221', '0432', 637, 'Yongji'); +INSERT INTO `t_region` VALUES (644, '蛟河市', '220281', '0432', 637, 'Jiaohe City'); +INSERT INTO `t_region` VALUES (645, '桦甸市', '220282', '0432', 637, 'huadian city'); +INSERT INTO `t_region` VALUES (646, '舒兰市', '220283', '0432', 637, 'shulan city'); +INSERT INTO `t_region` VALUES (647, '磐石市', '220284', '0432', 637, 'Panshi'); +INSERT INTO `t_region` VALUES (648, '四平市', '220300', '0434', 624, 'Siping'); +INSERT INTO `t_region` VALUES (649, '四平市市辖区', '220301', '0434', 648, 'Siping City'); +INSERT INTO `t_region` VALUES (650, '铁西区', '220302', '0434', 648, 'Tiexi'); +INSERT INTO `t_region` VALUES (651, '铁东区', '220303', '0434', 648, 'Tiedong'); +INSERT INTO `t_region` VALUES (652, '梨树县', '220322', '0434', 648, 'lishu'); +INSERT INTO `t_region` VALUES (653, '伊通满族自治县', '220323', '0434', 648, 'Yitong Manchu Autonomous'); +INSERT INTO `t_region` VALUES (654, '公主岭市', '220381', '0434', 648, 'Gongzhuling City'); +INSERT INTO `t_region` VALUES (655, '双辽市', '220382', '0434', 648, 'Shuangliao City'); +INSERT INTO `t_region` VALUES (656, '辽源市', '220400', '0437', 624, 'Liaoyuan'); +INSERT INTO `t_region` VALUES (657, '辽源市市辖区', '220401', '0437', 656, 'Liaoyuan municipal'); +INSERT INTO `t_region` VALUES (658, '龙山区', '220402', '0437', 656, 'Yongsan-gu'); +INSERT INTO `t_region` VALUES (659, '西安区', '220403', '0437', 656, 'Xi\'an'); +INSERT INTO `t_region` VALUES (660, '东丰县', '220421', '0437', 656, 'Dongfeng'); +INSERT INTO `t_region` VALUES (661, '东辽县', '220422', '0437', 656, 'Dongliao'); +INSERT INTO `t_region` VALUES (662, '通化市', '220500', '0435', 624, 'Tonghua'); +INSERT INTO `t_region` VALUES (663, '通化市市辖区', '220501', '0435', 662, 'Tonghua municipal'); +INSERT INTO `t_region` VALUES (664, '东昌区', '220502', '0435', 662, 'Dongchang'); +INSERT INTO `t_region` VALUES (665, '二道江区', '220503', '0435', 662, 'The second Dao Jiang'); +INSERT INTO `t_region` VALUES (666, '通化县', '220521', '0435', 662, 'Tonghua'); +INSERT INTO `t_region` VALUES (667, '辉南县', '220523', '0435', 662, 'Huinan'); +INSERT INTO `t_region` VALUES (668, '柳河县', '220524', '0435', 662, 'Liuhe'); +INSERT INTO `t_region` VALUES (669, '梅河口市', '220581', '0435', 662, 'Meihekou'); +INSERT INTO `t_region` VALUES (670, '集安市', '220582', '0435', 662, 'Ji\'an City'); +INSERT INTO `t_region` VALUES (671, '白山市', '220600', '0439', 624, 'Baishan City'); +INSERT INTO `t_region` VALUES (672, '白山市市辖区', '220601', '0439', 671, 'Baishan City'); +INSERT INTO `t_region` VALUES (673, '浑江区', '220602', '0439', 671, 'Hun River area'); +INSERT INTO `t_region` VALUES (674, '江源区', '220605', '0439', 671, 'Jiangyuan'); +INSERT INTO `t_region` VALUES (675, '抚松县', '220621', '0439', 671, 'Fusong'); +INSERT INTO `t_region` VALUES (676, '靖宇县', '220622', '0439', 671, 'Jingyu'); +INSERT INTO `t_region` VALUES (677, '长白朝鲜族自治县', '220623', '0439', 671, 'Korean Autonomousof Changbai '); +INSERT INTO `t_region` VALUES (678, '临江市', '220681', '0439', 671, 'Linjiang'); +INSERT INTO `t_region` VALUES (679, '松原市', '220700', '0438', 624, 'Songyuan City'); +INSERT INTO `t_region` VALUES (680, '松原市市辖区', '220701', '0438', 679, 'Songyuan municipal'); +INSERT INTO `t_region` VALUES (681, '宁江区', '220702', '0438', 679, 'Ning Jiang'); +INSERT INTO `t_region` VALUES (682, '前郭尔罗斯蒙古族自治县', '220721', '0438', 679, 'Mongolian Autonomousof Qian Gorlos '); +INSERT INTO `t_region` VALUES (683, '长岭县', '220722', '0438', 679, 'Changling'); +INSERT INTO `t_region` VALUES (684, '乾安县', '220723', '0438', 679, 'Qian’an'); +INSERT INTO `t_region` VALUES (685, '扶余市', '220781', '0438', 679, 'Fuyu City'); +INSERT INTO `t_region` VALUES (686, '白城市', '220800', '0436', 624, 'Baicheng'); +INSERT INTO `t_region` VALUES (687, '白城市市辖区', '220801', '0436', 686, 'Baicheng municipal'); +INSERT INTO `t_region` VALUES (688, '洮北区', '220802', '0436', 686, 'Taobei'); +INSERT INTO `t_region` VALUES (689, '镇赉县', '220821', '0436', 686, 'Zhenlai'); +INSERT INTO `t_region` VALUES (690, '通榆县', '220822', '0436', 686, 'Tongyu'); +INSERT INTO `t_region` VALUES (691, '洮南市', '220881', '0436', 686, 'Taonan'); +INSERT INTO `t_region` VALUES (692, '大安市', '220882', '0436', 686, 'Daan City'); +INSERT INTO `t_region` VALUES (693, '延边朝鲜族自治州', '222400', '1433', 624, 'Korean Autonomous Prefecture of Yanbian '); +INSERT INTO `t_region` VALUES (694, '延吉市', '222401', '1433', 693, 'Yanji'); +INSERT INTO `t_region` VALUES (695, '图们市', '222402', '1433', 693, 'Tumen'); +INSERT INTO `t_region` VALUES (696, '敦化市', '222403', '1433', 693, 'dunhua'); +INSERT INTO `t_region` VALUES (697, '珲春市', '222404', '1433', 693, 'HunChun'); +INSERT INTO `t_region` VALUES (698, '龙井市', '222405', '1433', 693, 'Longjing'); +INSERT INTO `t_region` VALUES (699, '和龙市', '222406', '1433', 693, 'Helong'); +INSERT INTO `t_region` VALUES (700, '汪清县', '222424', '1433', 693, 'Wangqing'); +INSERT INTO `t_region` VALUES (701, '安图县', '222426', '1433', 693, 'Antu'); +INSERT INTO `t_region` VALUES (702, '黑龙江省', '230000', '', 0, 'Heilongjiang Province '); +INSERT INTO `t_region` VALUES (703, '哈尔滨市', '230100', '0451', 702, 'Harbin'); +INSERT INTO `t_region` VALUES (704, '哈尔滨市市辖区', '230101', '0451', 703, 'Harbin municipal'); +INSERT INTO `t_region` VALUES (705, '道里区', '230102', '0451', 703, 'Dai Li'); +INSERT INTO `t_region` VALUES (706, '南岗区', '230103', '0451', 703, 'Nangang'); +INSERT INTO `t_region` VALUES (707, '道外区', '230104', '0451', 703, 'daowai'); +INSERT INTO `t_region` VALUES (708, '平房区', '230108', '0451', 703, '[法]cottage area '); +INSERT INTO `t_region` VALUES (709, '松北区', '230109', '0451', 703, 'Songbei'); +INSERT INTO `t_region` VALUES (710, '香坊区', '230110', '0451', 703, 'xiangfang'); +INSERT INTO `t_region` VALUES (711, '呼兰区', '230111', '0451', 703, 'Hulan'); +INSERT INTO `t_region` VALUES (712, '阿城区', '230112', '0451', 703, 'Acheng'); +INSERT INTO `t_region` VALUES (713, '双城区', '230113', '0451', 703, 'Shuangcheng'); +INSERT INTO `t_region` VALUES (714, '依兰县', '230123', '0451', 703, 'Yilan'); +INSERT INTO `t_region` VALUES (715, '方正县', '230124', '0451', 703, 'Fangzheng'); +INSERT INTO `t_region` VALUES (716, '宾县', '230125', '0451', 703, 'Binxian'); +INSERT INTO `t_region` VALUES (717, '巴彦县', '230126', '0451', 703, 'Bayan'); +INSERT INTO `t_region` VALUES (718, '木兰县', '230127', '0451', 703, 'Mulan'); +INSERT INTO `t_region` VALUES (719, '通河县', '230128', '0451', 703, 'Tonghe'); +INSERT INTO `t_region` VALUES (720, '延寿县', '230129', '0451', 703, 'Yanshou'); +INSERT INTO `t_region` VALUES (721, '尚志市', '230183', '0451', 703, 'Shangzhi'); +INSERT INTO `t_region` VALUES (722, '五常市', '230184', '0451', 703, 'Wuchang City'); +INSERT INTO `t_region` VALUES (723, '齐齐哈尔市', '230200', '0452', 702, 'Qiqihar'); +INSERT INTO `t_region` VALUES (724, '齐齐哈尔市市辖区', '230201', '0452', 723, 'Qigihar municipal'); +INSERT INTO `t_region` VALUES (725, '龙沙区', '230202', '0452', 723, 'Longsha'); +INSERT INTO `t_region` VALUES (726, '建华区', '230203', '0452', 723, 'Jianhua'); +INSERT INTO `t_region` VALUES (727, '铁锋区', '230204', '0452', 723, 'Tiefeng'); +INSERT INTO `t_region` VALUES (728, '昂昂溪区', '230205', '0452', 723, 'Ang\'angxi'); +INSERT INTO `t_region` VALUES (729, '富拉尔基区', '230206', '0452', 723, 'Fularji'); +INSERT INTO `t_region` VALUES (730, '碾子山区', '230207', '0452', 723, 'Nianzishan'); +INSERT INTO `t_region` VALUES (731, '梅里斯达斡尔族区', '230208', '0452', 723, 'Meilisi Daur'); +INSERT INTO `t_region` VALUES (732, '龙江县', '230221', '0452', 723, 'Longjiang'); +INSERT INTO `t_region` VALUES (733, '依安县', '230223', '0452', 723, 'Yi’an'); +INSERT INTO `t_region` VALUES (734, '泰来县', '230224', '0452', 723, 'Tailai'); +INSERT INTO `t_region` VALUES (735, '甘南县', '230225', '0452', 723, 'Gannan'); +INSERT INTO `t_region` VALUES (736, '富裕县', '230227', '0452', 723, 'Fuyu'); +INSERT INTO `t_region` VALUES (737, '克山县', '230229', '0452', 723, 'Keshan'); +INSERT INTO `t_region` VALUES (738, '克东县', '230230', '0452', 723, 'Kedong'); +INSERT INTO `t_region` VALUES (739, '拜泉县', '230231', '0452', 723, 'Baiquan'); +INSERT INTO `t_region` VALUES (740, '讷河市', '230281', '0452', 723, 'Nehe City'); +INSERT INTO `t_region` VALUES (741, '鸡西市', '230300', '0467', 702, 'JiXi'); +INSERT INTO `t_region` VALUES (742, '鸡西市市辖区', '230301', '0467', 741, 'Jixi municipal'); +INSERT INTO `t_region` VALUES (743, '鸡冠区', '230302', '0467', 741, 'Jiguan'); +INSERT INTO `t_region` VALUES (744, '恒山区', '230303', '0467', 741, 'hengshan'); +INSERT INTO `t_region` VALUES (745, '滴道区', '230304', '0467', 741, 'Didao'); +INSERT INTO `t_region` VALUES (746, '梨树区', '230305', '0467', 741, 'Lishu'); +INSERT INTO `t_region` VALUES (747, '城子河区', '230306', '0467', 741, 'Chengzihe'); +INSERT INTO `t_region` VALUES (748, '麻山区', '230307', '0467', 741, 'Mashan'); +INSERT INTO `t_region` VALUES (749, '鸡东县', '230321', '0467', 741, 'Jidong'); +INSERT INTO `t_region` VALUES (750, '虎林市', '230381', '0467', 741, 'Hulin City'); +INSERT INTO `t_region` VALUES (751, '密山市', '230382', '0467', 741, 'Mishan'); +INSERT INTO `t_region` VALUES (752, '鹤岗市', '230400', '0468', 702, 'Hegang'); +INSERT INTO `t_region` VALUES (753, '鹤岗市市辖区', '230401', '0468', 752, 'Hegang municipal'); +INSERT INTO `t_region` VALUES (754, '向阳区', '230402', '0468', 752, 'xiangyang'); +INSERT INTO `t_region` VALUES (755, '工农区', '230403', '0468', 752, 'Industrial and agricultural areas'); +INSERT INTO `t_region` VALUES (756, '南山区', '230404', '0468', 752, 'Nanshan'); +INSERT INTO `t_region` VALUES (757, '兴安区', '230405', '0468', 752, 'Xing\'an'); +INSERT INTO `t_region` VALUES (758, '东山区', '230406', '0468', 752, 'dongshan'); +INSERT INTO `t_region` VALUES (759, '兴山区', '230407', '0468', 752, 'Xingshan mountain'); +INSERT INTO `t_region` VALUES (760, '萝北县', '230421', '0468', 752, 'Luobei'); +INSERT INTO `t_region` VALUES (761, '绥滨县', '230422', '0468', 752, 'Suibin'); +INSERT INTO `t_region` VALUES (762, '双鸭山市', '230500', '0469', 702, 'Shuangyashan'); +INSERT INTO `t_region` VALUES (763, '双鸭山市市辖区', '230501', '0469', 762, 'Shuangyashan municipal'); +INSERT INTO `t_region` VALUES (764, '尖山区', '230502', '0469', 762, 'Mountain Area'); +INSERT INTO `t_region` VALUES (765, '岭东区', '230503', '0469', 762, 'Lingdong'); +INSERT INTO `t_region` VALUES (766, '四方台区', '230505', '0469', 762, 'Sifangtai'); +INSERT INTO `t_region` VALUES (767, '宝山区', '230506', '0469', 762, 'Baoshan'); +INSERT INTO `t_region` VALUES (768, '集贤县', '230521', '0469', 762, 'Jixian'); +INSERT INTO `t_region` VALUES (769, '友谊县', '230522', '0469', 762, 'Friendship'); +INSERT INTO `t_region` VALUES (770, '宝清县', '230523', '0469', 762, 'Baoqing'); +INSERT INTO `t_region` VALUES (771, '饶河县', '230524', '0469', 762, 'Raohe'); +INSERT INTO `t_region` VALUES (772, '大庆市', '230600', '0459', 702, 'Daqing City'); +INSERT INTO `t_region` VALUES (773, '大庆市市辖区', '230601', '0459', 772, 'Daqing municipal'); +INSERT INTO `t_region` VALUES (774, '萨尔图区', '230602', '0459', 772, 'Sartu'); +INSERT INTO `t_region` VALUES (775, '龙凤区', '230603', '0459', 772, 'Longfeng'); +INSERT INTO `t_region` VALUES (776, '让胡路区', '230604', '0459', 772, 'Ranghulu'); +INSERT INTO `t_region` VALUES (777, '红岗区', '230605', '0459', 772, 'Honggang'); +INSERT INTO `t_region` VALUES (778, '大同区', '230606', '0459', 772, 'Datong'); +INSERT INTO `t_region` VALUES (779, '肇州县', '230621', '0459', 772, 'Zhaozhou'); +INSERT INTO `t_region` VALUES (780, '肇源县', '230622', '0459', 772, 'Zhaoyuan'); +INSERT INTO `t_region` VALUES (781, '林甸县', '230623', '0459', 772, 'Lindian'); +INSERT INTO `t_region` VALUES (782, '杜尔伯特蒙古族自治县', '230624', '0459', 772, 'Du Bert Mongol Autonomous'); +INSERT INTO `t_region` VALUES (783, '伊春市', '230700', '0458', 702, 'Yichun'); +INSERT INTO `t_region` VALUES (784, '伊春市市辖区', '230701', '0458', 783, 'Yichun municipal'); +INSERT INTO `t_region` VALUES (785, '伊春区', '230702', '0458', 783, 'Yichun'); +INSERT INTO `t_region` VALUES (786, '南岔区', '230703', '0458', 783, 'Nancha'); +INSERT INTO `t_region` VALUES (787, '友好区', '230704', '0458', 783, 'Friendly zone'); +INSERT INTO `t_region` VALUES (788, '西林区', '230705', '0458', 783, 'Xilin'); +INSERT INTO `t_region` VALUES (789, '翠峦区', '230706', '0458', 783, 'Cuiluan'); +INSERT INTO `t_region` VALUES (790, '新青区', '230707', '0458', 783, 'Xinqing'); +INSERT INTO `t_region` VALUES (791, '美溪区', '230708', '0458', 783, 'Meixi'); +INSERT INTO `t_region` VALUES (792, '金山屯区', '230709', '0458', 783, 'Jinshantun'); +INSERT INTO `t_region` VALUES (793, '五营区', '230710', '0458', 783, 'Wuying'); +INSERT INTO `t_region` VALUES (794, '乌马河区', '230711', '0458', 783, 'Wumahe'); +INSERT INTO `t_region` VALUES (795, '汤旺河区', '230712', '0458', 783, 'Tangwanghe'); +INSERT INTO `t_region` VALUES (796, '带岭区', '230713', '0458', 783, 'Dailing'); +INSERT INTO `t_region` VALUES (797, '乌伊岭区', '230714', '0458', 783, 'Wuyiling'); +INSERT INTO `t_region` VALUES (798, '红星区', '230715', '0458', 783, 'Hongxing'); +INSERT INTO `t_region` VALUES (799, '上甘岭区', '230716', '0458', 783, 'Shangganling'); +INSERT INTO `t_region` VALUES (800, '嘉荫县', '230722', '0458', 783, 'Jiayin'); +INSERT INTO `t_region` VALUES (801, '铁力市', '230781', '0458', 783, 'Tieli'); +INSERT INTO `t_region` VALUES (802, '佳木斯市', '230800', '0454', 702, 'Jiamusi'); +INSERT INTO `t_region` VALUES (803, '佳木斯市市辖区', '230801', '0454', 802, 'Jiamusi municipal'); +INSERT INTO `t_region` VALUES (804, '向阳区', '230803', '0454', 802, 'xiangyang'); +INSERT INTO `t_region` VALUES (805, '前进区', '230804', '0454', 802, 'staging area'); +INSERT INTO `t_region` VALUES (806, '东风区', '230805', '0454', 802, 'Dongfeng'); +INSERT INTO `t_region` VALUES (807, '郊区', '230811', '0454', 802, 'suburbs'); +INSERT INTO `t_region` VALUES (808, '桦南县', '230822', '0454', 802, 'Huanan'); +INSERT INTO `t_region` VALUES (809, '桦川县', '230826', '0454', 802, 'Huachuan'); +INSERT INTO `t_region` VALUES (810, '汤原县', '230828', '0454', 802, 'Tangyuan'); +INSERT INTO `t_region` VALUES (811, '抚远市', '230883', '0454', 802, 'Fuyuan City'); +INSERT INTO `t_region` VALUES (812, '同江市', '230881', '0454', 802, 'Tongjiang City'); +INSERT INTO `t_region` VALUES (813, '富锦市', '230882', '0454', 802, 'Fujin City'); +INSERT INTO `t_region` VALUES (814, '七台河市', '230900', '0464', 702, 'Qitaihe'); +INSERT INTO `t_region` VALUES (815, '七台河市市辖区', '230901', '0464', 814, 'Qitaihe municipal'); +INSERT INTO `t_region` VALUES (816, '新兴区', '230902', '0464', 814, 'Emerging areas'); +INSERT INTO `t_region` VALUES (817, '桃山区', '230903', '0464', 814, 'Taoshan'); +INSERT INTO `t_region` VALUES (818, '茄子河区', '230904', '0464', 814, 'Qiezihe'); +INSERT INTO `t_region` VALUES (819, '勃利县', '230921', '0464', 814, 'Boli'); +INSERT INTO `t_region` VALUES (820, '牡丹江市', '231000', '0453', 702, 'Mudanjiang'); +INSERT INTO `t_region` VALUES (821, '牡丹江市市辖区', '231001', '0453', 820, 'Mudanjiang municipal'); +INSERT INTO `t_region` VALUES (822, '东安区', '231002', '0453', 820, 'Dong\'an'); +INSERT INTO `t_region` VALUES (823, '阳明区', '231003', '0453', 820, 'Yangming'); +INSERT INTO `t_region` VALUES (824, '爱民区', '231004', '0453', 820, 'Aimin'); +INSERT INTO `t_region` VALUES (825, '西安区', '231005', '0453', 820, 'Xi\'an'); +INSERT INTO `t_region` VALUES (826, '东宁市', '231086', '0453', 820, 'Dongning City'); +INSERT INTO `t_region` VALUES (827, '林口县', '231025', '0453', 820, 'Linkou'); +INSERT INTO `t_region` VALUES (828, '绥芬河市', '231081', '0453', 820, 'Suifenhe'); +INSERT INTO `t_region` VALUES (829, '海林市', '231083', '0453', 820, 'hailin city'); +INSERT INTO `t_region` VALUES (830, '宁安市', '231084', '0453', 820, 'Ning\'an City'); +INSERT INTO `t_region` VALUES (831, '穆棱市', '231085', '0453', 820, 'Muling'); +INSERT INTO `t_region` VALUES (832, '黑河市', '231100', '0456', 702, 'Heihe City'); +INSERT INTO `t_region` VALUES (833, '黑河市市辖区', '231101', '0456', 832, 'Heihe municipal'); +INSERT INTO `t_region` VALUES (834, '爱辉区', '231102', '0456', 832, 'Aihui'); +INSERT INTO `t_region` VALUES (835, '嫩江县', '231121', '0456', 832, 'Nenjiang'); +INSERT INTO `t_region` VALUES (836, '逊克县', '231123', '0456', 832, 'Xunke'); +INSERT INTO `t_region` VALUES (837, '孙吴县', '231124', '0456', 832, 'Sunwu'); +INSERT INTO `t_region` VALUES (838, '北安市', '231181', '0456', 832, 'Beian'); +INSERT INTO `t_region` VALUES (839, '五大连池市', '231182', '0456', 832, 'Wudalianchi'); +INSERT INTO `t_region` VALUES (840, '绥化市', '231200', '0455', 702, 'Suihua City'); +INSERT INTO `t_region` VALUES (841, '绥化市市辖区', '231201', '0455', 840, 'Suihua municipal'); +INSERT INTO `t_region` VALUES (842, '北林区', '231202', '0455', 840, 'Beilin'); +INSERT INTO `t_region` VALUES (843, '望奎县', '231221', '0455', 840, 'Wangkui'); +INSERT INTO `t_region` VALUES (844, '兰西县', '231222', '0455', 840, 'Lanxi'); +INSERT INTO `t_region` VALUES (845, '青冈县', '231223', '0455', 840, 'Qinggang'); +INSERT INTO `t_region` VALUES (846, '庆安县', '231224', '0455', 840, 'Qing’an'); +INSERT INTO `t_region` VALUES (847, '明水县', '231225', '0455', 840, 'Mingshui'); +INSERT INTO `t_region` VALUES (848, '绥棱县', '231226', '0455', 840, 'Suileng'); +INSERT INTO `t_region` VALUES (849, '安达市', '231281', '0455', 840, 'Anda'); +INSERT INTO `t_region` VALUES (850, '肇东市', '231282', '0455', 840, 'Zhaodong City'); +INSERT INTO `t_region` VALUES (851, '海伦市', '231283', '0455', 840, 'Hailun'); +INSERT INTO `t_region` VALUES (852, '大兴安岭地区', '232700', '0457', 702, 'Da Hinggan Ling Prefecture'); +INSERT INTO `t_region` VALUES (853, '加格达奇区', '232701', '0457', 852, 'Jiagedaqi'); +INSERT INTO `t_region` VALUES (854, '呼玛县', '232721', '0457', 852, 'Huma'); +INSERT INTO `t_region` VALUES (855, '塔河县', '232722', '0457', 852, 'Tahe'); +INSERT INTO `t_region` VALUES (856, '漠河县', '232723', '0457', 852, 'Mohe'); +INSERT INTO `t_region` VALUES (857, '上海市', '310000', '021', 0, 'Shanghai Municipality '); +INSERT INTO `t_region` VALUES (858, '上海市市辖区', '310100', '021', 857, 'Shanghai municipal'); +INSERT INTO `t_region` VALUES (859, '黄浦区', '310101', '021', 858, 'Huangpu'); +INSERT INTO `t_region` VALUES (860, '徐汇区', '310104', '021', 858, 'Xuhui'); +INSERT INTO `t_region` VALUES (861, '长宁区', '310105', '021', 858, 'Changning'); +INSERT INTO `t_region` VALUES (862, '静安区', '310106', '021', 858, 'Jingan'); +INSERT INTO `t_region` VALUES (863, '普陀区', '310107', '021', 858, 'Putuo'); +INSERT INTO `t_region` VALUES (864, '虹口区', '310109', '021', 858, 'Hongkou'); +INSERT INTO `t_region` VALUES (865, '杨浦区', '310110', '021', 858, 'yangpu'); +INSERT INTO `t_region` VALUES (866, '闵行区', '310112', '021', 858, 'Minhang'); +INSERT INTO `t_region` VALUES (867, '宝山区', '310113', '021', 858, 'Baoshan'); +INSERT INTO `t_region` VALUES (868, '嘉定区', '310114', '021', 858, 'Jiading'); +INSERT INTO `t_region` VALUES (869, '浦东新区', '310115', '021', 858, 'Pudong New Area'); +INSERT INTO `t_region` VALUES (870, '金山区', '310116', '021', 858, 'Jinshan'); +INSERT INTO `t_region` VALUES (871, '松江区', '310117', '021', 858, 'Songjiang'); +INSERT INTO `t_region` VALUES (872, '青浦区', '310118', '021', 858, 'Qingpu area '); +INSERT INTO `t_region` VALUES (873, '奉贤区', '310120', '021', 858, 'Fengxian'); +INSERT INTO `t_region` VALUES (874, '崇明区', '310151', '021', 858, 'Chongming'); +INSERT INTO `t_region` VALUES (875, '江苏省', '320000', '', 0, 'Jiangsu Province '); +INSERT INTO `t_region` VALUES (876, '南京市', '320100', '025', 875, 'Nanjing'); +INSERT INTO `t_region` VALUES (877, '南京市市辖区', '320101', '025', 876, 'Nanjing municipal'); +INSERT INTO `t_region` VALUES (878, '玄武区', '320102', '025', 876, 'xuanwu'); +INSERT INTO `t_region` VALUES (879, '秦淮区', '320104', '025', 876, 'Qinhuai'); +INSERT INTO `t_region` VALUES (880, '建邺区', '320105', '025', 876, 'jianye'); +INSERT INTO `t_region` VALUES (881, '鼓楼区', '320106', '025', 876, 'gulou'); +INSERT INTO `t_region` VALUES (882, '浦口区', '320111', '025', 876, 'Pukou'); +INSERT INTO `t_region` VALUES (883, '栖霞区', '320113', '025', 876, 'Qixia'); +INSERT INTO `t_region` VALUES (884, '雨花台区', '320114', '025', 876, 'yuhuatai'); +INSERT INTO `t_region` VALUES (885, '江宁区', '320115', '025', 876, 'jiangning'); +INSERT INTO `t_region` VALUES (886, '六合区', '320116', '025', 876, 'Luhe'); +INSERT INTO `t_region` VALUES (887, '溧水区', '320117', '025', 876, 'Lishui'); +INSERT INTO `t_region` VALUES (888, '高淳区', '320118', '025', 876, 'Gaochun'); +INSERT INTO `t_region` VALUES (889, '无锡市', '320200', '0510', 875, 'Wuxi'); +INSERT INTO `t_region` VALUES (890, '无锡市市辖区', '320201', '0510', 889, 'Wuxi municipal'); +INSERT INTO `t_region` VALUES (891, '梁溪区', '320213', '0510', 889, 'Liang Xi'); +INSERT INTO `t_region` VALUES (892, '新吴区', '320214', '0510', 889, 'New Wu area'); +INSERT INTO `t_region` VALUES (893, '锡山区', '320205', '0510', 889, 'xishan'); +INSERT INTO `t_region` VALUES (894, '惠山区', '320206', '0510', 889, 'huishan'); +INSERT INTO `t_region` VALUES (895, '滨湖区', '320211', '0510', 889, 'Binhu'); +INSERT INTO `t_region` VALUES (896, '江阴市', '320281', '0510', 889, 'Jiangyin City'); +INSERT INTO `t_region` VALUES (897, '宜兴市', '320282', '0510', 889, 'Yixing City'); +INSERT INTO `t_region` VALUES (898, '徐州市', '320300', '0516', 875, 'Xuzhou Citey '); +INSERT INTO `t_region` VALUES (899, '徐州市市辖区', '320301', '0516', 898, 'Xuzhou municipal'); +INSERT INTO `t_region` VALUES (900, '鼓楼区', '320302', '0516', 898, 'gulou'); +INSERT INTO `t_region` VALUES (901, '云龙区', '320303', '0516', 898, 'Yunlong'); +INSERT INTO `t_region` VALUES (902, '贾汪区', '320305', '0516', 898, 'Jiawang'); +INSERT INTO `t_region` VALUES (903, '泉山区', '320311', '0516', 898, 'quanshan'); +INSERT INTO `t_region` VALUES (904, '铜山区', '320312', '0516', 898, 'Tongshan'); +INSERT INTO `t_region` VALUES (905, '丰县', '320321', '0516', 898, 'Fengxian'); +INSERT INTO `t_region` VALUES (906, '沛县', '320322', '0516', 898, 'Peixian'); +INSERT INTO `t_region` VALUES (907, '睢宁县', '320324', '0516', 898, 'Suining'); +INSERT INTO `t_region` VALUES (908, '新沂市', '320381', '0516', 898, 'Xinyi City'); +INSERT INTO `t_region` VALUES (909, '邳州市', '320382', '0516', 898, 'Pizhou'); +INSERT INTO `t_region` VALUES (910, '常州市', '320400', '0519', 875, 'Changzhou'); +INSERT INTO `t_region` VALUES (911, '常州市市辖区', '320401', '0519', 910, 'Changzhou municipal'); +INSERT INTO `t_region` VALUES (912, '天宁区', '320402', '0519', 910, 'Tianning'); +INSERT INTO `t_region` VALUES (913, '钟楼区', '320404', '0519', 910, 'Zhonglou'); +INSERT INTO `t_region` VALUES (914, '新北区', '320411', '0519', 910, 'Neoarctic region'); +INSERT INTO `t_region` VALUES (915, '武进区', '320412', '0519', 910, 'wujin'); +INSERT INTO `t_region` VALUES (916, '溧阳市', '320481', '0519', 910, 'Liyang City'); +INSERT INTO `t_region` VALUES (917, '金坛区', '320413', '0519', 910, 'Jintan'); +INSERT INTO `t_region` VALUES (918, '苏州市', '320500', '0512', 875, 'Suzhou'); +INSERT INTO `t_region` VALUES (919, '苏州市市辖区', '320501', '0512', 918, 'Suzhou municipal'); +INSERT INTO `t_region` VALUES (920, '虎丘区', '320505', '0512', 918, 'Huqiu'); +INSERT INTO `t_region` VALUES (921, '吴中区', '320506', '0512', 918, 'wuzhong'); +INSERT INTO `t_region` VALUES (922, '相城区', '320507', '0512', 918, 'Xiangcheng'); +INSERT INTO `t_region` VALUES (923, '姑苏区', '320508', '0512', 918, 'Gusu'); +INSERT INTO `t_region` VALUES (924, '吴江区', '320509', '0512', 918, 'Wujiang'); +INSERT INTO `t_region` VALUES (925, '常熟市', '320581', '0512', 918, 'Changshou City'); +INSERT INTO `t_region` VALUES (926, '张家港市', '320582', '0512', 918, 'Zhangjiagang City'); +INSERT INTO `t_region` VALUES (927, '昆山市', '320583', '0512', 918, 'City of Kunshan'); +INSERT INTO `t_region` VALUES (928, '太仓市', '320585', '0512', 918, 'Taicang City'); +INSERT INTO `t_region` VALUES (929, '南通市', '320600', '0513', 875, 'Nantong'); +INSERT INTO `t_region` VALUES (930, '南通市市辖区', '320601', '0513', 929, 'Nantong municipal'); +INSERT INTO `t_region` VALUES (931, '崇川区', '320602', '0513', 929, 'Chongchuan'); +INSERT INTO `t_region` VALUES (932, '港闸区', '320611', '0513', 929, 'gangzha'); +INSERT INTO `t_region` VALUES (933, '通州区', '320612', '0513', 929, 'Tongzhou'); +INSERT INTO `t_region` VALUES (934, '海安县', '320621', '0513', 929, 'Hai’an'); +INSERT INTO `t_region` VALUES (935, '如东县', '320623', '0513', 929, 'Rudong'); +INSERT INTO `t_region` VALUES (936, '启东市', '320681', '0513', 929, 'qidong'); +INSERT INTO `t_region` VALUES (937, '如皋市', '320682', '0513', 929, 'Rugao'); +INSERT INTO `t_region` VALUES (938, '海门市', '320684', '0513', 929, 'Haimen City'); +INSERT INTO `t_region` VALUES (939, '连云港市', '320700', '0518', 875, 'Lianyungang'); +INSERT INTO `t_region` VALUES (940, '连云港市市辖区', '320701', '0518', 939, 'Lianyungang municipal'); +INSERT INTO `t_region` VALUES (941, '连云区', '320703', '0518', 939, 'Lianyun'); +INSERT INTO `t_region` VALUES (942, '海州区', '320706', '0518', 939, 'haizhou'); +INSERT INTO `t_region` VALUES (943, '赣榆区', '320707', '0518', 939, 'Ganyu'); +INSERT INTO `t_region` VALUES (944, '东海县', '320722', '0518', 939, 'Donghai'); +INSERT INTO `t_region` VALUES (945, '灌云县', '320723', '0518', 939, 'Guanyun'); +INSERT INTO `t_region` VALUES (946, '灌南县', '320724', '0518', 939, 'Guannan'); +INSERT INTO `t_region` VALUES (947, '淮安市', '320800', '0517', 875, 'Huaian City'); +INSERT INTO `t_region` VALUES (948, '淮安市市辖区', '320801', '0517', 947, 'Huaian municipal'); +INSERT INTO `t_region` VALUES (949, '清江浦区', '320812', '0517', 947, 'The Qing Jiangpu'); +INSERT INTO `t_region` VALUES (950, '淮安区', '320803', '0517', 947, 'Huaian'); +INSERT INTO `t_region` VALUES (951, '淮阴区', '320804', '0517', 947, 'huaiyin'); +INSERT INTO `t_region` VALUES (952, '涟水县', '320826', '0517', 947, 'Lianshui'); +INSERT INTO `t_region` VALUES (953, '洪泽区', '320813', '0517', 947, 'Hongze'); +INSERT INTO `t_region` VALUES (954, '盱眙县', '320830', '0517', 947, 'Xuyi'); +INSERT INTO `t_region` VALUES (955, '金湖县', '320831', '0517', 947, 'Jinhu'); +INSERT INTO `t_region` VALUES (956, '盐城市', '320900', '0515', 875, 'yancheng'); +INSERT INTO `t_region` VALUES (957, '盐城市市辖区', '320901', '0515', 956, 'Yancheng City'); +INSERT INTO `t_region` VALUES (958, '亭湖区', '320902', '0515', 956, 'Tinghu'); +INSERT INTO `t_region` VALUES (959, '盐都区', '320903', '0515', 956, 'yandu'); +INSERT INTO `t_region` VALUES (960, '响水县', '320921', '0515', 956, 'Xiangshui'); +INSERT INTO `t_region` VALUES (961, '滨海县', '320922', '0515', 956, 'Binhai'); +INSERT INTO `t_region` VALUES (962, '阜宁县', '320923', '0515', 956, 'Funing'); +INSERT INTO `t_region` VALUES (963, '射阳县', '320924', '0515', 956, 'Sheyang'); +INSERT INTO `t_region` VALUES (964, '建湖县', '320925', '0515', 956, 'Jianhu'); +INSERT INTO `t_region` VALUES (965, '东台市', '320981', '0515', 956, 'Dongtai City'); +INSERT INTO `t_region` VALUES (966, '大丰区', '320904', '0515', 956, 'Dafeng'); +INSERT INTO `t_region` VALUES (967, '扬州市', '321000', '0514', 875, 'Yangzhou'); +INSERT INTO `t_region` VALUES (968, '扬州市市辖区', '321001', '0514', 967, 'Yangzhou municipal'); +INSERT INTO `t_region` VALUES (969, '广陵区', '321002', '0514', 967, 'Guangling'); +INSERT INTO `t_region` VALUES (970, '邗江区', '321003', '0514', 967, 'Hanjiang'); +INSERT INTO `t_region` VALUES (971, '江都区', '321012', '0514', 967, 'Jiangdu'); +INSERT INTO `t_region` VALUES (972, '宝应县', '321023', '0514', 967, 'Baoying'); +INSERT INTO `t_region` VALUES (973, '仪征市', '321081', '0514', 967, 'Yizheng City'); +INSERT INTO `t_region` VALUES (974, '高邮市', '321084', '0514', 967, 'Gaoyou City'); +INSERT INTO `t_region` VALUES (975, '镇江市', '321100', '0511', 875, 'Zhenjiang'); +INSERT INTO `t_region` VALUES (976, '镇江市市辖区', '321101', '0511', 975, 'Zhenjiang municipal'); +INSERT INTO `t_region` VALUES (977, '京口区', '321102', '0511', 975, 'Jingkou'); +INSERT INTO `t_region` VALUES (978, '润州区', '321111', '0511', 975, 'Runzhou'); +INSERT INTO `t_region` VALUES (979, '丹徒区', '321112', '0511', 975, 'dantu'); +INSERT INTO `t_region` VALUES (980, '丹阳市', '321181', '0511', 975, 'Danyang City'); +INSERT INTO `t_region` VALUES (981, '扬中市', '321182', '0511', 975, 'yangzhong'); +INSERT INTO `t_region` VALUES (982, '句容市', '321183', '0511', 975, 'jurong'); +INSERT INTO `t_region` VALUES (983, '泰州市', '321200', '0523', 875, 'Taizhou'); +INSERT INTO `t_region` VALUES (984, '泰州市市辖区', '321201', '0523', 983, 'Taizhou municipal'); +INSERT INTO `t_region` VALUES (985, '海陵区', '321202', '0523', 983, 'Hailing'); +INSERT INTO `t_region` VALUES (986, '高港区', '321203', '0523', 983, 'Gaogang'); +INSERT INTO `t_region` VALUES (987, '姜堰区', '321204', '0523', 983, 'Jiangyan'); +INSERT INTO `t_region` VALUES (988, '兴化市', '321281', '0523', 983, 'xinghua'); +INSERT INTO `t_region` VALUES (989, '靖江市', '321282', '0523', 983, 'Jingjiang City'); +INSERT INTO `t_region` VALUES (990, '泰兴市', '321283', '0523', 983, 'taixing'); +INSERT INTO `t_region` VALUES (991, '宿迁市', '321300', '0527', 875, 'Suqian City'); +INSERT INTO `t_region` VALUES (992, '宿迁市市辖区', '321301', '0527', 991, 'Suqian municipal'); +INSERT INTO `t_region` VALUES (993, '宿城区', '321302', '0527', 991, 'Sucheng'); +INSERT INTO `t_region` VALUES (994, '宿豫区', '321311', '0527', 991, 'Suyu'); +INSERT INTO `t_region` VALUES (995, '沭阳县', '321322', '0527', 991, 'Shuyang'); +INSERT INTO `t_region` VALUES (996, '泗阳县', '321323', '0527', 991, 'Siyang'); +INSERT INTO `t_region` VALUES (997, '泗洪县', '321324', '0527', 991, 'Sihong'); +INSERT INTO `t_region` VALUES (998, '浙江省', '330000', '', 0, 'Zhejiang Province '); +INSERT INTO `t_region` VALUES (999, '杭州市', '330100', '0571', 998, 'Hangzhou'); +INSERT INTO `t_region` VALUES (1000, '杭州市市辖区', '330101', '0571', 999, 'Hangzhou municipal'); +INSERT INTO `t_region` VALUES (1001, '上城区', '330102', '0571', 999, 'Bairro Alto'); +INSERT INTO `t_region` VALUES (1002, '下城区', '330103', '0571', 999, 'Lower urban area'); +INSERT INTO `t_region` VALUES (1003, '江干区', '330104', '0571', 999, 'Jianggan'); +INSERT INTO `t_region` VALUES (1004, '拱墅区', '330105', '0571', 999, 'gongshu'); +INSERT INTO `t_region` VALUES (1005, '西湖区', '330106', '0571', 999, 'xihu'); +INSERT INTO `t_region` VALUES (1006, '滨江区', '330108', '0571', 999, 'Binjiang'); +INSERT INTO `t_region` VALUES (1007, '萧山区', '330109', '0571', 999, 'Xiaoshan'); +INSERT INTO `t_region` VALUES (1008, '余杭区', '330110', '0571', 999, 'Yuhang'); +INSERT INTO `t_region` VALUES (1009, '富阳区', '330111', '0571', 999, 'Fuyang'); +INSERT INTO `t_region` VALUES (1010, '桐庐县', '330122', '0571', 999, 'Tonglu'); +INSERT INTO `t_region` VALUES (1011, '淳安县', '330127', '0571', 999, 'Chun’an'); +INSERT INTO `t_region` VALUES (1012, '建德市', '330182', '0571', 999, 'Jiande'); +INSERT INTO `t_region` VALUES (1013, '临安市', '330185', '0571', 999, 'Lin\'an City'); +INSERT INTO `t_region` VALUES (1014, '宁波市', '330200', '0574', 998, 'Ningbo'); +INSERT INTO `t_region` VALUES (1015, '宁波市市辖区', '330201', '0574', 1014, 'Ningbo municipal'); +INSERT INTO `t_region` VALUES (1016, '海曙区', '330203', '0574', 1014, 'Haishu'); +INSERT INTO `t_region` VALUES (1017, '江北区', '330205', '0574', 1014, 'jiangbei'); +INSERT INTO `t_region` VALUES (1018, '北仑区', '330206', '0574', 1014, 'Beilun'); +INSERT INTO `t_region` VALUES (1019, '镇海区', '330211', '0574', 1014, 'zhenhai'); +INSERT INTO `t_region` VALUES (1020, '鄞州区', '330212', '0574', 1014, 'Yinzhou'); +INSERT INTO `t_region` VALUES (1021, '象山县', '330225', '0574', 1014, 'Xiangshan'); +INSERT INTO `t_region` VALUES (1022, '宁海县', '330226', '0574', 1014, 'Ninghai'); +INSERT INTO `t_region` VALUES (1023, '余姚市', '330281', '0574', 1014, 'yuyao city'); +INSERT INTO `t_region` VALUES (1024, '慈溪市', '330282', '0574', 1014, 'cixi city'); +INSERT INTO `t_region` VALUES (1025, '奉化区', '330213', '0574', 1014, 'Fenghua'); +INSERT INTO `t_region` VALUES (1026, '温州市', '330300', '0577', 998, 'Wenzhou'); +INSERT INTO `t_region` VALUES (1027, '温州市市辖区', '330301', '0577', 1026, 'Wenzhou municipal'); +INSERT INTO `t_region` VALUES (1028, '鹿城区', '330302', '0577', 1026, 'Lucheng'); +INSERT INTO `t_region` VALUES (1029, '龙湾区', '330303', '0577', 1026, 'Longwan'); +INSERT INTO `t_region` VALUES (1030, '瓯海区', '330304', '0577', 1026, 'ouhai'); +INSERT INTO `t_region` VALUES (1031, '洞头区', '330305', '0577', 1026, 'Dongtou'); +INSERT INTO `t_region` VALUES (1032, '永嘉县', '330324', '0577', 1026, 'Yongjia'); +INSERT INTO `t_region` VALUES (1033, '平阳县', '330326', '0577', 1026, 'Pingyang'); +INSERT INTO `t_region` VALUES (1034, '苍南县', '330327', '0577', 1026, 'Cangnan'); +INSERT INTO `t_region` VALUES (1035, '文成县', '330328', '0577', 1026, 'Wencheng'); +INSERT INTO `t_region` VALUES (1036, '泰顺县', '330329', '0577', 1026, 'Taishun'); +INSERT INTO `t_region` VALUES (1037, '瑞安市', '330381', '0577', 1026, 'Ruian City'); +INSERT INTO `t_region` VALUES (1038, '乐清市', '330382', '0577', 1026, 'Yueqing'); +INSERT INTO `t_region` VALUES (1039, '嘉兴市', '330400', '0573', 998, 'Jiaxing City'); +INSERT INTO `t_region` VALUES (1040, '嘉兴市市辖区', '330401', '0573', 1039, 'Jiaxing municipal'); +INSERT INTO `t_region` VALUES (1041, '南湖区', '330402', '0573', 1039, 'Nanhu'); +INSERT INTO `t_region` VALUES (1042, '秀洲区', '330411', '0573', 1039, 'Xiuzhou'); +INSERT INTO `t_region` VALUES (1043, '嘉善县', '330421', '0573', 1039, 'Jiashan'); +INSERT INTO `t_region` VALUES (1044, '海盐县', '330424', '0573', 1039, 'Haiyan'); +INSERT INTO `t_region` VALUES (1045, '海宁市', '330481', '0573', 1039, 'haining city'); +INSERT INTO `t_region` VALUES (1046, '平湖市', '330482', '0573', 1039, 'Pinghu'); +INSERT INTO `t_region` VALUES (1047, '桐乡市', '330483', '0573', 1039, 'tongxiang'); +INSERT INTO `t_region` VALUES (1048, '湖州市', '330500', '0572', 998, 'Huzhou City'); +INSERT INTO `t_region` VALUES (1049, '湖州市市辖区', '330501', '0572', 1048, 'Huzhou municipal'); +INSERT INTO `t_region` VALUES (1050, '吴兴区', '330502', '0572', 1048, 'Wuxing'); +INSERT INTO `t_region` VALUES (1051, '南浔区', '330503', '0572', 1048, 'Nanxun'); +INSERT INTO `t_region` VALUES (1052, '德清县', '330521', '0572', 1048, 'Deqing'); +INSERT INTO `t_region` VALUES (1053, '长兴县', '330522', '0572', 1048, 'Changxing'); +INSERT INTO `t_region` VALUES (1054, '安吉县', '330523', '0572', 1048, 'Anji'); +INSERT INTO `t_region` VALUES (1055, '绍兴市', '330600', '0575', 998, 'Shaoxing City'); +INSERT INTO `t_region` VALUES (1056, '绍兴市市辖区', '330601', '0575', 1055, 'Shaoxing municipal'); +INSERT INTO `t_region` VALUES (1057, '越城区', '330602', '0575', 1055, 'Yuecheng City'); +INSERT INTO `t_region` VALUES (1058, '柯桥区', '330603', '0575', 1055, 'Keqiao'); +INSERT INTO `t_region` VALUES (1059, '上虞区', '330604', '0575', 1055, 'Shangyu'); +INSERT INTO `t_region` VALUES (1060, '新昌县', '330624', '0575', 1055, 'Xiuchang'); +INSERT INTO `t_region` VALUES (1061, '诸暨市', '330681', '0575', 1055, 'Zhuji City'); +INSERT INTO `t_region` VALUES (1062, '嵊州市', '330683', '0575', 1055, 'Shengzhou City'); +INSERT INTO `t_region` VALUES (1063, '金华市', '330700', '0579', 998, 'Jinhua City'); +INSERT INTO `t_region` VALUES (1064, '金华市市辖区', '330701', '0579', 1063, 'Jinhua municipal'); +INSERT INTO `t_region` VALUES (1065, '婺城区', '330702', '0579', 1063, 'Wucheng'); +INSERT INTO `t_region` VALUES (1066, '金东区', '330703', '0579', 1063, 'Jindong'); +INSERT INTO `t_region` VALUES (1067, '武义县', '330723', '0579', 1063, 'Wuyi'); +INSERT INTO `t_region` VALUES (1068, '浦江县', '330726', '0579', 1063, 'Pujiang'); +INSERT INTO `t_region` VALUES (1069, '磐安县', '330727', '0579', 1063, 'Pan\'an'); +INSERT INTO `t_region` VALUES (1070, '兰溪市', '330781', '0579', 1063, 'Lanxi City'); +INSERT INTO `t_region` VALUES (1071, '义乌市', '330782', '0579', 1063, 'yiwu'); +INSERT INTO `t_region` VALUES (1072, '东阳市', '330783', '0579', 1063, 'Dongyang City'); +INSERT INTO `t_region` VALUES (1073, '永康市', '330784', '0579', 1063, 'Yongkang City'); +INSERT INTO `t_region` VALUES (1074, '衢州市', '330800', '0570', 998, 'Quzhou City'); +INSERT INTO `t_region` VALUES (1075, '衢州市市辖区', '330801', '0570', 1074, 'Quzhou municipal'); +INSERT INTO `t_region` VALUES (1076, '柯城区', '330802', '0570', 1074, 'Kecheng'); +INSERT INTO `t_region` VALUES (1077, '衢江区', '330803', '0570', 1074, 'Qujiang'); +INSERT INTO `t_region` VALUES (1078, '常山县', '330822', '0570', 1074, 'Changshan'); +INSERT INTO `t_region` VALUES (1079, '开化县', '330824', '0570', 1074, 'Kaihua'); +INSERT INTO `t_region` VALUES (1080, '龙游县', '330825', '0570', 1074, 'Longyou'); +INSERT INTO `t_region` VALUES (1081, '江山市', '330881', '0570', 1074, 'jiangshan city'); +INSERT INTO `t_region` VALUES (1082, '舟山市', '330900', '0580', 998, 'Zhoushan City'); +INSERT INTO `t_region` VALUES (1083, '舟山市市辖区', '330901', '0580', 1082, 'Zhoushan municipal'); +INSERT INTO `t_region` VALUES (1084, '定海区', '330902', '0580', 1082, 'Dinghai'); +INSERT INTO `t_region` VALUES (1085, '普陀区', '330903', '0580', 1082, 'Putuo'); +INSERT INTO `t_region` VALUES (1086, '岱山县', '330921', '0580', 1082, 'Daishan'); +INSERT INTO `t_region` VALUES (1087, '嵊泗县', '330922', '0580', 1082, 'Shengsi'); +INSERT INTO `t_region` VALUES (1088, '台州市', '331000', '0576', 998, 'Taizhou City'); +INSERT INTO `t_region` VALUES (1089, '台州市市辖区', '331001', '0576', 1088, 'Taizhou municipal'); +INSERT INTO `t_region` VALUES (1090, '椒江区', '331002', '0576', 1088, 'jiaojiang'); +INSERT INTO `t_region` VALUES (1091, '黄岩区', '331003', '0576', 1088, 'Huangyan'); +INSERT INTO `t_region` VALUES (1092, '路桥区', '331004', '0576', 1088, 'Luqiao'); +INSERT INTO `t_region` VALUES (1093, '玉环市', '331021', '0576', 1088, 'Yuhuan City'); +INSERT INTO `t_region` VALUES (1094, '三门县', '331022', '0576', 1088, 'Sanmen'); +INSERT INTO `t_region` VALUES (1095, '天台县', '331023', '0576', 1088, 'Tiantai'); +INSERT INTO `t_region` VALUES (1096, '仙居县', '331024', '0576', 1088, 'Xianju'); +INSERT INTO `t_region` VALUES (1097, '温岭市', '331081', '0576', 1088, 'Wenling City'); +INSERT INTO `t_region` VALUES (1098, '临海市', '331082', '0576', 1088, 'Linghai City'); +INSERT INTO `t_region` VALUES (1099, '丽水市', '331100', '0578', 998, 'Lishui City'); +INSERT INTO `t_region` VALUES (1100, '丽水市市辖区', '331101', '0578', 1099, 'Lishui municipal'); +INSERT INTO `t_region` VALUES (1101, '莲都区', '331102', '0578', 1099, 'Liandu'); +INSERT INTO `t_region` VALUES (1102, '青田县', '331121', '0578', 1099, 'Qingtian'); +INSERT INTO `t_region` VALUES (1103, '缙云县', '331122', '0578', 1099, 'Jinyun'); +INSERT INTO `t_region` VALUES (1104, '遂昌县', '331123', '0578', 1099, 'Suichang'); +INSERT INTO `t_region` VALUES (1105, '松阳县', '331124', '0578', 1099, 'songyang'); +INSERT INTO `t_region` VALUES (1106, '云和县', '331125', '0578', 1099, 'Yunhe'); +INSERT INTO `t_region` VALUES (1107, '庆元县', '331126', '0578', 1099, 'Qingyuan'); +INSERT INTO `t_region` VALUES (1108, '景宁畲族自治县', '331127', '0578', 1099, 'Jingning She Autonomous'); +INSERT INTO `t_region` VALUES (1109, '龙泉市', '331181', '0578', 1099, 'Longquan'); +INSERT INTO `t_region` VALUES (1110, '安徽省', '340000', '', 0, 'Anhui Province '); +INSERT INTO `t_region` VALUES (1111, '合肥市', '340100', '0551', 1110, 'Hefei'); +INSERT INTO `t_region` VALUES (1112, '合肥市市辖区', '340101', '0551', 1111, 'Hefei municipal'); +INSERT INTO `t_region` VALUES (1113, '瑶海区', '340102', '0551', 1111, 'Yaohai'); +INSERT INTO `t_region` VALUES (1114, '庐阳区', '340103', '0551', 1111, 'luyang'); +INSERT INTO `t_region` VALUES (1115, '蜀山区', '340104', '0551', 1111, 'Shushan'); +INSERT INTO `t_region` VALUES (1116, '包河区', '340111', '0551', 1111, 'The Baohe'); +INSERT INTO `t_region` VALUES (1117, '长丰县', '340121', '0551', 1111, 'Changfeng'); +INSERT INTO `t_region` VALUES (1118, '肥东县', '340122', '0551', 1111, 'Feidong'); +INSERT INTO `t_region` VALUES (1119, '肥西县', '340123', '0551', 1111, 'Feixi'); +INSERT INTO `t_region` VALUES (1120, '庐江县', '340124', '0551', 1111, 'Lujiang'); +INSERT INTO `t_region` VALUES (1121, '巢湖市', '340181', '0551', 1111, 'Chaohu City'); +INSERT INTO `t_region` VALUES (1122, '芜湖市', '340200', '0553', 1110, 'Wuhu'); +INSERT INTO `t_region` VALUES (1123, '芜湖市市辖区', '340201', '0553', 1122, 'Wuhu municipal'); +INSERT INTO `t_region` VALUES (1124, '镜湖区', '340202', '0553', 1122, 'Jinghu'); +INSERT INTO `t_region` VALUES (1125, '弋江区', '340203', '0553', 1122, 'Yijiang'); +INSERT INTO `t_region` VALUES (1126, '鸠江区', '340207', '0553', 1122, 'Jiujiang'); +INSERT INTO `t_region` VALUES (1127, '三山区', '340208', '0553', 1122, 'sanshan'); +INSERT INTO `t_region` VALUES (1128, '芜湖县', '340221', '0553', 1122, 'Wuhu'); +INSERT INTO `t_region` VALUES (1129, '繁昌县', '340222', '0553', 1122, 'Fanchang'); +INSERT INTO `t_region` VALUES (1130, '南陵县', '340223', '0553', 1122, 'Nanling'); +INSERT INTO `t_region` VALUES (1131, '无为县', '340225', '0553', 1122, 'Wuwei'); +INSERT INTO `t_region` VALUES (1132, '蚌埠市', '340300', '0552', 1110, 'Bengbu'); +INSERT INTO `t_region` VALUES (1133, '蚌埠市市辖区', '340301', '0552', 1132, 'Bengbu municipal'); +INSERT INTO `t_region` VALUES (1134, '龙子湖区', '340302', '0552', 1132, 'longzihu'); +INSERT INTO `t_region` VALUES (1135, '蚌山区', '340303', '0552', 1132, 'Bengshan'); +INSERT INTO `t_region` VALUES (1136, '禹会区', '340304', '0552', 1132, 'Yuhui'); +INSERT INTO `t_region` VALUES (1137, '淮上区', '340311', '0552', 1132, 'Huaishang'); +INSERT INTO `t_region` VALUES (1138, '怀远县', '340321', '0552', 1132, 'Huaiyuan'); +INSERT INTO `t_region` VALUES (1139, '五河县', '340322', '0552', 1132, 'Wuhe'); +INSERT INTO `t_region` VALUES (1140, '固镇县', '340323', '0552', 1132, 'Guzhen'); +INSERT INTO `t_region` VALUES (1141, '淮南市', '340400', '0554', 1110, 'Huainan'); +INSERT INTO `t_region` VALUES (1142, '淮南市市辖区', '340401', '0554', 1141, 'Huainan municipal'); +INSERT INTO `t_region` VALUES (1143, '大通区', '340402', '0554', 1141, 'Datong'); +INSERT INTO `t_region` VALUES (1144, '田家庵区', '340403', '0554', 1141, 'Tian Jia an area'); +INSERT INTO `t_region` VALUES (1145, '谢家集区', '340404', '0554', 1141, 'Xiejiaji'); +INSERT INTO `t_region` VALUES (1146, '八公山区', '340405', '0554', 1141, 'Bagongshan'); +INSERT INTO `t_region` VALUES (1147, '潘集区', '340406', '0554', 1141, 'Panji'); +INSERT INTO `t_region` VALUES (1148, '凤台县', '340421', '0554', 1141, 'Fengtai'); +INSERT INTO `t_region` VALUES (1149, '寿县', '340422', '0554', 1141, 'Shouxian'); +INSERT INTO `t_region` VALUES (1150, '马鞍山市', '340500', '0555', 1110, 'Ma’anshan City'); +INSERT INTO `t_region` VALUES (1151, '马鞍山市市辖区', '340501', '0555', 1150, 'Ma\'anshan municipal'); +INSERT INTO `t_region` VALUES (1152, '花山区', '340503', '0555', 1150, 'Huashan'); +INSERT INTO `t_region` VALUES (1153, '雨山区', '340504', '0555', 1150, 'Yushan'); +INSERT INTO `t_region` VALUES (1154, '博望区', '340506', '0555', 1150, 'Bowing area'); +INSERT INTO `t_region` VALUES (1155, '当涂县', '340521', '0555', 1150, 'Dangtu'); +INSERT INTO `t_region` VALUES (1156, '含山县', '340522', '0555', 1150, 'Hanshan'); +INSERT INTO `t_region` VALUES (1157, '和县', '340523', '0555', 1150, 'Hexian'); +INSERT INTO `t_region` VALUES (1158, '淮北市', '340600', '0561', 1110, 'Huaibei'); +INSERT INTO `t_region` VALUES (1159, '淮北市市辖区', '340601', '0561', 1158, 'Huaibei municipal'); +INSERT INTO `t_region` VALUES (1160, '杜集区', '340602', '0561', 1158, 'Duji'); +INSERT INTO `t_region` VALUES (1161, '相山区', '340603', '0561', 1158, 'Xiangshan'); +INSERT INTO `t_region` VALUES (1162, '烈山区', '340604', '0561', 1158, 'Lieshan'); +INSERT INTO `t_region` VALUES (1163, '濉溪县', '340621', '0561', 1158, 'Suixi'); +INSERT INTO `t_region` VALUES (1164, '铜陵市', '340700', '0562', 1110, 'tongling'); +INSERT INTO `t_region` VALUES (1165, '铜陵市市辖区', '340701', '0562', 1164, 'Tongling municipal'); +INSERT INTO `t_region` VALUES (1166, '铜官区', '340705', '0562', 1164, 'Tongguan'); +INSERT INTO `t_region` VALUES (1167, '郊区', '340711', '0562', 1164, 'suburbs'); +INSERT INTO `t_region` VALUES (1168, '义安区', '340706', '0562', 1164, 'Yi An'); +INSERT INTO `t_region` VALUES (1169, '枞阳县', '340722', '0562', 1164, 'Zongyang'); +INSERT INTO `t_region` VALUES (1170, '安庆市', '340800', '0556', 1110, 'Anqing'); +INSERT INTO `t_region` VALUES (1171, '安庆市市辖区', '340801', '0556', 1170, 'Anqing municipal'); +INSERT INTO `t_region` VALUES (1172, '迎江区', '340802', '0556', 1170, 'yingjiang'); +INSERT INTO `t_region` VALUES (1173, '大观区', '340803', '0556', 1170, 'Daguan'); +INSERT INTO `t_region` VALUES (1174, '宜秀区', '340811', '0556', 1170, 'Yixiu'); +INSERT INTO `t_region` VALUES (1175, '怀宁县', '340822', '0556', 1170, 'Huaining'); +INSERT INTO `t_region` VALUES (1176, '潜山县', '340824', '0556', 1170, 'Qianshan'); +INSERT INTO `t_region` VALUES (1177, '太湖县', '340825', '0556', 1170, 'Taihu'); +INSERT INTO `t_region` VALUES (1178, '宿松县', '340826', '0556', 1170, 'Susong'); +INSERT INTO `t_region` VALUES (1179, '望江县', '340827', '0556', 1170, 'Wangjiang'); +INSERT INTO `t_region` VALUES (1180, '岳西县', '340828', '0556', 1170, 'Yuexi'); +INSERT INTO `t_region` VALUES (1181, '桐城市', '340881', '0556', 1170, 'Tongcheng'); +INSERT INTO `t_region` VALUES (1182, '黄山市', '341000', '0559', 1110, 'Huangshan City'); +INSERT INTO `t_region` VALUES (1183, '黄山市市辖区', '341001', '0559', 1182, 'Huangshan City'); +INSERT INTO `t_region` VALUES (1184, '屯溪区', '341002', '0559', 1182, 'Tunxi'); +INSERT INTO `t_region` VALUES (1185, '黄山区', '341003', '0559', 1182, 'huangshan'); +INSERT INTO `t_region` VALUES (1186, '徽州区', '341004', '0559', 1182, 'Huizhou'); +INSERT INTO `t_region` VALUES (1187, '歙县', '341021', '0559', 1182, 'Shexian(in Anhui Province) '); +INSERT INTO `t_region` VALUES (1188, '休宁县', '341022', '0559', 1182, 'Xiuning'); +INSERT INTO `t_region` VALUES (1189, '黟县', '341023', '0559', 1182, 'Yixian'); +INSERT INTO `t_region` VALUES (1190, '祁门县', '341024', '0559', 1182, 'Qimen'); +INSERT INTO `t_region` VALUES (1191, '滁州市', '341100', '0550', 1110, 'Chuzhou City'); +INSERT INTO `t_region` VALUES (1192, '滁州市市辖区', '341101', '0550', 1191, 'Chuzhou municipal'); +INSERT INTO `t_region` VALUES (1193, '琅琊区', '341102', '0550', 1191, 'Langya'); +INSERT INTO `t_region` VALUES (1194, '南谯区', '341103', '0550', 1191, 'Nanqiao'); +INSERT INTO `t_region` VALUES (1195, '来安县', '341122', '0550', 1191, 'Lai’an'); +INSERT INTO `t_region` VALUES (1196, '全椒县', '341124', '0550', 1191, 'Quanjiao'); +INSERT INTO `t_region` VALUES (1197, '定远县', '341125', '0550', 1191, 'Dingyuan'); +INSERT INTO `t_region` VALUES (1198, '凤阳县', '341126', '0550', 1191, 'Fengyang'); +INSERT INTO `t_region` VALUES (1199, '天长市', '341181', '0550', 1191, 'tianchang'); +INSERT INTO `t_region` VALUES (1200, '明光市', '341182', '0550', 1191, 'Mingguang City'); +INSERT INTO `t_region` VALUES (1201, '阜阳市', '341200', '1558', 1110, 'Fuyang City'); +INSERT INTO `t_region` VALUES (1202, '阜阳市市辖区', '341201', '1558', 1201, 'Fuyang municipal'); +INSERT INTO `t_region` VALUES (1203, '颍州区', '341202', '1558', 1201, 'Yingzhou'); +INSERT INTO `t_region` VALUES (1204, '颍东区', '341203', '1558', 1201, 'Yingdong'); +INSERT INTO `t_region` VALUES (1205, '颍泉区', '341204', '1558', 1201, 'Yingquan'); +INSERT INTO `t_region` VALUES (1206, '临泉县', '341221', '1558', 1201, 'Linquan'); +INSERT INTO `t_region` VALUES (1207, '太和县', '341222', '1558', 1201, 'Taihe'); +INSERT INTO `t_region` VALUES (1208, '阜南县', '341225', '1558', 1201, 'Funan'); +INSERT INTO `t_region` VALUES (1209, '颍上县', '341226', '1558', 1201, 'Yingshang'); +INSERT INTO `t_region` VALUES (1210, '界首市', '341282', '1558', 1201, 'Jieshou'); +INSERT INTO `t_region` VALUES (1211, '宿州市', '341300', '0557', 1110, 'Suzhou City'); +INSERT INTO `t_region` VALUES (1212, '宿州市市辖区', '341301', '0557', 1211, 'Suzhou municipal'); +INSERT INTO `t_region` VALUES (1213, '埇桥区', '341302', '0557', 1211, 'Yongqiao'); +INSERT INTO `t_region` VALUES (1214, '砀山县', '341321', '0557', 1211, 'Dangshan'); +INSERT INTO `t_region` VALUES (1215, '萧县', '341322', '0557', 1211, 'Xiaoxian'); +INSERT INTO `t_region` VALUES (1216, '灵璧县', '341323', '0557', 1211, 'lingbi'); +INSERT INTO `t_region` VALUES (1217, '泗县', '341324', '0557', 1211, 'Sixian'); +INSERT INTO `t_region` VALUES (1218, '六安市', '341500', '0564', 1110, 'Lu\'an City'); +INSERT INTO `t_region` VALUES (1219, '六安市市辖区', '341501', '0564', 1218, 'Lu\'an municipal'); +INSERT INTO `t_region` VALUES (1220, '金安区', '341502', '0564', 1218, 'Jinan'); +INSERT INTO `t_region` VALUES (1221, '裕安区', '341503', '0564', 1218, 'yu\'an'); +INSERT INTO `t_region` VALUES (1222, '叶集区', '341504', '0564', 1218, 'Leaf area'); +INSERT INTO `t_region` VALUES (1223, '霍邱县', '341522', '0564', 1218, 'Huoqiu'); +INSERT INTO `t_region` VALUES (1224, '舒城县', '341523', '0564', 1218, 'Shucheng'); +INSERT INTO `t_region` VALUES (1225, '金寨县', '341524', '0564', 1218, 'Jinzhai'); +INSERT INTO `t_region` VALUES (1226, '霍山县', '341525', '0564', 1218, 'Huoshan'); +INSERT INTO `t_region` VALUES (1227, '亳州市', '341600', '0558', 1110, 'Bozhou City'); +INSERT INTO `t_region` VALUES (1228, '亳州市市辖区', '341601', '0558', 1227, 'Bozhou municipal'); +INSERT INTO `t_region` VALUES (1229, '谯城区', '341602', '0558', 1227, 'Qiaocheng'); +INSERT INTO `t_region` VALUES (1230, '涡阳县', '341621', '0558', 1227, 'Guoyang'); +INSERT INTO `t_region` VALUES (1231, '蒙城县', '341622', '0558', 1227, 'Mengcheng'); +INSERT INTO `t_region` VALUES (1232, '利辛县', '341623', '0558', 1227, 'Lixin'); +INSERT INTO `t_region` VALUES (1233, '池州市', '341700', '0566', 1110, 'chizhou'); +INSERT INTO `t_region` VALUES (1234, '池州市市辖区', '341701', '0566', 1233, 'Chizhou municipal'); +INSERT INTO `t_region` VALUES (1235, '贵池区', '341702', '0566', 1233, 'Guichi'); +INSERT INTO `t_region` VALUES (1236, '东至县', '341721', '0566', 1233, 'Dongzhi'); +INSERT INTO `t_region` VALUES (1237, '石台县', '341722', '0566', 1233, 'Shitai'); +INSERT INTO `t_region` VALUES (1238, '青阳县', '341723', '0566', 1233, 'Qingyang'); +INSERT INTO `t_region` VALUES (1239, '宣城市', '341800', '0563', 1110, 'Xuancheng City'); +INSERT INTO `t_region` VALUES (1240, '宣城市市辖区', '341801', '0563', 1239, 'Xuancheng municipal'); +INSERT INTO `t_region` VALUES (1241, '宣州区', '341802', '0563', 1239, 'xuanzhou'); +INSERT INTO `t_region` VALUES (1242, '郎溪县', '341821', '0563', 1239, 'Langxi'); +INSERT INTO `t_region` VALUES (1243, '广德县', '341822', '0563', 1239, 'Guangde'); +INSERT INTO `t_region` VALUES (1244, '泾县', '341823', '0563', 1239, 'Jingxian'); +INSERT INTO `t_region` VALUES (1245, '绩溪县', '341824', '0563', 1239, 'Jixi'); +INSERT INTO `t_region` VALUES (1246, '旌德县', '341825', '0563', 1239, 'Jingde'); +INSERT INTO `t_region` VALUES (1247, '宁国市', '341881', '0563', 1239, 'Ningguo City'); +INSERT INTO `t_region` VALUES (1248, '福建省', '350000', '', 0, 'Fujian Province '); +INSERT INTO `t_region` VALUES (1249, '福州市', '350100', '0591', 1248, 'Fuzhou'); +INSERT INTO `t_region` VALUES (1250, '福州市市辖区', '350101', '0591', 1249, 'Fuzhou municipal'); +INSERT INTO `t_region` VALUES (1251, '鼓楼区', '350102', '0591', 1249, 'gulou'); +INSERT INTO `t_region` VALUES (1252, '台江区', '350103', '0591', 1249, 'taijiang'); +INSERT INTO `t_region` VALUES (1253, '仓山区', '350104', '0591', 1249, 'Cangshan'); +INSERT INTO `t_region` VALUES (1254, '马尾区', '350105', '0591', 1249, 'mawei'); +INSERT INTO `t_region` VALUES (1255, '晋安区', '350111', '0591', 1249, 'Jinan'); +INSERT INTO `t_region` VALUES (1256, '闽侯县', '350121', '0591', 1249, 'Minhou'); +INSERT INTO `t_region` VALUES (1257, '连江县', '350122', '0591', 1249, 'Lianjiang'); +INSERT INTO `t_region` VALUES (1258, '罗源县', '350123', '0591', 1249, 'Luoyuan'); +INSERT INTO `t_region` VALUES (1259, '闽清县', '350124', '0591', 1249, 'Minqing'); +INSERT INTO `t_region` VALUES (1260, '永泰县', '350125', '0591', 1249, 'Yongtai'); +INSERT INTO `t_region` VALUES (1261, '平潭县', '350128', '0591', 1249, 'Pingtan'); +INSERT INTO `t_region` VALUES (1262, '福清市', '350181', '0591', 1249, 'Fuqing City'); +INSERT INTO `t_region` VALUES (1263, '长乐市', '350182', '0591', 1249, 'Changle City'); +INSERT INTO `t_region` VALUES (1264, '厦门市', '350200', '0592', 1248, 'Xiamen'); +INSERT INTO `t_region` VALUES (1265, '厦门市市辖区', '350201', '0592', 1264, 'Xiamen municipal'); +INSERT INTO `t_region` VALUES (1266, '思明区', '350203', '0592', 1264, 'Siming'); +INSERT INTO `t_region` VALUES (1267, '海沧区', '350205', '0592', 1264, 'haicang'); +INSERT INTO `t_region` VALUES (1268, '湖里区', '350206', '0592', 1264, 'Huli'); +INSERT INTO `t_region` VALUES (1269, '集美区', '350211', '0592', 1264, 'Jimei'); +INSERT INTO `t_region` VALUES (1270, '同安区', '350212', '0592', 1264, 'Tongan area'); +INSERT INTO `t_region` VALUES (1271, '翔安区', '350213', '0592', 1264, 'Xiangan'); +INSERT INTO `t_region` VALUES (1272, '莆田市', '350300', '0594', 1248, 'Putian City'); +INSERT INTO `t_region` VALUES (1273, '莆田市市辖区', '350301', '0594', 1272, 'Putian municipal'); +INSERT INTO `t_region` VALUES (1274, '城厢区', '350302', '0594', 1272, 'Chengxiang'); +INSERT INTO `t_region` VALUES (1275, '涵江区', '350303', '0594', 1272, 'Hanjiang'); +INSERT INTO `t_region` VALUES (1276, '荔城区', '350304', '0594', 1272, 'licheng'); +INSERT INTO `t_region` VALUES (1277, '秀屿区', '350305', '0594', 1272, 'Xiuyu'); +INSERT INTO `t_region` VALUES (1278, '仙游县', '350322', '0594', 1272, 'Xianyou'); +INSERT INTO `t_region` VALUES (1279, '三明市', '350400', '0598', 1248, 'Sanming'); +INSERT INTO `t_region` VALUES (1280, '三明市市辖区', '350401', '0598', 1279, 'Sanming City'); +INSERT INTO `t_region` VALUES (1281, '梅列区', '350402', '0598', 1279, 'Meilie'); +INSERT INTO `t_region` VALUES (1282, '三元区', '350403', '0598', 1279, 'Three Yuan area'); +INSERT INTO `t_region` VALUES (1283, '明溪县', '350421', '0598', 1279, 'Mingxi'); +INSERT INTO `t_region` VALUES (1284, '清流县', '350423', '0598', 1279, 'Qingliu'); +INSERT INTO `t_region` VALUES (1285, '宁化县', '350424', '0598', 1279, 'Ninghua'); +INSERT INTO `t_region` VALUES (1286, '大田县', '350425', '0598', 1279, 'Datian'); +INSERT INTO `t_region` VALUES (1287, '尤溪县', '350426', '0598', 1279, 'Youxi'); +INSERT INTO `t_region` VALUES (1288, '沙县', '350427', '0598', 1279, 'Sa'); +INSERT INTO `t_region` VALUES (1289, '将乐县', '350428', '0598', 1279, 'Jiangle'); +INSERT INTO `t_region` VALUES (1290, '泰宁县', '350429', '0598', 1279, 'Taining'); +INSERT INTO `t_region` VALUES (1291, '建宁县', '350430', '0598', 1279, 'Jianning'); +INSERT INTO `t_region` VALUES (1292, '永安市', '350481', '0598', 1279, 'Yongan City'); +INSERT INTO `t_region` VALUES (1293, '泉州市', '350500', '0595', 1248, 'Quanzhou'); +INSERT INTO `t_region` VALUES (1294, '泉州市市辖区', '350501', '0595', 1293, 'Quanzhou municipal'); +INSERT INTO `t_region` VALUES (1295, '鲤城区', '350502', '0595', 1293, 'Licheng'); +INSERT INTO `t_region` VALUES (1296, '丰泽区', '350503', '0595', 1293, 'fengze'); +INSERT INTO `t_region` VALUES (1297, '洛江区', '350504', '0595', 1293, 'Luojiang'); +INSERT INTO `t_region` VALUES (1298, '泉港区', '350505', '0595', 1293, 'QuanGang'); +INSERT INTO `t_region` VALUES (1299, '惠安县', '350521', '0595', 1293, 'Hui’an'); +INSERT INTO `t_region` VALUES (1300, '安溪县', '350524', '0595', 1293, 'Anxi'); +INSERT INTO `t_region` VALUES (1301, '永春县', '350525', '0595', 1293, 'Yongchun'); +INSERT INTO `t_region` VALUES (1302, '德化县', '350526', '0595', 1293, 'Dehua'); +INSERT INTO `t_region` VALUES (1303, '金门县', '350527', '0595', 1293, 'Jinmen'); +INSERT INTO `t_region` VALUES (1304, '石狮市', '350581', '0595', 1293, 'Shishi City'); +INSERT INTO `t_region` VALUES (1305, '晋江市', '350582', '0595', 1293, 'Jinjiang'); +INSERT INTO `t_region` VALUES (1306, '南安市', '350583', '0595', 1293, 'Nanan City'); +INSERT INTO `t_region` VALUES (1307, '漳州市', '350600', '0596', 1248, 'Zhangzhou'); +INSERT INTO `t_region` VALUES (1308, '漳州市市辖区', '350601', '0596', 1307, 'Zhangzhou municipal'); +INSERT INTO `t_region` VALUES (1309, '芗城区', '350602', '0596', 1307, 'Xiangcheng'); +INSERT INTO `t_region` VALUES (1310, '龙文区', '350603', '0596', 1307, 'Longwen'); +INSERT INTO `t_region` VALUES (1311, '云霄县', '350622', '0596', 1307, 'Yunxiao'); +INSERT INTO `t_region` VALUES (1312, '漳浦县', '350623', '0596', 1307, 'Zhangpu'); +INSERT INTO `t_region` VALUES (1313, '诏安县', '350624', '0596', 1307, 'Zhao’an'); +INSERT INTO `t_region` VALUES (1314, '长泰县', '350625', '0596', 1307, 'Changtai'); +INSERT INTO `t_region` VALUES (1315, '东山县', '350626', '0596', 1307, 'Dongshan'); +INSERT INTO `t_region` VALUES (1316, '南靖县', '350627', '0596', 1307, 'Nanjing'); +INSERT INTO `t_region` VALUES (1317, '平和县', '350628', '0596', 1307, 'Pinghe'); +INSERT INTO `t_region` VALUES (1318, '华安县', '350629', '0596', 1307, 'Hua’an'); +INSERT INTO `t_region` VALUES (1319, '龙海市', '350681', '0596', 1307, 'Longhai'); +INSERT INTO `t_region` VALUES (1320, '南平市', '350700', '0599', 1248, 'Nanping'); +INSERT INTO `t_region` VALUES (1321, '南平市市辖区', '350701', '0599', 1320, 'Nanping municipal'); +INSERT INTO `t_region` VALUES (1322, '延平区', '350702', '0599', 1320, 'yanping'); +INSERT INTO `t_region` VALUES (1323, '建阳区', '350703', '0599', 1320, 'Jianyang'); +INSERT INTO `t_region` VALUES (1324, '顺昌县', '350721', '0599', 1320, 'Shunchang'); +INSERT INTO `t_region` VALUES (1325, '浦城县', '350722', '0599', 1320, 'Pucheng'); +INSERT INTO `t_region` VALUES (1326, '光泽县', '350723', '0599', 1320, 'Guangze'); +INSERT INTO `t_region` VALUES (1327, '松溪县', '350724', '0599', 1320, 'Songxi'); +INSERT INTO `t_region` VALUES (1328, '政和县', '350725', '0599', 1320, 'Zhenghe'); +INSERT INTO `t_region` VALUES (1329, '邵武市', '350781', '0599', 1320, 'shaowu city'); +INSERT INTO `t_region` VALUES (1330, '武夷山市', '350782', '0599', 1320, 'Wuyishan City'); +INSERT INTO `t_region` VALUES (1331, '建瓯市', '350783', '0599', 1320, 'Jianou City'); +INSERT INTO `t_region` VALUES (1332, '龙岩市', '350800', '0597', 1248, 'Longyan City'); +INSERT INTO `t_region` VALUES (1333, '龙岩市市辖区', '350801', '0597', 1332, 'Longyan municipal'); +INSERT INTO `t_region` VALUES (1334, '新罗区', '350802', '0597', 1332, 'xinluo'); +INSERT INTO `t_region` VALUES (1335, '永定区', '350803', '0597', 1332, 'Yongding'); +INSERT INTO `t_region` VALUES (1336, '长汀县', '350821', '0597', 1332, 'Changting'); +INSERT INTO `t_region` VALUES (1337, '上杭县', '350823', '0597', 1332, 'Shanghang'); +INSERT INTO `t_region` VALUES (1338, '武平县', '350824', '0597', 1332, 'Wuping'); +INSERT INTO `t_region` VALUES (1339, '连城县', '350825', '0597', 1332, 'Liancheng'); +INSERT INTO `t_region` VALUES (1340, '漳平市', '350881', '0597', 1332, 'Zhangping City'); +INSERT INTO `t_region` VALUES (1341, '宁德市', '350900', '0593', 1248, 'Ningde City'); +INSERT INTO `t_region` VALUES (1342, '宁德市市辖区', '350901', '0593', 1341, 'Ningde municipal'); +INSERT INTO `t_region` VALUES (1343, '蕉城区', '350902', '0593', 1341, 'Jiaocheng'); +INSERT INTO `t_region` VALUES (1344, '霞浦县', '350921', '0593', 1341, 'Xiapu'); +INSERT INTO `t_region` VALUES (1345, '古田县', '350922', '0593', 1341, 'Gutian'); +INSERT INTO `t_region` VALUES (1346, '屏南县', '350923', '0593', 1341, 'Pingnan'); +INSERT INTO `t_region` VALUES (1347, '寿宁县', '350924', '0593', 1341, 'Shouning'); +INSERT INTO `t_region` VALUES (1348, '周宁县', '350925', '0593', 1341, 'Zhouning'); +INSERT INTO `t_region` VALUES (1349, '柘荣县', '350926', '0593', 1341, 'Zherong'); +INSERT INTO `t_region` VALUES (1350, '福安市', '350981', '0593', 1341, 'Fu\'an City'); +INSERT INTO `t_region` VALUES (1351, '福鼎市', '350982', '0593', 1341, 'fuding'); +INSERT INTO `t_region` VALUES (1352, '江西省', '360000', '', 0, 'Jiangxi Province '); +INSERT INTO `t_region` VALUES (1353, '南昌市', '360100', '0791', 1352, 'Nanchang'); +INSERT INTO `t_region` VALUES (1354, '南昌市市辖区', '360101', '0791', 1353, 'Nanchang municipal'); +INSERT INTO `t_region` VALUES (1355, '东湖区', '360102', '0791', 1353, 'donghu'); +INSERT INTO `t_region` VALUES (1356, '西湖区', '360103', '0791', 1353, 'xihu'); +INSERT INTO `t_region` VALUES (1357, '青云谱区', '360104', '0791', 1353, 'Qingyunpu'); +INSERT INTO `t_region` VALUES (1358, '湾里区', '360105', '0791', 1353, 'Wanli'); +INSERT INTO `t_region` VALUES (1359, '青山湖区', '360111', '0791', 1353, 'Qingshanhu'); +INSERT INTO `t_region` VALUES (1360, '南昌县', '360121', '0791', 1353, 'Nanchang'); +INSERT INTO `t_region` VALUES (1361, '新建区', '360112', '0791', 1353, 'New Area'); +INSERT INTO `t_region` VALUES (1362, '安义县', '360123', '0791', 1353, 'Anyi'); +INSERT INTO `t_region` VALUES (1363, '进贤县', '360124', '0791', 1353, 'Jinxian'); +INSERT INTO `t_region` VALUES (1364, '景德镇市', '360200', '0798', 1352, 'Jingdezhen'); +INSERT INTO `t_region` VALUES (1365, '景德镇市市辖区', '360201', '0798', 1364, 'Jingdezhen municipal'); +INSERT INTO `t_region` VALUES (1366, '昌江区', '360202', '0798', 1364, 'changjiang'); +INSERT INTO `t_region` VALUES (1367, '珠山区', '360203', '0798', 1364, 'Zhushan'); +INSERT INTO `t_region` VALUES (1368, '浮梁县', '360222', '0798', 1364, 'Fuliang'); +INSERT INTO `t_region` VALUES (1369, '乐平市', '360281', '0798', 1364, 'Leping'); +INSERT INTO `t_region` VALUES (1370, '萍乡市', '360300', '0799', 1352, 'Pingxiang'); +INSERT INTO `t_region` VALUES (1371, '萍乡市市辖区', '360301', '0799', 1370, 'Pingxiang municipal'); +INSERT INTO `t_region` VALUES (1372, '安源区', '360302', '0799', 1370, 'Anyuan'); +INSERT INTO `t_region` VALUES (1373, '湘东区', '360313', '0799', 1370, 'Xiangdong'); +INSERT INTO `t_region` VALUES (1374, '莲花县', '360321', '0799', 1370, 'Lianhua'); +INSERT INTO `t_region` VALUES (1375, '上栗县', '360322', '0799', 1370, 'Shangli'); +INSERT INTO `t_region` VALUES (1376, '芦溪县', '360323', '0799', 1370, 'Luxi'); +INSERT INTO `t_region` VALUES (1377, '九江市', '360400', '0792', 1352, 'Jiujiang'); +INSERT INTO `t_region` VALUES (1378, '九江市市辖区', '360401', '0792', 1377, 'Jiujiang'); +INSERT INTO `t_region` VALUES (1379, '濂溪区', '360402', '0792', 1377, 'Lian Xi'); +INSERT INTO `t_region` VALUES (1380, '浔阳区', '360403', '0792', 1377, 'Xunyang'); +INSERT INTO `t_region` VALUES (1381, '九江县', '360421', '0792', 1377, 'Jiujiang'); +INSERT INTO `t_region` VALUES (1382, '武宁县', '360423', '0792', 1377, 'Wuning'); +INSERT INTO `t_region` VALUES (1383, '修水县', '360424', '0792', 1377, 'Xiushui'); +INSERT INTO `t_region` VALUES (1384, '永修县', '360425', '0792', 1377, 'Yongxiu'); +INSERT INTO `t_region` VALUES (1385, '德安县', '360426', '0792', 1377, 'De’an'); +INSERT INTO `t_region` VALUES (1386, '庐山市', '360483', '0792', 1377, 'Mount Lu City'); +INSERT INTO `t_region` VALUES (1387, '都昌县', '360428', '0792', 1377, 'Duchang'); +INSERT INTO `t_region` VALUES (1388, '湖口县', '360429', '0792', 1377, 'Hukou'); +INSERT INTO `t_region` VALUES (1389, '彭泽县', '360430', '0792', 1377, 'Pengze'); +INSERT INTO `t_region` VALUES (1390, '瑞昌市', '360481', '0792', 1377, 'ruichang city'); +INSERT INTO `t_region` VALUES (1391, '共青城市', '360482', '0792', 1377, 'Gongqingcheng'); +INSERT INTO `t_region` VALUES (1392, '新余市', '360500', '0790', 1352, 'Xinyu City'); +INSERT INTO `t_region` VALUES (1393, '新余市市辖区', '360501', '0790', 1392, 'Xinyu municipal'); +INSERT INTO `t_region` VALUES (1394, '渝水区', '360502', '0790', 1392, 'yushui'); +INSERT INTO `t_region` VALUES (1395, '分宜县', '360521', '0790', 1392, 'Fenyi'); +INSERT INTO `t_region` VALUES (1396, '鹰潭市', '360600', '0701', 1352, 'Yingtan City'); +INSERT INTO `t_region` VALUES (1397, '鹰潭市市辖区', '360601', '0701', 1396, 'Yingtan municipal'); +INSERT INTO `t_region` VALUES (1398, '月湖区', '360602', '0701', 1396, 'Yuehu'); +INSERT INTO `t_region` VALUES (1399, '余江县', '360622', '0701', 1396, 'Yujiang'); +INSERT INTO `t_region` VALUES (1400, '贵溪市', '360681', '0701', 1396, 'Guixi'); +INSERT INTO `t_region` VALUES (1401, '赣州市', '360700', '0797', 1352, 'Ganzhou'); +INSERT INTO `t_region` VALUES (1402, '赣州市市辖区', '360701', '0797', 1401, 'Ganzhou municipal'); +INSERT INTO `t_region` VALUES (1403, '章贡区', '360702', '0797', 1401, 'zhanggong'); +INSERT INTO `t_region` VALUES (1404, '南康区', '360703', '0797', 1401, 'Nankang'); +INSERT INTO `t_region` VALUES (1405, '赣县区', '360704', '0797', 1401, 'Ganxian'); +INSERT INTO `t_region` VALUES (1406, '信丰县', '360722', '0797', 1401, 'Xinfeng'); +INSERT INTO `t_region` VALUES (1407, '大余县', '360723', '0797', 1401, 'Dayu'); +INSERT INTO `t_region` VALUES (1408, '上犹县', '360724', '0797', 1401, 'Shangyou'); +INSERT INTO `t_region` VALUES (1409, '崇义县', '360725', '0797', 1401, 'Chongyi'); +INSERT INTO `t_region` VALUES (1410, '安远县', '360726', '0797', 1401, 'Anyuan'); +INSERT INTO `t_region` VALUES (1411, '龙南县', '360727', '0797', 1401, 'Longnan'); +INSERT INTO `t_region` VALUES (1412, '定南县', '360728', '0797', 1401, 'Dingnan'); +INSERT INTO `t_region` VALUES (1413, '全南县', '360729', '0797', 1401, 'Quannan'); +INSERT INTO `t_region` VALUES (1414, '宁都县', '360730', '0797', 1401, 'Ningdu'); +INSERT INTO `t_region` VALUES (1415, '于都县', '360731', '0797', 1401, 'Yudu'); +INSERT INTO `t_region` VALUES (1416, '兴国县', '360732', '0797', 1401, 'Xingguo'); +INSERT INTO `t_region` VALUES (1417, '会昌县', '360733', '0797', 1401, 'Huichang'); +INSERT INTO `t_region` VALUES (1418, '寻乌县', '360734', '0797', 1401, 'Xunwu'); +INSERT INTO `t_region` VALUES (1419, '石城县', '360735', '0797', 1401, 'Shicheng'); +INSERT INTO `t_region` VALUES (1420, '瑞金市', '360781', '0797', 1401, 'Ruijin City'); +INSERT INTO `t_region` VALUES (1421, '吉安市', '360800', '0796', 1352, 'Jian City'); +INSERT INTO `t_region` VALUES (1422, '吉安市市辖区', '360801', '0796', 1421, 'Ji\'an municipal'); +INSERT INTO `t_region` VALUES (1423, '吉州区', '360802', '0796', 1421, 'Jizhou'); +INSERT INTO `t_region` VALUES (1424, '青原区', '360803', '0796', 1421, 'Qingyuan'); +INSERT INTO `t_region` VALUES (1425, '吉安县', '360821', '0796', 1421, 'Jian'); +INSERT INTO `t_region` VALUES (1426, '吉水县', '360822', '0796', 1421, 'Jishui'); +INSERT INTO `t_region` VALUES (1427, '峡江县', '360823', '0796', 1421, 'Xiajiang'); +INSERT INTO `t_region` VALUES (1428, '新干县', '360824', '0796', 1421, 'Xingan'); +INSERT INTO `t_region` VALUES (1429, '永丰县', '360825', '0796', 1421, 'Yongfeng'); +INSERT INTO `t_region` VALUES (1430, '泰和县', '360826', '0796', 1421, 'Taihe'); +INSERT INTO `t_region` VALUES (1431, '遂川县', '360827', '0796', 1421, 'Suichuan'); +INSERT INTO `t_region` VALUES (1432, '万安县', '360828', '0796', 1421, 'Wan’an'); +INSERT INTO `t_region` VALUES (1433, '安福县', '360829', '0796', 1421, 'Anfu'); +INSERT INTO `t_region` VALUES (1434, '永新县', '360830', '0796', 1421, 'Yongxin'); +INSERT INTO `t_region` VALUES (1435, '井冈山市', '360881', '0796', 1421, 'Jinggangshan City'); +INSERT INTO `t_region` VALUES (1436, '宜春市', '360900', '0795', 1352, 'Yichun City'); +INSERT INTO `t_region` VALUES (1437, '宜春市市辖区', '360901', '0795', 1436, 'Yichun municipal'); +INSERT INTO `t_region` VALUES (1438, '袁州区', '360902', '0795', 1436, 'Yuanzhou'); +INSERT INTO `t_region` VALUES (1439, '奉新县', '360921', '0795', 1436, 'Fengxin'); +INSERT INTO `t_region` VALUES (1440, '万载县', '360922', '0795', 1436, 'Wanzai'); +INSERT INTO `t_region` VALUES (1441, '上高县', '360923', '0795', 1436, 'Shanggao'); +INSERT INTO `t_region` VALUES (1442, '宜丰县', '360924', '0795', 1436, 'Yifeng'); +INSERT INTO `t_region` VALUES (1443, '靖安县', '360925', '0795', 1436, 'Jing’an'); +INSERT INTO `t_region` VALUES (1444, '铜鼓县', '360926', '0795', 1436, 'Tonggu'); +INSERT INTO `t_region` VALUES (1445, '丰城市', '360981', '0795', 1436, 'Fengcheng'); +INSERT INTO `t_region` VALUES (1446, '樟树市', '360982', '0795', 1436, 'zhangshu'); +INSERT INTO `t_region` VALUES (1447, '高安市', '360983', '0795', 1436, 'Ko an City'); +INSERT INTO `t_region` VALUES (1448, '抚州市', '361000', '0794', 1352, 'Fuzhou'); +INSERT INTO `t_region` VALUES (1449, '抚州市市辖区', '361001', '0794', 1448, 'Fuzhou municipal'); +INSERT INTO `t_region` VALUES (1450, '临川区', '361002', '0794', 1448, 'Linchuan'); +INSERT INTO `t_region` VALUES (1451, '南城县', '361021', '0794', 1448, 'Nancheng'); +INSERT INTO `t_region` VALUES (1452, '黎川县', '361022', '0794', 1448, 'Lichuan'); +INSERT INTO `t_region` VALUES (1453, '南丰县', '361023', '0794', 1448, 'Nanfeng'); +INSERT INTO `t_region` VALUES (1454, '崇仁县', '361024', '0794', 1448, 'Chongren'); +INSERT INTO `t_region` VALUES (1455, '乐安县', '361025', '0794', 1448, 'Le’an'); +INSERT INTO `t_region` VALUES (1456, '宜黄县', '361026', '0794', 1448, 'Yihuang'); +INSERT INTO `t_region` VALUES (1457, '金溪县', '361027', '0794', 1448, 'Jinxi'); +INSERT INTO `t_region` VALUES (1458, '资溪县', '361028', '0794', 1448, 'Zixi'); +INSERT INTO `t_region` VALUES (1459, '东乡区', '361003', '0794', 1448, 'Dongxiang'); +INSERT INTO `t_region` VALUES (1460, '广昌县', '361030', '0794', 1448, 'Guangchang'); +INSERT INTO `t_region` VALUES (1461, '上饶市', '361100', '0793', 1352, 'Shangrao'); +INSERT INTO `t_region` VALUES (1462, '上饶市市辖区', '361101', '0793', 1461, 'Shangrao municipal'); +INSERT INTO `t_region` VALUES (1463, '信州区', '361102', '0793', 1461, 'Xinzhou'); +INSERT INTO `t_region` VALUES (1464, '广丰区', '361103', '0793', 1461, 'Guangfeng'); +INSERT INTO `t_region` VALUES (1465, '上饶县', '361121', '0793', 1461, 'Shangrao'); +INSERT INTO `t_region` VALUES (1466, '玉山县', '361123', '0793', 1461, 'Yushan'); +INSERT INTO `t_region` VALUES (1467, '铅山县', '361124', '0793', 1461, 'Yanshan'); +INSERT INTO `t_region` VALUES (1468, '横峰县', '361125', '0793', 1461, 'Hengfeng'); +INSERT INTO `t_region` VALUES (1469, '弋阳县', '361126', '0793', 1461, 'Yiyang'); +INSERT INTO `t_region` VALUES (1470, '余干县', '361127', '0793', 1461, 'Yugan'); +INSERT INTO `t_region` VALUES (1471, '鄱阳县', '361128', '0793', 1461, 'Poyang'); +INSERT INTO `t_region` VALUES (1472, '万年县', '361129', '0793', 1461, 'Wannian'); +INSERT INTO `t_region` VALUES (1473, '婺源县', '361130', '0793', 1461, 'Wuyuan'); +INSERT INTO `t_region` VALUES (1474, '德兴市', '361181', '0793', 1461, 'Dexing'); +INSERT INTO `t_region` VALUES (1475, '山东省', '370000', '', 0, 'a folk art form popular in Shandong '); +INSERT INTO `t_region` VALUES (1476, '济南市', '370100', '0531', 1475, 'Jinan'); +INSERT INTO `t_region` VALUES (1477, '济南市市辖区', '370101', '0531', 1476, 'Ji\'nan municipal'); +INSERT INTO `t_region` VALUES (1478, '历下区', '370102', '0531', 1476, 'Lixia'); +INSERT INTO `t_region` VALUES (1479, '市中区', '370103', '0531', 1476, 'Shizhong'); +INSERT INTO `t_region` VALUES (1480, '槐荫区', '370104', '0531', 1476, 'huaiyin'); +INSERT INTO `t_region` VALUES (1481, '天桥区', '370105', '0531', 1476, 'tianqiao'); +INSERT INTO `t_region` VALUES (1482, '历城区', '370112', '0531', 1476, 'licheng'); +INSERT INTO `t_region` VALUES (1483, '长清区', '370113', '0531', 1476, 'Changqing'); +INSERT INTO `t_region` VALUES (1484, '平阴县', '370124', '0531', 1476, 'Pingyin'); +INSERT INTO `t_region` VALUES (1485, '济阳县', '370125', '0531', 1476, 'Jiyang'); +INSERT INTO `t_region` VALUES (1486, '商河县', '370126', '0531', 1476, 'Shanghe'); +INSERT INTO `t_region` VALUES (1487, '章丘区', '370114', '0531', 1476, 'Zhangqiu'); +INSERT INTO `t_region` VALUES (1488, '青岛市', '370200', '0532', 1475, 'Qingdao'); +INSERT INTO `t_region` VALUES (1489, '青岛市市辖区', '370201', '0532', 1488, 'Qingdao municipal'); +INSERT INTO `t_region` VALUES (1490, '市南区', '370202', '0532', 1488, 'Shinan'); +INSERT INTO `t_region` VALUES (1491, '市北区', '370203', '0532', 1488, 'shibei'); +INSERT INTO `t_region` VALUES (1492, '黄岛区', '370211', '0532', 1488, 'Huangdao'); +INSERT INTO `t_region` VALUES (1493, '崂山区', '370212', '0532', 1488, 'Laoshan'); +INSERT INTO `t_region` VALUES (1494, '李沧区', '370213', '0532', 1488, 'Licang'); +INSERT INTO `t_region` VALUES (1495, '城阳区', '370214', '0532', 1488, 'chengyang'); +INSERT INTO `t_region` VALUES (1496, '胶州市', '370281', '0532', 1488, 'jiaozhou city'); +INSERT INTO `t_region` VALUES (1497, '即墨市', '370282', '0532', 1488, 'Jimo City'); +INSERT INTO `t_region` VALUES (1498, '平度市', '370283', '0532', 1488, 'Pingdu City'); +INSERT INTO `t_region` VALUES (1499, '莱西市', '370285', '0532', 1488, 'Laixi City'); +INSERT INTO `t_region` VALUES (1500, '淄博市', '370300', '0533', 1475, 'Zibo'); +INSERT INTO `t_region` VALUES (1501, '淄博市市辖区', '370301', '0533', 1500, 'Zibo municipal'); +INSERT INTO `t_region` VALUES (1502, '淄川区', '370302', '0533', 1500, 'zichuan'); +INSERT INTO `t_region` VALUES (1503, '张店区', '370303', '0533', 1500, 'zhangdian'); +INSERT INTO `t_region` VALUES (1504, '博山区', '370304', '0533', 1500, 'Boshan'); +INSERT INTO `t_region` VALUES (1505, '临淄区', '370305', '0533', 1500, 'Linzi'); +INSERT INTO `t_region` VALUES (1506, '周村区', '370306', '0533', 1500, 'Zhoucun'); +INSERT INTO `t_region` VALUES (1507, '桓台县', '370321', '0533', 1500, 'Huantai'); +INSERT INTO `t_region` VALUES (1508, '高青县', '370322', '0533', 1500, 'Gaoqing'); +INSERT INTO `t_region` VALUES (1509, '沂源县', '370323', '0533', 1500, 'Yiyuan'); +INSERT INTO `t_region` VALUES (1510, '枣庄市', '370400', '0632', 1475, 'Zaozhuang'); +INSERT INTO `t_region` VALUES (1511, '枣庄市市辖区', '370401', '0632', 1510, 'Zaozhuang municipal'); +INSERT INTO `t_region` VALUES (1512, '市中区', '370402', '0632', 1510, 'Shizhong'); +INSERT INTO `t_region` VALUES (1513, '薛城区', '370403', '0632', 1510, 'xuecheng'); +INSERT INTO `t_region` VALUES (1514, '峄城区', '370404', '0632', 1510, 'Yicheng'); +INSERT INTO `t_region` VALUES (1515, '台儿庄区', '370405', '0632', 1510, 'Taierzhuang'); +INSERT INTO `t_region` VALUES (1516, '山亭区', '370406', '0632', 1510, 'shanting'); +INSERT INTO `t_region` VALUES (1517, '滕州市', '370481', '0632', 1510, 'Tengzhou City'); +INSERT INTO `t_region` VALUES (1518, '东营市', '370500', '0546', 1475, 'Dongying City'); +INSERT INTO `t_region` VALUES (1519, '东营市市辖区', '370501', '0546', 1518, 'Dongying municipal'); +INSERT INTO `t_region` VALUES (1520, '东营区', '370502', '0546', 1518, 'Dongying'); +INSERT INTO `t_region` VALUES (1521, '河口区', '370503', '0546', 1518, 'Hekou'); +INSERT INTO `t_region` VALUES (1522, '垦利区', '370505', '0546', 1518, 'Kenli'); +INSERT INTO `t_region` VALUES (1523, '利津县', '370522', '0546', 1518, 'Lijin'); +INSERT INTO `t_region` VALUES (1524, '广饶县', '370523', '0546', 1518, 'Guangrao'); +INSERT INTO `t_region` VALUES (1525, '烟台市', '370600', '0535', 1475, 'Yantai'); +INSERT INTO `t_region` VALUES (1526, '烟台市市辖区', '370601', '0535', 1525, 'Yantai municipal'); +INSERT INTO `t_region` VALUES (1527, '芝罘区', '370602', '0535', 1525, 'Zhifu'); +INSERT INTO `t_region` VALUES (1528, '福山区', '370611', '0535', 1525, 'fushan'); +INSERT INTO `t_region` VALUES (1529, '牟平区', '370612', '0535', 1525, 'Muping'); +INSERT INTO `t_region` VALUES (1530, '莱山区', '370613', '0535', 1525, 'Laishan'); +INSERT INTO `t_region` VALUES (1531, '长岛县', '370634', '0535', 1525, 'Changdao'); +INSERT INTO `t_region` VALUES (1532, '龙口市', '370681', '0535', 1525, 'Longkou City'); +INSERT INTO `t_region` VALUES (1533, '莱阳市', '370682', '0535', 1525, 'Laiyang City'); +INSERT INTO `t_region` VALUES (1534, '莱州市', '370683', '0535', 1525, 'Laizhou City'); +INSERT INTO `t_region` VALUES (1535, '蓬莱市', '370684', '0535', 1525, 'Penglai City'); +INSERT INTO `t_region` VALUES (1536, '招远市', '370685', '0535', 1525, 'Zhaoyuan City'); +INSERT INTO `t_region` VALUES (1537, '栖霞市', '370686', '0535', 1525, 'Qixia City'); +INSERT INTO `t_region` VALUES (1538, '海阳市', '370687', '0535', 1525, 'Haiyang'); +INSERT INTO `t_region` VALUES (1539, '潍坊市', '370700', '0536', 1475, 'Weifang'); +INSERT INTO `t_region` VALUES (1540, '潍坊市市辖区', '370701', '0536', 1539, 'Weifang municipal'); +INSERT INTO `t_region` VALUES (1541, '潍城区', '370702', '0536', 1539, 'Weicheng'); +INSERT INTO `t_region` VALUES (1542, '寒亭区', '370703', '0536', 1539, 'Hanting'); +INSERT INTO `t_region` VALUES (1543, '坊子区', '370704', '0536', 1539, 'fangzi'); +INSERT INTO `t_region` VALUES (1544, '奎文区', '370705', '0536', 1539, 'Kuiwen'); +INSERT INTO `t_region` VALUES (1545, '临朐县', '370724', '0536', 1539, 'Linqu'); +INSERT INTO `t_region` VALUES (1546, '昌乐县', '370725', '0536', 1539, 'Changle'); +INSERT INTO `t_region` VALUES (1547, '青州市', '370781', '0536', 1539, 'Qingzhou City'); +INSERT INTO `t_region` VALUES (1548, '诸城市', '370782', '0536', 1539, 'Various cities'); +INSERT INTO `t_region` VALUES (1549, '寿光市', '370783', '0536', 1539, 'Shouguang City'); +INSERT INTO `t_region` VALUES (1550, '安丘市', '370784', '0536', 1539, 'Anqiu'); +INSERT INTO `t_region` VALUES (1551, '高密市', '370785', '0536', 1539, 'Gaomi City'); +INSERT INTO `t_region` VALUES (1552, '昌邑市', '370786', '0536', 1539, 'Changyi City'); +INSERT INTO `t_region` VALUES (1553, '济宁市', '370800', '0537', 1475, 'Jining'); +INSERT INTO `t_region` VALUES (1554, '济宁市市辖区', '370801', '0537', 1553, 'Jining municipal'); +INSERT INTO `t_region` VALUES (1555, '任城区', '370811', '0537', 1553, 'Rencheng'); +INSERT INTO `t_region` VALUES (1556, '兖州区', '370812', '0537', 1553, 'Yanzhou'); +INSERT INTO `t_region` VALUES (1557, '微山县', '370826', '0537', 1553, 'Weishan'); +INSERT INTO `t_region` VALUES (1558, '鱼台县', '370827', '0537', 1553, 'Yutai'); +INSERT INTO `t_region` VALUES (1559, '金乡县', '370828', '0537', 1553, 'Jinxiang'); +INSERT INTO `t_region` VALUES (1560, '嘉祥县', '370829', '0537', 1553, 'Jiaxiang'); +INSERT INTO `t_region` VALUES (1561, '汶上县', '370830', '0537', 1553, 'Wenshang'); +INSERT INTO `t_region` VALUES (1562, '泗水县', '370831', '0537', 1553, 'Sishui'); +INSERT INTO `t_region` VALUES (1563, '梁山县', '370832', '0537', 1553, 'Liangshan'); +INSERT INTO `t_region` VALUES (1564, '曲阜市', '370881', '0537', 1553, 'Qufu City'); +INSERT INTO `t_region` VALUES (1565, '邹城市', '370883', '0537', 1553, 'Zoucheng'); +INSERT INTO `t_region` VALUES (1566, '泰安市', '370900', '0538', 1475, 'Tai\'an City'); +INSERT INTO `t_region` VALUES (1567, '泰安市市辖区', '370901', '0538', 1566, 'Tai\'an City'); +INSERT INTO `t_region` VALUES (1568, '泰山区', '370902', '0538', 1566, 'Taishan'); +INSERT INTO `t_region` VALUES (1569, '岱岳区', '370911', '0538', 1566, 'Daiyue'); +INSERT INTO `t_region` VALUES (1570, '宁阳县', '370921', '0538', 1566, 'Ningyang'); +INSERT INTO `t_region` VALUES (1571, '东平县', '370923', '0538', 1566, 'Dongping'); +INSERT INTO `t_region` VALUES (1572, '新泰市', '370982', '0538', 1566, 'Xintai city'); +INSERT INTO `t_region` VALUES (1573, '肥城市', '370983', '0538', 1566, 'Feicheng City'); +INSERT INTO `t_region` VALUES (1574, '威海市', '371000', '0631', 1475, 'Weihai'); +INSERT INTO `t_region` VALUES (1575, '威海市市辖区', '371001', '0631', 1574, 'Weihai municipal'); +INSERT INTO `t_region` VALUES (1576, '环翠区', '371002', '0631', 1574, 'huancui'); +INSERT INTO `t_region` VALUES (1577, '文登区', '371003', '0631', 1574, 'Wendeng'); +INSERT INTO `t_region` VALUES (1578, '荣成市', '371082', '0631', 1574, 'Rongcheng City'); +INSERT INTO `t_region` VALUES (1579, '乳山市', '371083', '0631', 1574, 'Rushan City'); +INSERT INTO `t_region` VALUES (1580, '日照市', '371100', '0633', 1475, 'Rizhao City'); +INSERT INTO `t_region` VALUES (1581, '日照市市辖区', '371101', '0633', 1580, 'Rizhao City'); +INSERT INTO `t_region` VALUES (1582, '东港区', '371102', '0633', 1580, 'Donggang'); +INSERT INTO `t_region` VALUES (1583, '岚山区', '371103', '0633', 1580, 'lanshan'); +INSERT INTO `t_region` VALUES (1584, '五莲县', '371121', '0633', 1580, 'Wulian'); +INSERT INTO `t_region` VALUES (1585, '莒县', '371122', '0633', 1580, 'Juxian'); +INSERT INTO `t_region` VALUES (1586, '莱芜市', '371200', '0634', 1475, 'Laiwu'); +INSERT INTO `t_region` VALUES (1587, '莱芜市市辖区', '371201', '0634', 1586, 'Laiwu municipal'); +INSERT INTO `t_region` VALUES (1588, '莱城区', '371202', '0634', 1586, 'Laicheng'); +INSERT INTO `t_region` VALUES (1589, '钢城区', '371203', '0634', 1586, 'Steel city'); +INSERT INTO `t_region` VALUES (1590, '临沂市', '371300', '0539', 1475, 'Linyi City'); +INSERT INTO `t_region` VALUES (1591, '临沂市市辖区', '371301', '0539', 1590, 'Linyi municipal'); +INSERT INTO `t_region` VALUES (1592, '兰山区', '371302', '0539', 1590, 'lanshan'); +INSERT INTO `t_region` VALUES (1593, '罗庄区', '371311', '0539', 1590, 'Luozhuang'); +INSERT INTO `t_region` VALUES (1594, '河东区', '371312', '0539', 1590, 'Hedong'); +INSERT INTO `t_region` VALUES (1595, '沂南县', '371321', '0539', 1590, 'Yinan'); +INSERT INTO `t_region` VALUES (1596, '郯城县', '371322', '0539', 1590, 'Tancheng'); +INSERT INTO `t_region` VALUES (1597, '沂水县', '371323', '0539', 1590, 'Yishui'); +INSERT INTO `t_region` VALUES (1598, '兰陵县', '371324', '0539', 1590, 'Lan Ling'); +INSERT INTO `t_region` VALUES (1599, '费县', '371325', '0539', 1590, 'Feixian'); +INSERT INTO `t_region` VALUES (1600, '平邑县', '371326', '0539', 1590, 'Pingyi'); +INSERT INTO `t_region` VALUES (1601, '莒南县', '371327', '0539', 1590, 'Junan'); +INSERT INTO `t_region` VALUES (1602, '蒙阴县', '371328', '0539', 1590, 'Mengyin'); +INSERT INTO `t_region` VALUES (1603, '临沭县', '371329', '0539', 1590, 'Linshu'); +INSERT INTO `t_region` VALUES (1604, '德州市', '371400', '0534', 1475, 'Dezhou'); +INSERT INTO `t_region` VALUES (1605, '德州市市辖区', '371401', '0534', 1604, 'Dezhou municipal'); +INSERT INTO `t_region` VALUES (1606, '德城区', '371402', '0534', 1604, 'De City'); +INSERT INTO `t_region` VALUES (1607, '陵城区', '371403', '0534', 1604, 'Mausoleum'); +INSERT INTO `t_region` VALUES (1608, '宁津县', '371422', '0534', 1604, 'Ningjin'); +INSERT INTO `t_region` VALUES (1609, '庆云县', '371423', '0534', 1604, 'Qingyun'); +INSERT INTO `t_region` VALUES (1610, '临邑县', '371424', '0534', 1604, 'Linyi'); +INSERT INTO `t_region` VALUES (1611, '齐河县', '371425', '0534', 1604, 'Qihe'); +INSERT INTO `t_region` VALUES (1612, '平原县', '371426', '0534', 1604, 'Pingyuan'); +INSERT INTO `t_region` VALUES (1613, '夏津县', '371427', '0534', 1604, 'Xiajin'); +INSERT INTO `t_region` VALUES (1614, '武城县', '371428', '0534', 1604, 'Wucheng'); +INSERT INTO `t_region` VALUES (1615, '乐陵市', '371481', '0534', 1604, 'Leling City'); +INSERT INTO `t_region` VALUES (1616, '禹城市', '371482', '0534', 1604, 'yucheng city'); +INSERT INTO `t_region` VALUES (1617, '聊城市', '371500', '0635', 1475, 'LiaoCheng'); +INSERT INTO `t_region` VALUES (1618, '聊城市市辖区', '371501', '0635', 1617, 'Liaocheng municipal'); +INSERT INTO `t_region` VALUES (1619, '东昌府区', '371502', '0635', 1617, 'Dongchangfu'); +INSERT INTO `t_region` VALUES (1620, '阳谷县', '371521', '0635', 1617, 'Yanggu'); +INSERT INTO `t_region` VALUES (1621, '莘县', '371522', '0635', 1617, 'Shenxian'); +INSERT INTO `t_region` VALUES (1622, '茌平县', '371523', '0635', 1617, 'Chiping'); +INSERT INTO `t_region` VALUES (1623, '东阿县', '371524', '0635', 1617, 'Dong’e'); +INSERT INTO `t_region` VALUES (1624, '冠县', '371525', '0635', 1617, 'Guanxian'); +INSERT INTO `t_region` VALUES (1625, '高唐县', '371526', '0635', 1617, 'Gaotang'); +INSERT INTO `t_region` VALUES (1626, '临清市', '371581', '0635', 1617, 'Linqing City'); +INSERT INTO `t_region` VALUES (1627, '滨州市', '371600', '0543', 1475, 'Binzhou City'); +INSERT INTO `t_region` VALUES (1628, '滨州市市辖区', '371601', '0543', 1627, 'Binzhou municipal'); +INSERT INTO `t_region` VALUES (1629, '滨城区', '371602', '0543', 1627, 'bincheng'); +INSERT INTO `t_region` VALUES (1630, '沾化区', '371603', '0543', 1627, 'Zhanhua'); +INSERT INTO `t_region` VALUES (1631, '惠民县', '371621', '0543', 1627, 'Huimin'); +INSERT INTO `t_region` VALUES (1632, '阳信县', '371622', '0543', 1627, 'Yangxin'); +INSERT INTO `t_region` VALUES (1633, '无棣县', '371623', '0543', 1627, 'Wudi'); +INSERT INTO `t_region` VALUES (1634, '博兴县', '371625', '0543', 1627, 'Boxing'); +INSERT INTO `t_region` VALUES (1635, '邹平县', '371626', '0543', 1627, 'Zouping'); +INSERT INTO `t_region` VALUES (1636, '菏泽市', '371700', '0530', 1475, 'HeZe'); +INSERT INTO `t_region` VALUES (1637, '菏泽市市辖区', '371701', '0530', 1636, 'Heze municipal'); +INSERT INTO `t_region` VALUES (1638, '牡丹区', '371702', '0530', 1636, 'Mudan'); +INSERT INTO `t_region` VALUES (1639, '曹县', '371721', '0530', 1636, 'Caoxian'); +INSERT INTO `t_region` VALUES (1640, '单县', '371722', '0530', 1636, 'Shanxian'); +INSERT INTO `t_region` VALUES (1641, '成武县', '371723', '0530', 1636, 'Chengwu'); +INSERT INTO `t_region` VALUES (1642, '巨野县', '371724', '0530', 1636, 'Juye'); +INSERT INTO `t_region` VALUES (1643, '郓城县', '371725', '0530', 1636, 'Yuncheng'); +INSERT INTO `t_region` VALUES (1644, '鄄城县', '371726', '0530', 1636, 'Juancheng'); +INSERT INTO `t_region` VALUES (1645, '定陶区', '371703', '0530', 1636, 'Dingtao'); +INSERT INTO `t_region` VALUES (1646, '东明县', '371728', '0530', 1636, 'Dongming'); +INSERT INTO `t_region` VALUES (1647, '河南省', '410000', '', 0, 'Henan Province '); +INSERT INTO `t_region` VALUES (1648, '郑州市', '410100', '0371', 1647, 'Zhengzhou'); +INSERT INTO `t_region` VALUES (1649, '郑州市市辖区', '410101', '0371', 1648, 'Zhengzhou municipal'); +INSERT INTO `t_region` VALUES (1650, '中原区', '410102', '0371', 1648, 'Zhongyuan'); +INSERT INTO `t_region` VALUES (1651, '二七区', '410103', '0371', 1648, 'erqi'); +INSERT INTO `t_region` VALUES (1652, '管城回族区', '410104', '0371', 1648, 'Guancheng Hui'); +INSERT INTO `t_region` VALUES (1653, '金水区', '410105', '0371', 1648, 'jinshui'); +INSERT INTO `t_region` VALUES (1654, '上街区', '410106', '0371', 1648, 'Upper Street area'); +INSERT INTO `t_region` VALUES (1655, '惠济区', '410108', '0371', 1648, 'Huiji'); +INSERT INTO `t_region` VALUES (1656, '中牟县', '410122', '0371', 1648, 'Zhongmou'); +INSERT INTO `t_region` VALUES (1657, '巩义市', '410181', '0371', 1648, 'Gongyi'); +INSERT INTO `t_region` VALUES (1658, '荥阳市', '410182', '0371', 1648, 'xingyang'); +INSERT INTO `t_region` VALUES (1659, '新密市', '410183', '0371', 1648, 'Xinmi'); +INSERT INTO `t_region` VALUES (1660, '新郑市', '410184', '0371', 1648, 'Xinzheng City'); +INSERT INTO `t_region` VALUES (1661, '登封市', '410185', '0371', 1648, 'Dengfeng'); +INSERT INTO `t_region` VALUES (1662, '开封市', '410200', '0378', 1647, 'Kaifeng'); +INSERT INTO `t_region` VALUES (1663, '开封市市辖区', '410201', '0378', 1662, 'Kaifeng City'); +INSERT INTO `t_region` VALUES (1664, '龙亭区', '410202', '0378', 1662, 'Longting'); +INSERT INTO `t_region` VALUES (1665, '顺河回族区', '410203', '0378', 1662, 'shunhe hui'); +INSERT INTO `t_region` VALUES (1666, '鼓楼区', '410204', '0378', 1662, 'gulou'); +INSERT INTO `t_region` VALUES (1667, '禹王台区', '410205', '0378', 1662, 'Yuwangtai'); +INSERT INTO `t_region` VALUES (1668, '祥符区', '410212', '0378', 1662, 'Auspicious symbol area'); +INSERT INTO `t_region` VALUES (1669, '杞县', '410221', '0378', 1662, 'Qixian'); +INSERT INTO `t_region` VALUES (1670, '通许县', '410222', '0378', 1662, 'Tongxu'); +INSERT INTO `t_region` VALUES (1671, '尉氏县', '410223', '0378', 1662, 'Weishi'); +INSERT INTO `t_region` VALUES (1672, '兰考县', '410225', '0378', 1662, 'Lankao'); +INSERT INTO `t_region` VALUES (1673, '洛阳市', '410300', '0379', 1647, 'Luoyang'); +INSERT INTO `t_region` VALUES (1674, '洛阳市市辖区', '410301', '0379', 1673, 'Luoyang municipal'); +INSERT INTO `t_region` VALUES (1675, '老城区', '410302', '0379', 1673, 'old town'); +INSERT INTO `t_region` VALUES (1676, '西工区', '410303', '0379', 1673, 'Xigong'); +INSERT INTO `t_region` VALUES (1677, '瀍河回族区', '410304', '0379', 1673, 'Hui Nationality Area'); +INSERT INTO `t_region` VALUES (1678, '涧西区', '410305', '0379', 1673, 'Jianxi'); +INSERT INTO `t_region` VALUES (1679, '吉利区', '410306', '0379', 1673, 'Jili'); +INSERT INTO `t_region` VALUES (1680, '洛龙区', '410311', '0379', 1673, 'Luolong'); +INSERT INTO `t_region` VALUES (1681, '孟津县', '410322', '0379', 1673, 'Hengjin'); +INSERT INTO `t_region` VALUES (1682, '新安县', '410323', '0379', 1673, 'Xin’an'); +INSERT INTO `t_region` VALUES (1683, '栾川县', '410324', '0379', 1673, 'Luanchuan'); +INSERT INTO `t_region` VALUES (1684, '嵩县', '410325', '0379', 1673, 'Songxian'); +INSERT INTO `t_region` VALUES (1685, '汝阳县', '410326', '0379', 1673, 'Ruyang'); +INSERT INTO `t_region` VALUES (1686, '宜阳县', '410327', '0379', 1673, 'Yiyang'); +INSERT INTO `t_region` VALUES (1687, '洛宁县', '410328', '0379', 1673, 'Luoning'); +INSERT INTO `t_region` VALUES (1688, '伊川县', '410329', '0379', 1673, 'Yichuan'); +INSERT INTO `t_region` VALUES (1689, '偃师市', '410381', '0379', 1673, 'Yanshi'); +INSERT INTO `t_region` VALUES (1690, '平顶山市', '410400', '0375', 1647, 'Pingdingshan'); +INSERT INTO `t_region` VALUES (1691, '平顶山市市辖区', '410401', '0375', 1690, 'Pingdingshan municipal'); +INSERT INTO `t_region` VALUES (1692, '新华区', '410402', '0375', 1690, 'Xinhua'); +INSERT INTO `t_region` VALUES (1693, '卫东区', '410403', '0375', 1690, 'Weidong'); +INSERT INTO `t_region` VALUES (1694, '石龙区', '410404', '0375', 1690, 'Shilong'); +INSERT INTO `t_region` VALUES (1695, '湛河区', '410411', '0375', 1690, 'Zhanhe'); +INSERT INTO `t_region` VALUES (1696, '宝丰县', '410421', '0375', 1690, 'Baofeng'); +INSERT INTO `t_region` VALUES (1697, '叶县', '410422', '0375', 1690, 'Yexian'); +INSERT INTO `t_region` VALUES (1698, '鲁山县', '410423', '0375', 1690, 'Lushan'); +INSERT INTO `t_region` VALUES (1699, '郏县', '410425', '0375', 1690, 'Jiaxian (ain Henan Province) '); +INSERT INTO `t_region` VALUES (1700, '舞钢市', '410481', '0375', 1690, 'Wugang City'); +INSERT INTO `t_region` VALUES (1701, '汝州市', '410482', '0375', 1690, 'Ruzhou'); +INSERT INTO `t_region` VALUES (1702, '安阳市', '410500', '0372', 1647, 'Anyang'); +INSERT INTO `t_region` VALUES (1703, '安阳市市辖区', '410501', '0372', 1702, 'Anyang municipal'); +INSERT INTO `t_region` VALUES (1704, '文峰区', '410502', '0372', 1702, 'Wenfeng'); +INSERT INTO `t_region` VALUES (1705, '北关区', '410503', '0372', 1702, 'Beiguan'); +INSERT INTO `t_region` VALUES (1706, '殷都区', '410505', '0372', 1702, 'Yindu'); +INSERT INTO `t_region` VALUES (1707, '龙安区', '410506', '0372', 1702, 'Long\'an'); +INSERT INTO `t_region` VALUES (1708, '安阳县', '410522', '0372', 1702, 'Anyang'); +INSERT INTO `t_region` VALUES (1709, '汤阴县', '410523', '0372', 1702, 'Tangyin'); +INSERT INTO `t_region` VALUES (1710, '滑县', '410526', '0372', 1702, 'Huaxian'); +INSERT INTO `t_region` VALUES (1711, '内黄县', '410527', '0372', 1702, 'Neihuang'); +INSERT INTO `t_region` VALUES (1712, '林州市', '410581', '0372', 1702, 'Linzhou City'); +INSERT INTO `t_region` VALUES (1713, '鹤壁市', '410600', '0392', 1647, 'Hebi'); +INSERT INTO `t_region` VALUES (1714, '鹤壁市市辖区', '410601', '0392', 1713, 'Hebi municipal'); +INSERT INTO `t_region` VALUES (1715, '鹤山区', '410602', '0392', 1713, 'Heshan'); +INSERT INTO `t_region` VALUES (1716, '山城区', '410603', '0392', 1713, 'Shancheng'); +INSERT INTO `t_region` VALUES (1717, '淇滨区', '410611', '0392', 1713, 'Qibin'); +INSERT INTO `t_region` VALUES (1718, '浚县', '410621', '0392', 1713, 'Xunxian (ain Henan Province) '); +INSERT INTO `t_region` VALUES (1719, '淇县', '410622', '0392', 1713, 'Qixian'); +INSERT INTO `t_region` VALUES (1720, '新乡市', '410700', '0373', 1647, 'Xinxiang'); +INSERT INTO `t_region` VALUES (1721, '新乡市市辖区', '410701', '0373', 1720, 'Xinxiang municipal'); +INSERT INTO `t_region` VALUES (1722, '红旗区', '410702', '0373', 1720, 'Hongqi'); +INSERT INTO `t_region` VALUES (1723, '卫滨区', '410703', '0373', 1720, 'Weibin'); +INSERT INTO `t_region` VALUES (1724, '凤泉区', '410704', '0373', 1720, 'Fengquan'); +INSERT INTO `t_region` VALUES (1725, '牧野区', '410711', '0373', 1720, 'Muye'); +INSERT INTO `t_region` VALUES (1726, '新乡县', '410721', '0373', 1720, 'Xinxiang'); +INSERT INTO `t_region` VALUES (1727, '获嘉县', '410724', '0373', 1720, 'Huojia'); +INSERT INTO `t_region` VALUES (1728, '原阳县', '410725', '0373', 1720, 'Yuanyang'); +INSERT INTO `t_region` VALUES (1729, '延津县', '410726', '0373', 1720, 'Yanjin'); +INSERT INTO `t_region` VALUES (1730, '封丘县', '410727', '0373', 1720, 'Fengqiu'); +INSERT INTO `t_region` VALUES (1731, '长垣县', '410728', '0373', 1720, 'Changyuan'); +INSERT INTO `t_region` VALUES (1732, '卫辉市', '410781', '0373', 1720, 'weihui city'); +INSERT INTO `t_region` VALUES (1733, '辉县市', '410782', '0373', 1720, 'huixian'); +INSERT INTO `t_region` VALUES (1734, '焦作市', '410800', '0391', 1647, 'Jiaozuo'); +INSERT INTO `t_region` VALUES (1735, '焦作市市辖区', '410801', '0391', 1734, 'Jiaozuo municipal'); +INSERT INTO `t_region` VALUES (1736, '解放区', '410802', '0391', 1734, 'liberated area '); +INSERT INTO `t_region` VALUES (1737, '中站区', '410803', '0391', 1734, 'Zhongzhan'); +INSERT INTO `t_region` VALUES (1738, '马村区', '410804', '0391', 1734, 'Macun'); +INSERT INTO `t_region` VALUES (1739, '山阳区', '410811', '0391', 1734, 'Shanyang'); +INSERT INTO `t_region` VALUES (1740, '修武县', '410821', '0391', 1734, 'Xiuwu'); +INSERT INTO `t_region` VALUES (1741, '博爱县', '410822', '0391', 1734, 'Bo’ai'); +INSERT INTO `t_region` VALUES (1742, '武陟县', '410823', '0391', 1734, 'Wuzhi'); +INSERT INTO `t_region` VALUES (1743, '温县', '410825', '0391', 1734, 'Wenxian'); +INSERT INTO `t_region` VALUES (1744, '沁阳市', '410882', '0391', 1734, 'Qinyang City'); +INSERT INTO `t_region` VALUES (1745, '孟州市', '410883', '0391', 1734, 'Mengzhou'); +INSERT INTO `t_region` VALUES (1746, '濮阳市', '410900', '0393', 1647, 'Puyang City'); +INSERT INTO `t_region` VALUES (1747, '濮阳市市辖区', '410901', '0393', 1746, 'Puyang municipal'); +INSERT INTO `t_region` VALUES (1748, '华龙区', '410902', '0393', 1746, 'Hualong'); +INSERT INTO `t_region` VALUES (1749, '清丰县', '410922', '0393', 1746, 'Qingfeng'); +INSERT INTO `t_region` VALUES (1750, '南乐县', '410923', '0393', 1746, 'Nanle'); +INSERT INTO `t_region` VALUES (1751, '范县', '410926', '0393', 1746, 'Fanxian'); +INSERT INTO `t_region` VALUES (1752, '台前县', '410927', '0393', 1746, 'Taiqian'); +INSERT INTO `t_region` VALUES (1753, '濮阳县', '410928', '0393', 1746, 'Puyang'); +INSERT INTO `t_region` VALUES (1754, '许昌市', '411000', '0374', 1647, 'Xuchang'); +INSERT INTO `t_region` VALUES (1755, '许昌市市辖区', '411001', '0374', 1754, 'Xuchang municipal'); +INSERT INTO `t_region` VALUES (1756, '魏都区', '411002', '0374', 1754, 'Weidu'); +INSERT INTO `t_region` VALUES (1757, '建安区', '411003', '0374', 1754, 'Kien An'); +INSERT INTO `t_region` VALUES (1758, '鄢陵县', '411024', '0374', 1754, 'Yanling'); +INSERT INTO `t_region` VALUES (1759, '襄城县', '411025', '0374', 1754, 'Xiangcheng'); +INSERT INTO `t_region` VALUES (1760, '禹州市', '411081', '0374', 1754, 'Yuzhou City'); +INSERT INTO `t_region` VALUES (1761, '长葛市', '411082', '0374', 1754, 'Changge City'); +INSERT INTO `t_region` VALUES (1762, '漯河市', '411100', '0395', 1647, 'Luohe'); +INSERT INTO `t_region` VALUES (1763, '漯河市市辖区', '411101', '0395', 1762, 'Luohe municipal'); +INSERT INTO `t_region` VALUES (1764, '源汇区', '411102', '0395', 1762, 'yuanhui'); +INSERT INTO `t_region` VALUES (1765, '郾城区', '411103', '0395', 1762, 'Yancheng'); +INSERT INTO `t_region` VALUES (1766, '召陵区', '411104', '0395', 1762, 'Shaoling'); +INSERT INTO `t_region` VALUES (1767, '舞阳县', '411121', '0395', 1762, 'Wuyang'); +INSERT INTO `t_region` VALUES (1768, '临颍县', '411122', '0395', 1762, 'Linying'); +INSERT INTO `t_region` VALUES (1769, '三门峡市', '411200', '0398', 1647, 'Sanmenxia'); +INSERT INTO `t_region` VALUES (1770, '三门峡市市辖区', '411201', '0398', 1769, 'Sanmenxia municipal'); +INSERT INTO `t_region` VALUES (1771, '湖滨区', '411202', '0398', 1769, 'Lakeside Area'); +INSERT INTO `t_region` VALUES (1772, '陕州区', '411203', '0398', 1769, 'Shanxi Prefecture'); +INSERT INTO `t_region` VALUES (1773, '渑池县', '411221', '0398', 1769, 'Mianchi'); +INSERT INTO `t_region` VALUES (1774, '卢氏县', '411224', '0398', 1769, 'Lushi'); +INSERT INTO `t_region` VALUES (1775, '义马市', '411281', '0398', 1769, 'Yima City'); +INSERT INTO `t_region` VALUES (1776, '灵宝市', '411282', '0398', 1769, 'Lingbao City'); +INSERT INTO `t_region` VALUES (1777, '南阳市', '411300', '0377', 1647, 'Nanyang'); +INSERT INTO `t_region` VALUES (1778, '南阳市市辖区', '411301', '0377', 1777, 'Nanyang municipal'); +INSERT INTO `t_region` VALUES (1779, '宛城区', '411302', '0377', 1777, 'wancheng'); +INSERT INTO `t_region` VALUES (1780, '卧龙区', '411303', '0377', 1777, 'Wolong'); +INSERT INTO `t_region` VALUES (1781, '南召县', '411321', '0377', 1777, 'Nanzhao'); +INSERT INTO `t_region` VALUES (1782, '方城县', '411322', '0377', 1777, 'Fangcheng'); +INSERT INTO `t_region` VALUES (1783, '西峡县', '411323', '0377', 1777, 'Xixia'); +INSERT INTO `t_region` VALUES (1784, '镇平县', '411324', '0377', 1777, 'Zhenping'); +INSERT INTO `t_region` VALUES (1785, '内乡县', '411325', '0377', 1777, 'Neixiang'); +INSERT INTO `t_region` VALUES (1786, '淅川县', '411326', '0377', 1777, 'Xichuan'); +INSERT INTO `t_region` VALUES (1787, '社旗县', '411327', '0377', 1777, 'Sheqi'); +INSERT INTO `t_region` VALUES (1788, '唐河县', '411328', '0377', 1777, 'Tanghe'); +INSERT INTO `t_region` VALUES (1789, '新野县', '411329', '0377', 1777, 'Xinye'); +INSERT INTO `t_region` VALUES (1790, '桐柏县', '411330', '0377', 1777, 'Tongbai'); +INSERT INTO `t_region` VALUES (1791, '邓州市', '411381', '0377', 1777, 'Dengzhou'); +INSERT INTO `t_region` VALUES (1792, '商丘市', '411400', '0370', 1647, 'Shangqiu'); +INSERT INTO `t_region` VALUES (1793, '商丘市市辖区', '411401', '0370', 1792, 'Shangqiu municipal'); +INSERT INTO `t_region` VALUES (1794, '梁园区', '411402', '0370', 1792, 'Beam Park'); +INSERT INTO `t_region` VALUES (1795, '睢阳区', '411403', '0370', 1792, 'Suiyang'); +INSERT INTO `t_region` VALUES (1796, '民权县', '411421', '0370', 1792, 'Minquan'); +INSERT INTO `t_region` VALUES (1797, '睢县', '411422', '0370', 1792, 'Suixian (ain Henan Province) '); +INSERT INTO `t_region` VALUES (1798, '宁陵县', '411423', '0370', 1792, 'Ningling'); +INSERT INTO `t_region` VALUES (1799, '柘城县', '411424', '0370', 1792, 'Zhecheng'); +INSERT INTO `t_region` VALUES (1800, '虞城县', '411425', '0370', 1792, 'Yucheng'); +INSERT INTO `t_region` VALUES (1801, '夏邑县', '411426', '0370', 1792, 'Xiayi'); +INSERT INTO `t_region` VALUES (1802, '永城市', '411481', '0370', 1792, 'Yongcheng'); +INSERT INTO `t_region` VALUES (1803, '信阳市', '411500', '0376', 1647, 'Xinyang'); +INSERT INTO `t_region` VALUES (1804, '信阳市市辖区', '411501', '0376', 1803, 'Xinyang municipal'); +INSERT INTO `t_region` VALUES (1805, '浉河区', '411502', '0376', 1803, 'The Shihe River'); +INSERT INTO `t_region` VALUES (1806, '平桥区', '411503', '0376', 1803, 'Pingqiao'); +INSERT INTO `t_region` VALUES (1807, '罗山县', '411521', '0376', 1803, 'Luoshan'); +INSERT INTO `t_region` VALUES (1808, '光山县', '411522', '0376', 1803, 'Guangshan'); +INSERT INTO `t_region` VALUES (1809, '新县', '411523', '0376', 1803, 'Xinxian'); +INSERT INTO `t_region` VALUES (1810, '商城县', '411524', '0376', 1803, 'Shangcheng'); +INSERT INTO `t_region` VALUES (1811, '固始县', '411525', '0376', 1803, 'Gushi'); +INSERT INTO `t_region` VALUES (1812, '潢川县', '411526', '0376', 1803, 'Huangchuan'); +INSERT INTO `t_region` VALUES (1813, '淮滨县', '411527', '0376', 1803, 'Huaibin'); +INSERT INTO `t_region` VALUES (1814, '息县', '411528', '0376', 1803, 'Xixian'); +INSERT INTO `t_region` VALUES (1815, '周口市', '411600', '0394', 1647, 'Zhoukou'); +INSERT INTO `t_region` VALUES (1816, '周口市市辖区', '411601', '0394', 1815, 'Zhoukou municipal'); +INSERT INTO `t_region` VALUES (1817, '川汇区', '411602', '0394', 1815, 'Chuanhui'); +INSERT INTO `t_region` VALUES (1818, '扶沟县', '411621', '0394', 1815, 'Fugou'); +INSERT INTO `t_region` VALUES (1819, '西华县', '411622', '0394', 1815, 'Xihua'); +INSERT INTO `t_region` VALUES (1820, '商水县', '411623', '0394', 1815, 'Shangshui'); +INSERT INTO `t_region` VALUES (1821, '沈丘县', '411624', '0394', 1815, 'Shenqiu'); +INSERT INTO `t_region` VALUES (1822, '郸城县', '411625', '0394', 1815, 'Dancheng'); +INSERT INTO `t_region` VALUES (1823, '淮阳县', '411626', '0394', 1815, 'Huaiyang'); +INSERT INTO `t_region` VALUES (1824, '太康县', '411627', '0394', 1815, 'Taikang'); +INSERT INTO `t_region` VALUES (1825, '鹿邑县', '411628', '0394', 1815, 'Luyi'); +INSERT INTO `t_region` VALUES (1826, '项城市', '411681', '0394', 1815, 'Xiangcheng city'); +INSERT INTO `t_region` VALUES (1827, '驻马店市', '411700', '0396', 1647, 'zhumadian'); +INSERT INTO `t_region` VALUES (1828, '驻马店市市辖区', '411701', '0396', 1827, 'Zhumadian municipal'); +INSERT INTO `t_region` VALUES (1829, '驿城区', '411702', '0396', 1827, 'Yicheng'); +INSERT INTO `t_region` VALUES (1830, '西平县', '411721', '0396', 1827, 'Xiping'); +INSERT INTO `t_region` VALUES (1831, '上蔡县', '411722', '0396', 1827, 'Shangcai'); +INSERT INTO `t_region` VALUES (1832, '平舆县', '411723', '0396', 1827, 'Pingyu'); +INSERT INTO `t_region` VALUES (1833, '正阳县', '411724', '0396', 1827, 'Zhengyang'); +INSERT INTO `t_region` VALUES (1834, '确山县', '411725', '0396', 1827, 'Queshan'); +INSERT INTO `t_region` VALUES (1835, '泌阳县', '411726', '0396', 1827, 'Biyang'); +INSERT INTO `t_region` VALUES (1836, '汝南县', '411727', '0396', 1827, 'Runan'); +INSERT INTO `t_region` VALUES (1837, '遂平县', '411728', '0396', 1827, 'Suiping'); +INSERT INTO `t_region` VALUES (1838, '新蔡县', '411729', '0396', 1827, 'Xincai'); +INSERT INTO `t_region` VALUES (1839, '济源市', '419001', '1391', 1827, 'Jiyuan City'); +INSERT INTO `t_region` VALUES (1840, '湖北省', '420000', '', 0, 'Hubei province '); +INSERT INTO `t_region` VALUES (1841, '武汉市', '420100', '027', 1840, 'Wuhan'); +INSERT INTO `t_region` VALUES (1842, '武汉市市辖区', '420101', '027', 1841, 'Wuhan municipal'); +INSERT INTO `t_region` VALUES (1843, '江岸区', '420102', '027', 1841, 'Riverside area'); +INSERT INTO `t_region` VALUES (1844, '江汉区', '420103', '027', 1841, 'Jianghan'); +INSERT INTO `t_region` VALUES (1845, '硚口区', '420104', '027', 1841, 'Mouth area'); +INSERT INTO `t_region` VALUES (1846, '汉阳区', '420105', '027', 1841, 'Hanyang'); +INSERT INTO `t_region` VALUES (1847, '武昌区', '420106', '027', 1841, 'Wuchang'); +INSERT INTO `t_region` VALUES (1848, '青山区', '420107', '027', 1841, 'Qingshan'); +INSERT INTO `t_region` VALUES (1849, '洪山区', '420111', '027', 1841, 'Hongshan'); +INSERT INTO `t_region` VALUES (1850, '东西湖区', '420112', '027', 1841, 'Dongxihu'); +INSERT INTO `t_region` VALUES (1851, '汉南区', '420113', '027', 1841, 'hannan'); +INSERT INTO `t_region` VALUES (1852, '蔡甸区', '420114', '027', 1841, 'Caidian'); +INSERT INTO `t_region` VALUES (1853, '江夏区', '420115', '027', 1841, 'jiangxia'); +INSERT INTO `t_region` VALUES (1854, '黄陂区', '420116', '027', 1841, 'Huangpi'); +INSERT INTO `t_region` VALUES (1855, '新洲区', '420117', '027', 1841, 'xinzhou'); +INSERT INTO `t_region` VALUES (1856, '黄石市', '420200', '0714', 1840, 'Huangshi'); +INSERT INTO `t_region` VALUES (1857, '黄石市市辖区', '420201', '0714', 1856, 'Huangshi municipal'); +INSERT INTO `t_region` VALUES (1858, '黄石港区', '420202', '0714', 1856, 'Huangshigang'); +INSERT INTO `t_region` VALUES (1859, '西塞山区', '420203', '0714', 1856, 'Xisaishan'); +INSERT INTO `t_region` VALUES (1860, '下陆区', '420204', '0714', 1856, 'Xialu'); +INSERT INTO `t_region` VALUES (1861, '铁山区', '420205', '0714', 1856, 'Tieshan'); +INSERT INTO `t_region` VALUES (1862, '阳新县', '420222', '0714', 1856, 'Yangxin'); +INSERT INTO `t_region` VALUES (1863, '大冶市', '420281', '0714', 1856, 'Daye'); +INSERT INTO `t_region` VALUES (1864, '十堰市', '420300', '0719', 1840, 'Shiyan'); +INSERT INTO `t_region` VALUES (1865, '十堰市市辖区', '420301', '0719', 1864, 'Shiyan municipal'); +INSERT INTO `t_region` VALUES (1866, '茅箭区', '420302', '0719', 1864, 'maojian'); +INSERT INTO `t_region` VALUES (1867, '张湾区', '420303', '0719', 1864, 'Zhangwan'); +INSERT INTO `t_region` VALUES (1868, '郧阳区', '420304', '0719', 1864, 'Yunyang'); +INSERT INTO `t_region` VALUES (1869, '郧西县', '420322', '0719', 1864, 'Xunxi'); +INSERT INTO `t_region` VALUES (1870, '竹山县', '420323', '0719', 1864, 'Zhushan'); +INSERT INTO `t_region` VALUES (1871, '竹溪县', '420324', '0719', 1864, 'Zhuxi'); +INSERT INTO `t_region` VALUES (1872, '房县', '420325', '0719', 1864, 'Fangxian'); +INSERT INTO `t_region` VALUES (1873, '丹江口市', '420381', '0719', 1864, 'Danjiangkou City'); +INSERT INTO `t_region` VALUES (1874, '宜昌市', '420500', '0717', 1840, 'Yichang'); +INSERT INTO `t_region` VALUES (1875, '宜昌市市辖区', '420501', '0717', 1874, 'Yichang municipal'); +INSERT INTO `t_region` VALUES (1876, '西陵区', '420502', '0717', 1874, 'Xiling'); +INSERT INTO `t_region` VALUES (1877, '伍家岗区', '420503', '0717', 1874, 'Wujiagang'); +INSERT INTO `t_region` VALUES (1878, '点军区', '420504', '0717', 1874, 'Dianjun'); +INSERT INTO `t_region` VALUES (1879, '猇亭区', '420505', '0717', 1874, 'Xiaoting'); +INSERT INTO `t_region` VALUES (1880, '夷陵区', '420506', '0717', 1874, 'yiling'); +INSERT INTO `t_region` VALUES (1881, '远安县', '420525', '0717', 1874, 'Yuan’an'); +INSERT INTO `t_region` VALUES (1882, '兴山县', '420526', '0717', 1874, 'Xingshan'); +INSERT INTO `t_region` VALUES (1883, '秭归县', '420527', '0717', 1874, 'Zigui'); +INSERT INTO `t_region` VALUES (1884, '长阳土家族自治县', '420528', '0717', 1874, 'changyang tujia autonomous'); +INSERT INTO `t_region` VALUES (1885, '五峰土家族自治县', '420529', '0717', 1874, 'Wufeng Tujia Autonomous'); +INSERT INTO `t_region` VALUES (1886, '宜都市', '420581', '0717', 1874, 'Yidu City'); +INSERT INTO `t_region` VALUES (1887, '当阳市', '420582', '0717', 1874, 'Dangyang City'); +INSERT INTO `t_region` VALUES (1888, '枝江市', '420583', '0717', 1874, 'Zhijiang'); +INSERT INTO `t_region` VALUES (1889, '襄阳市', '420600', '0710', 1840, 'Xiangyang'); +INSERT INTO `t_region` VALUES (1890, '襄阳市市辖区', '420601', '0710', 1889, 'Xiangyang municipal'); +INSERT INTO `t_region` VALUES (1891, '襄城区', '420602', '0710', 1889, 'Xiangcheng'); +INSERT INTO `t_region` VALUES (1892, '樊城区', '420606', '0710', 1889, 'Fancheng'); +INSERT INTO `t_region` VALUES (1893, '襄州区', '420607', '0710', 1889, 'Xiangzhou'); +INSERT INTO `t_region` VALUES (1894, '南漳县', '420624', '0710', 1889, 'Nanzhang'); +INSERT INTO `t_region` VALUES (1895, '谷城县', '420625', '0710', 1889, 'Gucheng'); +INSERT INTO `t_region` VALUES (1896, '保康县', '420626', '0710', 1889, 'Baokang'); +INSERT INTO `t_region` VALUES (1897, '老河口市', '420682', '0710', 1889, 'laohekou'); +INSERT INTO `t_region` VALUES (1898, '枣阳市', '420683', '0710', 1889, 'Zaoyang City'); +INSERT INTO `t_region` VALUES (1899, '宜城市', '420684', '0710', 1889, 'Yicheng City'); +INSERT INTO `t_region` VALUES (1900, '鄂州市', '420700', '0711', 1840, 'Ezhou City'); +INSERT INTO `t_region` VALUES (1901, '鄂州市市辖区', '420701', '0711', 1900, 'Ezhou municipal'); +INSERT INTO `t_region` VALUES (1902, '梁子湖区', '420702', '0711', 1900, 'Liangzihu'); +INSERT INTO `t_region` VALUES (1903, '华容区', '420703', '0711', 1900, 'Huarong'); +INSERT INTO `t_region` VALUES (1904, '鄂城区', '420704', '0711', 1900, 'Echeng'); +INSERT INTO `t_region` VALUES (1905, '荆门市', '420800', '0724', 1840, 'Jingmen City'); +INSERT INTO `t_region` VALUES (1906, '荆门市市辖区', '420801', '0724', 1905, 'Jingmen municipal'); +INSERT INTO `t_region` VALUES (1907, '东宝区', '420802', '0724', 1905, 'Dongbao'); +INSERT INTO `t_region` VALUES (1908, '掇刀区', '420804', '0724', 1905, 'Duodao'); +INSERT INTO `t_region` VALUES (1909, '京山县', '420821', '0724', 1905, 'Jingshan Count y '); +INSERT INTO `t_region` VALUES (1910, '沙洋县', '420822', '0724', 1905, 'shayang'); +INSERT INTO `t_region` VALUES (1911, '钟祥市', '420881', '0724', 1905, 'Zhongxiang'); +INSERT INTO `t_region` VALUES (1912, '孝感市', '420900', '0712', 1840, 'Xiaogan City'); +INSERT INTO `t_region` VALUES (1913, '孝感市市辖区', '420901', '0712', 1912, 'Xiaogan municipal'); +INSERT INTO `t_region` VALUES (1914, '孝南区', '420902', '0712', 1912, 'xiaonan'); +INSERT INTO `t_region` VALUES (1915, '孝昌县', '420921', '0712', 1912, 'Xiaochang'); +INSERT INTO `t_region` VALUES (1916, '大悟县', '420922', '0712', 1912, 'Dawu'); +INSERT INTO `t_region` VALUES (1917, '云梦县', '420923', '0712', 1912, 'Yunmeng'); +INSERT INTO `t_region` VALUES (1918, '应城市', '420981', '0712', 1912, 'City'); +INSERT INTO `t_region` VALUES (1919, '安陆市', '420982', '0712', 1912, 'anlu city'); +INSERT INTO `t_region` VALUES (1920, '汉川市', '420984', '0712', 1912, 'Hanchuan City'); +INSERT INTO `t_region` VALUES (1921, '荆州市', '421000', '0716', 1840, 'jingzhou'); +INSERT INTO `t_region` VALUES (1922, '荆州市市辖区', '421001', '0716', 1921, 'Jingzhou municipal'); +INSERT INTO `t_region` VALUES (1923, '沙市区', '421002', '0716', 1921, 'Sha City'); +INSERT INTO `t_region` VALUES (1924, '荆州区', '421003', '0716', 1921, 'Jingzhou'); +INSERT INTO `t_region` VALUES (1925, '公安县', '421022', '0716', 1921, 'Gong’an'); +INSERT INTO `t_region` VALUES (1926, '监利县', '421023', '0716', 1921, 'Jianli'); +INSERT INTO `t_region` VALUES (1927, '江陵县', '421024', '0716', 1921, 'Jiangling'); +INSERT INTO `t_region` VALUES (1928, '石首市', '421081', '0716', 1921, 'Shishou City'); +INSERT INTO `t_region` VALUES (1929, '洪湖市', '421083', '0716', 1921, 'honghu city'); +INSERT INTO `t_region` VALUES (1930, '松滋市', '421087', '0716', 1921, 'Songzi City'); +INSERT INTO `t_region` VALUES (1931, '黄冈市', '421100', '0713', 1840, 'Huanggang City'); +INSERT INTO `t_region` VALUES (1932, '黄冈市市辖区', '421101', '0713', 1931, 'Huanggang municipal'); +INSERT INTO `t_region` VALUES (1933, '黄州区', '421102', '0713', 1931, 'huangzhou'); +INSERT INTO `t_region` VALUES (1934, '团风县', '421121', '0713', 1931, 'tuanfeng'); +INSERT INTO `t_region` VALUES (1935, '红安县', '421122', '0713', 1931, 'Hong’an'); +INSERT INTO `t_region` VALUES (1936, '罗田县', '421123', '0713', 1931, 'Luotian'); +INSERT INTO `t_region` VALUES (1937, '英山县', '421124', '0713', 1931, 'Yingshan'); +INSERT INTO `t_region` VALUES (1938, '浠水县', '421125', '0713', 1931, 'Xishui'); +INSERT INTO `t_region` VALUES (1939, '蕲春县', '421126', '0713', 1931, 'Qichun'); +INSERT INTO `t_region` VALUES (1940, '黄梅县', '421127', '0713', 1931, 'Huangmei'); +INSERT INTO `t_region` VALUES (1941, '麻城市', '421181', '0713', 1931, 'Macheng'); +INSERT INTO `t_region` VALUES (1942, '武穴市', '421182', '0713', 1931, 'Wuxue'); +INSERT INTO `t_region` VALUES (1943, '咸宁市', '421200', '0715', 1840, 'Xianning'); +INSERT INTO `t_region` VALUES (1944, '咸宁市市辖区', '421201', '0715', 1943, 'Xianning municipal'); +INSERT INTO `t_region` VALUES (1945, '咸安区', '421202', '0715', 1943, 'Xian\'an'); +INSERT INTO `t_region` VALUES (1946, '嘉鱼县', '421221', '0715', 1943, 'Jiayu'); +INSERT INTO `t_region` VALUES (1947, '通城县', '421222', '0715', 1943, 'Tongcheng'); +INSERT INTO `t_region` VALUES (1948, '崇阳县', '421223', '0715', 1943, 'Chongyang'); +INSERT INTO `t_region` VALUES (1949, '通山县', '421224', '0715', 1943, 'Tongshan'); +INSERT INTO `t_region` VALUES (1950, '赤壁市', '421281', '0715', 1943, 'chibi city'); +INSERT INTO `t_region` VALUES (1951, '随州市', '421300', '0722', 1840, 'suizhou'); +INSERT INTO `t_region` VALUES (1952, '随州市市辖区', '421301', '0722', 1951, 'Suizhou municipal'); +INSERT INTO `t_region` VALUES (1953, '曾都区', '421303', '0722', 1951, 'Zengdu'); +INSERT INTO `t_region` VALUES (1954, '随县', '421321', '0722', 1951, 'Suixian'); +INSERT INTO `t_region` VALUES (1955, '广水市', '421381', '0722', 1951, 'Guangshui City'); +INSERT INTO `t_region` VALUES (1956, '恩施土家族苗族自治州', '422800', '0718', 1840, 'Enshi Tujia and Miao Autonomous Prefecture'); +INSERT INTO `t_region` VALUES (1957, '恩施市', '422801', '0718', 1956, 'Enshi City'); +INSERT INTO `t_region` VALUES (1958, '利川市', '422802', '0718', 1956, 'Lichuan city'); +INSERT INTO `t_region` VALUES (1959, '建始县', '422822', '0718', 1956, 'Jianshi'); +INSERT INTO `t_region` VALUES (1960, '巴东县', '422823', '0718', 1956, 'Badong'); +INSERT INTO `t_region` VALUES (1961, '宣恩县', '422825', '0718', 1956, 'Xuan’en'); +INSERT INTO `t_region` VALUES (1962, '咸丰县', '422826', '0718', 1956, 'Xianfeng'); +INSERT INTO `t_region` VALUES (1963, '来凤县', '422827', '0718', 1956, 'Laifeng'); +INSERT INTO `t_region` VALUES (1964, '鹤峰县', '422828', '0718', 1956, 'Hefeng'); +INSERT INTO `t_region` VALUES (1965, '仙桃市', '429004', '0728', 1956, 'Xiantao'); +INSERT INTO `t_region` VALUES (1966, '潜江市', '429005', '2728', 1956, 'Qianjiang'); +INSERT INTO `t_region` VALUES (1967, '天门市', '429006', '1728', 1956, 'Tianmen'); +INSERT INTO `t_region` VALUES (1968, '神农架林区', '429021', '1719', 1956, 'Shennongjia Forestry'); +INSERT INTO `t_region` VALUES (1969, '湖南省', '430000', '', 0, 'Hunan Province '); +INSERT INTO `t_region` VALUES (1970, '长沙市', '430100', '0731', 1969, 'Changsha'); +INSERT INTO `t_region` VALUES (1971, '长沙市市辖区', '430101', '0731', 1970, 'Changsha municipal'); +INSERT INTO `t_region` VALUES (1972, '芙蓉区', '430102', '0731', 1970, 'furong'); +INSERT INTO `t_region` VALUES (1973, '天心区', '430103', '0731', 1970, 'Tianxin'); +INSERT INTO `t_region` VALUES (1974, '岳麓区', '430104', '0731', 1970, 'Yuelu'); +INSERT INTO `t_region` VALUES (1975, '开福区', '430105', '0731', 1970, 'kaifu'); +INSERT INTO `t_region` VALUES (1976, '雨花区', '430111', '0731', 1970, 'Yuhua'); +INSERT INTO `t_region` VALUES (1977, '望城区', '430112', '0731', 1970, 'Wangcheng'); +INSERT INTO `t_region` VALUES (1978, '长沙县', '430121', '0731', 1970, 'Changsha'); +INSERT INTO `t_region` VALUES (1979, '宁乡市', '430124', '0731', 1970, 'Ningxiang City'); +INSERT INTO `t_region` VALUES (1980, '浏阳市', '430181', '0731', 1970, 'Liuyang City'); +INSERT INTO `t_region` VALUES (1981, '株洲市', '430200', '0733', 1969, 'Zhuzhou City'); +INSERT INTO `t_region` VALUES (1982, '株洲市市辖区', '430201', '0733', 1981, 'Zhuzhou municipal'); +INSERT INTO `t_region` VALUES (1983, '荷塘区', '430202', '0733', 1981, 'Hetang'); +INSERT INTO `t_region` VALUES (1984, '芦淞区', '430203', '0733', 1981, 'Lusong'); +INSERT INTO `t_region` VALUES (1985, '石峰区', '430204', '0733', 1981, 'Shifeng'); +INSERT INTO `t_region` VALUES (1986, '天元区', '430211', '0733', 1981, 'Tianyuan'); +INSERT INTO `t_region` VALUES (1987, '株洲县', '430221', '0733', 1981, 'Zhuzhou'); +INSERT INTO `t_region` VALUES (1988, '攸县', '430223', '0733', 1981, 'Youxian'); +INSERT INTO `t_region` VALUES (1989, '茶陵县', '430224', '0733', 1981, 'Chaling'); +INSERT INTO `t_region` VALUES (1990, '炎陵县', '430225', '0733', 1981, 'Yanling'); +INSERT INTO `t_region` VALUES (1991, '醴陵市', '430281', '0733', 1981, 'Liling City'); +INSERT INTO `t_region` VALUES (1992, '湘潭市', '430300', '0732', 1969, 'Xiangtan'); +INSERT INTO `t_region` VALUES (1993, '湘潭市市辖区', '430301', '0732', 1992, 'Xiangtan municipal'); +INSERT INTO `t_region` VALUES (1994, '雨湖区', '430302', '0732', 1992, 'Yuhu'); +INSERT INTO `t_region` VALUES (1995, '岳塘区', '430304', '0732', 1992, 'Yuetang'); +INSERT INTO `t_region` VALUES (1996, '湘潭县', '430321', '0732', 1992, 'Xiangtan'); +INSERT INTO `t_region` VALUES (1997, '湘乡市', '430381', '0732', 1992, 'Xiangxiang'); +INSERT INTO `t_region` VALUES (1998, '韶山市', '430382', '0732', 1992, 'Shaoshan City'); +INSERT INTO `t_region` VALUES (1999, '衡阳市', '430400', '0734', 1969, ''); +INSERT INTO `t_region` VALUES (2000, '衡阳市市辖区', '430401', '0734', 1999, ''); +INSERT INTO `t_region` VALUES (2001, '珠晖区', '430405', '0734', 1999, 'Zhuhui'); +INSERT INTO `t_region` VALUES (2002, '雁峰区', '430406', '0734', 1999, 'Yanfeng'); +INSERT INTO `t_region` VALUES (2003, '石鼓区', '430407', '0734', 1999, 'Shigu'); +INSERT INTO `t_region` VALUES (2004, '蒸湘区', '430408', '0734', 1999, 'Zhengxiang'); +INSERT INTO `t_region` VALUES (2005, '南岳区', '430412', '0734', 1999, 'Nanyue'); +INSERT INTO `t_region` VALUES (2006, '衡阳县', '430421', '0734', 1999, ''); +INSERT INTO `t_region` VALUES (2007, '衡南县', '430422', '0734', 1999, ''); +INSERT INTO `t_region` VALUES (2008, '衡山县', '430423', '0734', 1999, ''); +INSERT INTO `t_region` VALUES (2009, '衡东县', '430424', '0734', 1999, ''); +INSERT INTO `t_region` VALUES (2010, '祁东县', '430426', '0734', 1999, 'Qidong'); +INSERT INTO `t_region` VALUES (2011, '耒阳市', '430481', '0734', 1999, 'Leiyang City'); +INSERT INTO `t_region` VALUES (2012, '常宁市', '430482', '0734', 1999, 'Changning City'); +INSERT INTO `t_region` VALUES (2013, '邵阳市', '430500', '0739', 1969, 'Shaoyang'); +INSERT INTO `t_region` VALUES (2014, '邵阳市市辖区', '430501', '0739', 2013, 'Shaoyang municipal'); +INSERT INTO `t_region` VALUES (2015, '双清区', '430502', '0739', 2013, 'Shuangqing'); +INSERT INTO `t_region` VALUES (2016, '大祥区', '430503', '0739', 2013, 'Daxiang'); +INSERT INTO `t_region` VALUES (2017, '北塔区', '430511', '0739', 2013, 'Beita'); +INSERT INTO `t_region` VALUES (2018, '邵东县', '430521', '0739', 2013, 'Shaodong'); +INSERT INTO `t_region` VALUES (2019, '新邵县', '430522', '0739', 2013, 'Xinshao'); +INSERT INTO `t_region` VALUES (2020, '邵阳县', '430523', '0739', 2013, 'Shaoyang'); +INSERT INTO `t_region` VALUES (2021, '隆回县', '430524', '0739', 2013, 'Longhui'); +INSERT INTO `t_region` VALUES (2022, '洞口县', '430525', '0739', 2013, 'Dongkou'); +INSERT INTO `t_region` VALUES (2023, '绥宁县', '430527', '0739', 2013, 'Suining'); +INSERT INTO `t_region` VALUES (2024, '新宁县', '430528', '0739', 2013, 'Xinning'); +INSERT INTO `t_region` VALUES (2025, '城步苗族自治县', '430529', '0739', 2013, 'Miao Autonomousof Chengbu '); +INSERT INTO `t_region` VALUES (2026, '武冈市', '430581', '0739', 2013, 'wugang city'); +INSERT INTO `t_region` VALUES (2027, '岳阳市', '430600', '0730', 1969, 'Yueyang City'); +INSERT INTO `t_region` VALUES (2028, '岳阳市市辖区', '430601', '0730', 2027, 'Yueyang municipal'); +INSERT INTO `t_region` VALUES (2029, '岳阳楼区', '430602', '0730', 2027, 'Yueyanglou'); +INSERT INTO `t_region` VALUES (2030, '云溪区', '430603', '0730', 2027, 'Yunxi'); +INSERT INTO `t_region` VALUES (2031, '君山区', '430611', '0730', 2027, 'Junshan'); +INSERT INTO `t_region` VALUES (2032, '岳阳县', '430621', '0730', 2027, 'Yueyang'); +INSERT INTO `t_region` VALUES (2033, '华容县', '430623', '0730', 2027, 'Huarong'); +INSERT INTO `t_region` VALUES (2034, '湘阴县', '430624', '0730', 2027, 'Xiangyin'); +INSERT INTO `t_region` VALUES (2035, '平江县', '430626', '0730', 2027, 'Pingjiang'); +INSERT INTO `t_region` VALUES (2036, '汨罗市', '430681', '0730', 2027, 'miluo city'); +INSERT INTO `t_region` VALUES (2037, '临湘市', '430682', '0730', 2027, 'Linxiang City'); +INSERT INTO `t_region` VALUES (2038, '常德市', '430700', '0736', 1969, 'Changde'); +INSERT INTO `t_region` VALUES (2039, '常德市市辖区', '430701', '0736', 2038, 'Changde municipal'); +INSERT INTO `t_region` VALUES (2040, '武陵区', '430702', '0736', 2038, 'Wuling'); +INSERT INTO `t_region` VALUES (2041, '鼎城区', '430703', '0736', 2038, 'Dingcheng'); +INSERT INTO `t_region` VALUES (2042, '安乡县', '430721', '0736', 2038, 'Anxiang'); +INSERT INTO `t_region` VALUES (2043, '汉寿县', '430722', '0736', 2038, 'Hanshou'); +INSERT INTO `t_region` VALUES (2044, '澧县', '430723', '0736', 2038, 'Lixian'); +INSERT INTO `t_region` VALUES (2045, '临澧县', '430724', '0736', 2038, 'Linli'); +INSERT INTO `t_region` VALUES (2046, '桃源县', '430725', '0736', 2038, 'Taoyuan'); +INSERT INTO `t_region` VALUES (2047, '石门县', '430726', '0736', 2038, 'Shimen'); +INSERT INTO `t_region` VALUES (2048, '津市市', '430781', '0736', 2038, 'Jinshi City'); +INSERT INTO `t_region` VALUES (2049, '张家界市', '430800', '0744', 1969, 'Zhangjiajie City'); +INSERT INTO `t_region` VALUES (2050, '张家界市市辖区', '430801', '0744', 2049, 'Zhangjiajie municipal'); +INSERT INTO `t_region` VALUES (2051, '永定区', '430802', '0744', 2049, 'Yongding'); +INSERT INTO `t_region` VALUES (2052, '武陵源区', '430811', '0744', 2049, 'Wulingyuan'); +INSERT INTO `t_region` VALUES (2053, '慈利县', '430821', '0744', 2049, 'Cili'); +INSERT INTO `t_region` VALUES (2054, '桑植县', '430822', '0744', 2049, 'Sangzhi'); +INSERT INTO `t_region` VALUES (2055, '益阳市', '430900', '0737', 1969, 'Yiyang'); +INSERT INTO `t_region` VALUES (2056, '益阳市市辖区', '430901', '0737', 2055, 'Yiyang municipal'); +INSERT INTO `t_region` VALUES (2057, '资阳区', '430902', '0737', 2055, 'Ziyang'); +INSERT INTO `t_region` VALUES (2058, '赫山区', '430903', '0737', 2055, 'Heshan'); +INSERT INTO `t_region` VALUES (2059, '南县', '430921', '0737', 2055, 'Nanxian'); +INSERT INTO `t_region` VALUES (2060, '桃江县', '430922', '0737', 2055, 'Taojiang'); +INSERT INTO `t_region` VALUES (2061, '安化县', '430923', '0737', 2055, 'Anhua'); +INSERT INTO `t_region` VALUES (2062, '沅江市', '430981', '0737', 2055, 'yuanjiang city'); +INSERT INTO `t_region` VALUES (2063, '郴州市', '431000', '0735', 1969, 'Chenzhou City'); +INSERT INTO `t_region` VALUES (2064, '郴州市市辖区', '431001', '0735', 2063, 'Chenzhou municipal'); +INSERT INTO `t_region` VALUES (2065, '北湖区', '431002', '0735', 2063, 'Beihu'); +INSERT INTO `t_region` VALUES (2066, '苏仙区', '431003', '0735', 2063, 'Suxian'); +INSERT INTO `t_region` VALUES (2067, '桂阳县', '431021', '0735', 2063, 'Guiyang'); +INSERT INTO `t_region` VALUES (2068, '宜章县', '431022', '0735', 2063, 'Yizhang'); +INSERT INTO `t_region` VALUES (2069, '永兴县', '431023', '0735', 2063, 'Yongxing'); +INSERT INTO `t_region` VALUES (2070, '嘉禾县', '431024', '0735', 2063, 'Jiahe'); +INSERT INTO `t_region` VALUES (2071, '临武县', '431025', '0735', 2063, 'Linwu'); +INSERT INTO `t_region` VALUES (2072, '汝城县', '431026', '0735', 2063, 'Rucheng'); +INSERT INTO `t_region` VALUES (2073, '桂东县', '431027', '0735', 2063, 'Guidong'); +INSERT INTO `t_region` VALUES (2074, '安仁县', '431028', '0735', 2063, 'Anren'); +INSERT INTO `t_region` VALUES (2075, '资兴市', '431081', '0735', 2063, 'Zixing City'); +INSERT INTO `t_region` VALUES (2076, '永州市', '431100', '0746', 1969, 'yongzhou city'); +INSERT INTO `t_region` VALUES (2077, '永州市市辖区', '431101', '0746', 2076, 'Yongzhou municipal'); +INSERT INTO `t_region` VALUES (2078, '零陵区', '431102', '0746', 2076, 'Lingling'); +INSERT INTO `t_region` VALUES (2079, '冷水滩区', '431103', '0746', 2076, 'Lengshuitan'); +INSERT INTO `t_region` VALUES (2080, '祁阳县', '431121', '0746', 2076, 'Qiyang'); +INSERT INTO `t_region` VALUES (2081, '东安县', '431122', '0746', 2076, 'Dong’an'); +INSERT INTO `t_region` VALUES (2082, '双牌县', '431123', '0746', 2076, 'Shuangpai'); +INSERT INTO `t_region` VALUES (2083, '道县', '431124', '0746', 2076, 'Daoxian'); +INSERT INTO `t_region` VALUES (2084, '江永县', '431125', '0746', 2076, 'Jiangyong'); +INSERT INTO `t_region` VALUES (2085, '宁远县', '431126', '0746', 2076, 'Ningyuan'); +INSERT INTO `t_region` VALUES (2086, '蓝山县', '431127', '0746', 2076, 'Lanshan'); +INSERT INTO `t_region` VALUES (2087, '新田县', '431128', '0746', 2076, 'Xintian'); +INSERT INTO `t_region` VALUES (2088, '江华瑶族自治县', '431129', '0746', 2076, 'Yao Autonomousof Jianghua '); +INSERT INTO `t_region` VALUES (2089, '怀化市', '431200', '0745', 1969, 'huaihua'); +INSERT INTO `t_region` VALUES (2090, '怀化市市辖区', '431201', '0745', 2089, 'Huaihua municipal'); +INSERT INTO `t_region` VALUES (2091, '鹤城区', '431202', '0745', 2089, 'Hecheng'); +INSERT INTO `t_region` VALUES (2092, '中方县', '431221', '0745', 2089, 'Chinese'); +INSERT INTO `t_region` VALUES (2093, '沅陵县', '431222', '0745', 2089, 'Yuanling'); +INSERT INTO `t_region` VALUES (2094, '辰溪县', '431223', '0745', 2089, 'Chenxi'); +INSERT INTO `t_region` VALUES (2095, '溆浦县', '431224', '0745', 2089, 'Xupu'); +INSERT INTO `t_region` VALUES (2096, '会同县', '431225', '0745', 2089, 'Huitong'); +INSERT INTO `t_region` VALUES (2097, '麻阳苗族自治县', '431226', '0745', 2089, 'Mayang Miao Autonomous'); +INSERT INTO `t_region` VALUES (2098, '新晃侗族自治县', '431227', '0745', 2089, 'Dong Autonomousof Xinhuang '); +INSERT INTO `t_region` VALUES (2099, '芷江侗族自治县', '431228', '0745', 2089, 'Zhijiang Dong Autonomous'); +INSERT INTO `t_region` VALUES (2100, '靖州苗族侗族自治县', '431229', '0745', 2089, 'Jingzhou Miao and Dong Autonomous'); +INSERT INTO `t_region` VALUES (2101, '通道侗族自治县', '431230', '0745', 2089, 'Dong Autonomousof Tongdao '); +INSERT INTO `t_region` VALUES (2102, '洪江市', '431281', '0745', 2089, 'hongjiang city'); +INSERT INTO `t_region` VALUES (2103, '娄底市', '431300', '0738', 1969, 'Loudi City'); +INSERT INTO `t_region` VALUES (2104, '娄底市市辖区', '431301', '0738', 2103, 'Loudi municipal'); +INSERT INTO `t_region` VALUES (2105, '娄星区', '431302', '0738', 2103, 'Louxing'); +INSERT INTO `t_region` VALUES (2106, '双峰县', '431321', '0738', 2103, 'Shuangfeng'); +INSERT INTO `t_region` VALUES (2107, '新化县', '431322', '0738', 2103, 'Xinhua'); +INSERT INTO `t_region` VALUES (2108, '冷水江市', '431381', '0738', 2103, 'Lengshuijiang'); +INSERT INTO `t_region` VALUES (2109, '涟源市', '431382', '0738', 2103, 'lianyuan city'); +INSERT INTO `t_region` VALUES (2110, '湘西土家族苗族自治州', '433100', '0743', 1969, 'Tujia-Miao Autonomous Prefecture of Xiangxi '); +INSERT INTO `t_region` VALUES (2111, '吉首市', '433101', '0743', 2110, 'jishou city'); +INSERT INTO `t_region` VALUES (2112, '泸溪县', '433122', '0743', 2110, 'Luxi'); +INSERT INTO `t_region` VALUES (2113, '凤凰县', '433123', '0743', 2110, 'Phoenix'); +INSERT INTO `t_region` VALUES (2114, '花垣县', '433124', '0743', 2110, 'Huayuan'); +INSERT INTO `t_region` VALUES (2115, '保靖县', '433125', '0743', 2110, 'Baojing'); +INSERT INTO `t_region` VALUES (2116, '古丈县', '433126', '0743', 2110, 'Guzhang'); +INSERT INTO `t_region` VALUES (2117, '永顺县', '433127', '0743', 2110, 'Yongshun'); +INSERT INTO `t_region` VALUES (2118, '龙山县', '433130', '0743', 2110, 'Longshan'); +INSERT INTO `t_region` VALUES (2119, '广东省', '440000', '', 0, 'Guangdong Province '); +INSERT INTO `t_region` VALUES (2120, '广州市', '440100', '020', 2119, 'Guangzhou'); +INSERT INTO `t_region` VALUES (2121, '广州市市辖区', '440101', '020', 2120, 'Guangzhou municipal'); +INSERT INTO `t_region` VALUES (2122, '荔湾区', '440103', '020', 2120, 'Liwan'); +INSERT INTO `t_region` VALUES (2123, '越秀区', '440104', '020', 2120, 'Yuexiu'); +INSERT INTO `t_region` VALUES (2124, '海珠区', '440105', '020', 2120, 'Haizhuqu'); +INSERT INTO `t_region` VALUES (2125, '天河区', '440106', '020', 2120, 'Tianhe'); +INSERT INTO `t_region` VALUES (2126, '白云区', '440111', '020', 2120, 'Baiyun'); +INSERT INTO `t_region` VALUES (2127, '黄埔区', '440112', '020', 2120, '[地名] [新加坡] Whampoa Estate '); +INSERT INTO `t_region` VALUES (2128, '番禺区', '440113', '020', 2120, 'Panyu'); +INSERT INTO `t_region` VALUES (2129, '花都区', '440114', '020', 2120, 'Huadu area'); +INSERT INTO `t_region` VALUES (2130, '南沙区', '440115', '020', 2120, 'Nansha'); +INSERT INTO `t_region` VALUES (2131, '从化区', '440117', '020', 2120, 'Conghua'); +INSERT INTO `t_region` VALUES (2132, '增城区', '440118', '020', 2120, 'Zengcheng'); +INSERT INTO `t_region` VALUES (2133, '韶关市', '440200', '0751', 2119, 'Shaoguan'); +INSERT INTO `t_region` VALUES (2134, '韶关市市辖区', '440201', '0751', 2133, 'Shaoguan municipal'); +INSERT INTO `t_region` VALUES (2135, '武江区', '440203', '0751', 2133, 'wujiang'); +INSERT INTO `t_region` VALUES (2136, '浈江区', '440204', '0751', 2133, 'Zhenjiang'); +INSERT INTO `t_region` VALUES (2137, '曲江区', '440205', '0751', 2133, 'Qujiang'); +INSERT INTO `t_region` VALUES (2138, '始兴县', '440222', '0751', 2133, 'Shixing'); +INSERT INTO `t_region` VALUES (2139, '仁化县', '440224', '0751', 2133, 'Renhua'); +INSERT INTO `t_region` VALUES (2140, '翁源县', '440229', '0751', 2133, 'Wengyuan'); +INSERT INTO `t_region` VALUES (2141, '乳源瑶族自治县', '440232', '0751', 2133, 'Yao Autonomousof Ruyuan '); +INSERT INTO `t_region` VALUES (2142, '新丰县', '440233', '0751', 2133, 'Xinfeng'); +INSERT INTO `t_region` VALUES (2143, '乐昌市', '440281', '0751', 2133, 'lechang city'); +INSERT INTO `t_region` VALUES (2144, '南雄市', '440282', '0751', 2133, 'Nanxiong City'); +INSERT INTO `t_region` VALUES (2145, '深圳市', '440300', '0755', 2119, 'Shenzhen City'); +INSERT INTO `t_region` VALUES (2146, '深圳市市辖区', '440301', '0755', 2145, 'Shenzhen municipal'); +INSERT INTO `t_region` VALUES (2147, '罗湖区', '440303', '0755', 2145, 'luohu'); +INSERT INTO `t_region` VALUES (2148, '福田区', '440304', '0755', 2145, 'Futian'); +INSERT INTO `t_region` VALUES (2149, '南山区', '440305', '0755', 2145, 'Nanshan'); +INSERT INTO `t_region` VALUES (2150, '宝安区', '440306', '0755', 2145, 'Baoan'); +INSERT INTO `t_region` VALUES (2151, '龙岗区', '440307', '0755', 2145, 'longgang'); +INSERT INTO `t_region` VALUES (2152, '盐田区', '440308', '0755', 2145, 'Yantian'); +INSERT INTO `t_region` VALUES (2153, '龙华区', '440309', '0755', 2145, 'Longhua'); +INSERT INTO `t_region` VALUES (2154, '坪山区', '440310', '0755', 2145, 'Pingshan'); +INSERT INTO `t_region` VALUES (2155, '珠海市', '440400', '0756', 2119, 'Zhuhai City'); +INSERT INTO `t_region` VALUES (2156, '珠海市市辖区', '440401', '0756', 2155, 'Zhuhai municipal'); +INSERT INTO `t_region` VALUES (2157, '香洲区', '440402', '0756', 2155, 'Xiangzhou'); +INSERT INTO `t_region` VALUES (2158, '斗门区', '440403', '0756', 2155, 'Doumen'); +INSERT INTO `t_region` VALUES (2159, '金湾区', '440404', '0756', 2155, 'Jinwan'); +INSERT INTO `t_region` VALUES (2160, '汕头市', '440500', '0754', 2119, 'Shantou'); +INSERT INTO `t_region` VALUES (2161, '汕头市市辖区', '440501', '0754', 2160, 'Shantou municipal'); +INSERT INTO `t_region` VALUES (2162, '龙湖区', '440507', '0754', 2160, 'Longhu'); +INSERT INTO `t_region` VALUES (2163, '金平区', '440511', '0754', 2160, 'Jinping'); +INSERT INTO `t_region` VALUES (2164, '濠江区', '440512', '0754', 2160, 'haojiang'); +INSERT INTO `t_region` VALUES (2165, '潮阳区', '440513', '0754', 2160, 'Chaoyang'); +INSERT INTO `t_region` VALUES (2166, '潮南区', '440514', '0754', 2160, 'South Chaonan area'); +INSERT INTO `t_region` VALUES (2167, '澄海区', '440515', '0754', 2160, 'Chenghai'); +INSERT INTO `t_region` VALUES (2168, '南澳县', '440523', '0754', 2160, 'Nan’ao'); +INSERT INTO `t_region` VALUES (2169, '佛山市', '440600', '0757', 2119, 'Foshan'); +INSERT INTO `t_region` VALUES (2170, '佛山市市辖区', '440601', '0757', 2169, 'Foshan municipal'); +INSERT INTO `t_region` VALUES (2171, '禅城区', '440604', '0757', 2169, 'Chancheng'); +INSERT INTO `t_region` VALUES (2172, '南海区', '440605', '0757', 2169, 'South China Sea Area'); +INSERT INTO `t_region` VALUES (2173, '顺德区', '440606', '0757', 2169, 'Shunde'); +INSERT INTO `t_region` VALUES (2174, '三水区', '440607', '0757', 2169, 'sanshui'); +INSERT INTO `t_region` VALUES (2175, '高明区', '440608', '0757', 2169, 'Gaoming'); +INSERT INTO `t_region` VALUES (2176, '江门市', '440700', '0750', 2119, 'Jiangmen'); +INSERT INTO `t_region` VALUES (2177, '江门市市辖区', '440701', '0750', 2176, 'Jiangmen municipal'); +INSERT INTO `t_region` VALUES (2178, '蓬江区', '440703', '0750', 2176, 'Pengjiang'); +INSERT INTO `t_region` VALUES (2179, '江海区', '440704', '0750', 2176, 'jianghai'); +INSERT INTO `t_region` VALUES (2180, '新会区', '440705', '0750', 2176, 'xinhui'); +INSERT INTO `t_region` VALUES (2181, '台山市', '440781', '0750', 2176, 'Taishan City'); +INSERT INTO `t_region` VALUES (2182, '开平市', '440783', '0750', 2176, 'Kaiping City'); +INSERT INTO `t_region` VALUES (2183, '鹤山市', '440784', '0750', 2176, 'Heshan City'); +INSERT INTO `t_region` VALUES (2184, '恩平市', '440785', '0750', 2176, 'enping'); +INSERT INTO `t_region` VALUES (2185, '湛江市', '440800', '0759', 2119, 'Zhanjiang'); +INSERT INTO `t_region` VALUES (2186, '湛江市市辖区', '440801', '0759', 2185, 'Zhanjiang municipal'); +INSERT INTO `t_region` VALUES (2187, '赤坎区', '440802', '0759', 2185, 'Chikan'); +INSERT INTO `t_region` VALUES (2188, '霞山区', '440803', '0759', 2185, 'Xiashan'); +INSERT INTO `t_region` VALUES (2189, '坡头区', '440804', '0759', 2185, 'potou'); +INSERT INTO `t_region` VALUES (2190, '麻章区', '440811', '0759', 2185, 'Mazhang'); +INSERT INTO `t_region` VALUES (2191, '遂溪县', '440823', '0759', 2185, 'Suixi'); +INSERT INTO `t_region` VALUES (2192, '徐闻县', '440825', '0759', 2185, 'Xuwen'); +INSERT INTO `t_region` VALUES (2193, '廉江市', '440881', '0759', 2185, 'Lianjiang City'); +INSERT INTO `t_region` VALUES (2194, '雷州市', '440882', '0759', 2185, 'leizhou city'); +INSERT INTO `t_region` VALUES (2195, '吴川市', '440883', '0759', 2185, 'Wuchuan City'); +INSERT INTO `t_region` VALUES (2196, '茂名市', '440900', '0668', 2119, 'Maoming City'); +INSERT INTO `t_region` VALUES (2197, '茂名市市辖区', '440901', '0668', 2196, 'Maoming municipal'); +INSERT INTO `t_region` VALUES (2198, '茂南区', '440902', '0668', 2196, 'maonan'); +INSERT INTO `t_region` VALUES (2199, '电白区', '440904', '0668', 2196, 'White area'); +INSERT INTO `t_region` VALUES (2200, '高州市', '440981', '0668', 2196, 'Gaozhou City'); +INSERT INTO `t_region` VALUES (2201, '化州市', '440982', '0668', 2196, 'Huazhou City'); +INSERT INTO `t_region` VALUES (2202, '信宜市', '440983', '0668', 2196, 'Xinyi City'); +INSERT INTO `t_region` VALUES (2203, '肇庆市', '441200', '0758', 2119, 'Zhaoqing'); +INSERT INTO `t_region` VALUES (2204, '肇庆市市辖区', '441201', '0758', 2203, 'Zhaoqing municipal'); +INSERT INTO `t_region` VALUES (2205, '端州区', '441202', '0758', 2203, 'duanzhou'); +INSERT INTO `t_region` VALUES (2206, '鼎湖区', '441203', '0758', 2203, 'Dinghu'); +INSERT INTO `t_region` VALUES (2207, '广宁县', '441223', '0758', 2203, 'Guangning'); +INSERT INTO `t_region` VALUES (2208, '怀集县', '441224', '0758', 2203, 'Huaiji'); +INSERT INTO `t_region` VALUES (2209, '封开县', '441225', '0758', 2203, 'Fengkai'); +INSERT INTO `t_region` VALUES (2210, '德庆县', '441226', '0758', 2203, 'Deqinn'); +INSERT INTO `t_region` VALUES (2211, '高要区', '441204', '0758', 2203, 'Gaoyao area'); +INSERT INTO `t_region` VALUES (2212, '四会市', '441284', '0758', 2203, 'Sihui City'); +INSERT INTO `t_region` VALUES (2213, '惠州市', '441300', '0752', 2119, 'Huizhou'); +INSERT INTO `t_region` VALUES (2214, '惠州市市辖区', '441301', '0752', 2213, 'Huizhou municipal'); +INSERT INTO `t_region` VALUES (2215, '惠城区', '441302', '0752', 2213, 'huicheng'); +INSERT INTO `t_region` VALUES (2216, '惠阳区', '441303', '0752', 2213, 'huiyang'); +INSERT INTO `t_region` VALUES (2217, '博罗县', '441322', '0752', 2213, 'Boluo'); +INSERT INTO `t_region` VALUES (2218, '惠东县', '441323', '0752', 2213, 'Huidong'); +INSERT INTO `t_region` VALUES (2219, '龙门县', '441324', '0752', 2213, 'Longmen'); +INSERT INTO `t_region` VALUES (2220, '梅州市', '441400', '0753', 2119, 'Meizhou City'); +INSERT INTO `t_region` VALUES (2221, '梅州市市辖区', '441401', '0753', 2220, 'Meizhou municipal'); +INSERT INTO `t_region` VALUES (2222, '梅江区', '441402', '0753', 2220, 'meijiang'); +INSERT INTO `t_region` VALUES (2223, '梅县区', '441403', '0753', 2220, 'Meixian'); +INSERT INTO `t_region` VALUES (2224, '大埔县', '441422', '0753', 2220, 'Dabu'); +INSERT INTO `t_region` VALUES (2225, '丰顺县', '441423', '0753', 2220, 'Fengshun'); +INSERT INTO `t_region` VALUES (2226, '五华县', '441424', '0753', 2220, 'Wuhua'); +INSERT INTO `t_region` VALUES (2227, '平远县', '441426', '0753', 2220, 'Pingyuan'); +INSERT INTO `t_region` VALUES (2228, '蕉岭县', '441427', '0753', 2220, 'Jiaoling'); +INSERT INTO `t_region` VALUES (2229, '兴宁市', '441481', '0753', 2220, 'Xingning City'); +INSERT INTO `t_region` VALUES (2230, '汕尾市', '441500', '0660', 2119, 'Shanwei City'); +INSERT INTO `t_region` VALUES (2231, '汕尾市市辖区', '441501', '0660', 2230, 'Shanwei municipal'); +INSERT INTO `t_region` VALUES (2232, '城区', '441502', '0660', 2230, 'theproper'); +INSERT INTO `t_region` VALUES (2233, '海丰县', '441521', '0660', 2230, 'Haifeng'); +INSERT INTO `t_region` VALUES (2234, '陆河县', '441523', '0660', 2230, 'luhe'); +INSERT INTO `t_region` VALUES (2235, '陆丰市', '441581', '0660', 2230, 'Lufeng City'); +INSERT INTO `t_region` VALUES (2236, '河源市', '441600', '0762', 2119, 'Heyuan City'); +INSERT INTO `t_region` VALUES (2237, '河源市市辖区', '441601', '0762', 2236, 'Heyuan municipal'); +INSERT INTO `t_region` VALUES (2238, '源城区', '441602', '0762', 2236, 'Yuancheng'); +INSERT INTO `t_region` VALUES (2239, '紫金县', '441621', '0762', 2236, 'Zijin'); +INSERT INTO `t_region` VALUES (2240, '龙川县', '441622', '0762', 2236, 'Longchuan'); +INSERT INTO `t_region` VALUES (2241, '连平县', '441623', '0762', 2236, 'Lianping'); +INSERT INTO `t_region` VALUES (2242, '和平县', '441624', '0762', 2236, 'Heping'); +INSERT INTO `t_region` VALUES (2243, '东源县', '441625', '0762', 2236, 'dongyuan'); +INSERT INTO `t_region` VALUES (2244, '阳江市', '441700', '0662', 2119, 'Yangjiang City'); +INSERT INTO `t_region` VALUES (2245, '阳江市市辖区', '441701', '0662', 2244, 'Yangjiang municipal'); +INSERT INTO `t_region` VALUES (2246, '江城区', '441702', '0662', 2244, 'jiangcheng'); +INSERT INTO `t_region` VALUES (2247, '阳东区', '441704', '0662', 2244, 'Yangdong'); +INSERT INTO `t_region` VALUES (2248, '阳西县', '441721', '0662', 2244, 'yangxi'); +INSERT INTO `t_region` VALUES (2249, '阳春市', '441781', '0662', 2244, 'Yangchun'); +INSERT INTO `t_region` VALUES (2250, '清远市', '441800', '0763', 2119, 'Qingyuan City'); +INSERT INTO `t_region` VALUES (2251, '清远市市辖区', '441801', '0763', 2250, 'Qingyuan municipal'); +INSERT INTO `t_region` VALUES (2252, '清城区', '441802', '0763', 2250, 'qingcheng'); +INSERT INTO `t_region` VALUES (2253, '清新区', '441803', '0763', 2250, 'Fresh area'); +INSERT INTO `t_region` VALUES (2254, '佛冈县', '441821', '0763', 2250, 'Fogang'); +INSERT INTO `t_region` VALUES (2255, '阳山县', '441823', '0763', 2250, 'Yangshan'); +INSERT INTO `t_region` VALUES (2256, '连山壮族瑶族自治县', '441825', '0763', 2250, 'Zhuang-Yao Autonomousof Lianshan '); +INSERT INTO `t_region` VALUES (2257, '连南瑶族自治县', '441826', '0763', 2250, 'Yao Autonomousof Liannan '); +INSERT INTO `t_region` VALUES (2258, '英德市', '441881', '0763', 2250, 'Yingde'); +INSERT INTO `t_region` VALUES (2259, '连州市', '441882', '0763', 2250, 'Lianzhou city'); +INSERT INTO `t_region` VALUES (2260, '东莞市', '441900', '0769', 2119, 'Dongguan City'); +INSERT INTO `t_region` VALUES (2261, '中山市', '442000', '0760', 2119, 'zhongshan'); +INSERT INTO `t_region` VALUES (2262, '东沙群岛', '442101', '', 2261, 'Dongsha Islands '); +INSERT INTO `t_region` VALUES (2263, '潮州市', '445100', '0768', 2119, 'Chaozhou City'); +INSERT INTO `t_region` VALUES (2264, '潮州市市辖区', '445101', '0768', 2263, 'Chaozhou municipal'); +INSERT INTO `t_region` VALUES (2265, '湘桥区', '445102', '0768', 2263, 'Xiangqiao'); +INSERT INTO `t_region` VALUES (2266, '潮安区', '445103', '0768', 2263, 'Chaoan'); +INSERT INTO `t_region` VALUES (2267, '饶平县', '445122', '0768', 2263, 'Raoping'); +INSERT INTO `t_region` VALUES (2268, '揭阳市', '445200', '0663', 2119, 'Jieyang City'); +INSERT INTO `t_region` VALUES (2269, '揭阳市市辖区', '445201', '0663', 2268, 'Jieyang municipal'); +INSERT INTO `t_region` VALUES (2270, '榕城区', '445202', '0663', 2268, 'rongcheng'); +INSERT INTO `t_region` VALUES (2271, '揭东区', '445203', '0663', 2268, 'Jiedong'); +INSERT INTO `t_region` VALUES (2272, '揭西县', '445222', '0663', 2268, 'Jiexi'); +INSERT INTO `t_region` VALUES (2273, '惠来县', '445224', '0663', 2268, 'Huilai'); +INSERT INTO `t_region` VALUES (2274, '普宁市', '445281', '0663', 2268, 'Puning City'); +INSERT INTO `t_region` VALUES (2275, '云浮市', '445300', '0766', 2119, 'Yunfu City'); +INSERT INTO `t_region` VALUES (2276, '云浮市市辖区', '445301', '0766', 2275, 'Yunfu municipal'); +INSERT INTO `t_region` VALUES (2277, '云城区', '445302', '0766', 2275, 'yuncheng'); +INSERT INTO `t_region` VALUES (2278, '云安区', '445303', '0766', 2275, 'Yunan area'); +INSERT INTO `t_region` VALUES (2279, '新兴县', '445321', '0766', 2275, 'Xinxing'); +INSERT INTO `t_region` VALUES (2280, '郁南县', '445322', '0766', 2275, 'Yunan'); +INSERT INTO `t_region` VALUES (2281, '罗定市', '445381', '0766', 2275, 'Luoding'); +INSERT INTO `t_region` VALUES (2282, '广西壮族自治区', '450000', '', 0, 'the Guangxi Zhuang Autonomous Region '); +INSERT INTO `t_region` VALUES (2283, '南宁市', '450100', '0771', 2282, 'Nanning'); +INSERT INTO `t_region` VALUES (2284, '南宁市市辖区', '450101', '0771', 2283, 'Nanning municipal'); +INSERT INTO `t_region` VALUES (2285, '兴宁区', '450102', '0771', 2283, 'Xingning'); +INSERT INTO `t_region` VALUES (2286, '青秀区', '450103', '0771', 2283, 'Qingxiu'); +INSERT INTO `t_region` VALUES (2287, '江南区', '450105', '0771', 2283, 'Jiangnan'); +INSERT INTO `t_region` VALUES (2288, '西乡塘区', '450107', '0771', 2283, 'Xixiangtang'); +INSERT INTO `t_region` VALUES (2289, '良庆区', '450108', '0771', 2283, 'Liangqing'); +INSERT INTO `t_region` VALUES (2290, '邕宁区', '450109', '0771', 2283, 'Yongning'); +INSERT INTO `t_region` VALUES (2291, '武鸣区', '450110', '0771', 2283, 'Wuming'); +INSERT INTO `t_region` VALUES (2292, '隆安县', '450123', '0771', 2283, 'Long’an'); +INSERT INTO `t_region` VALUES (2293, '马山县', '450124', '0771', 2283, 'Mashan'); +INSERT INTO `t_region` VALUES (2294, '上林县', '450125', '0771', 2283, 'Shanglin'); +INSERT INTO `t_region` VALUES (2295, '宾阳县', '450126', '0771', 2283, 'Binyang'); +INSERT INTO `t_region` VALUES (2296, '横县', '450127', '0771', 2283, 'Hengxian'); +INSERT INTO `t_region` VALUES (2297, '柳州市', '450200', '0772', 2282, 'Liuzhou'); +INSERT INTO `t_region` VALUES (2298, '柳州市市辖区', '450201', '0772', 2297, 'Liuzhou municipal'); +INSERT INTO `t_region` VALUES (2299, '城中区', '450202', '0772', 2297, 'city central'); +INSERT INTO `t_region` VALUES (2300, '鱼峰区', '450203', '0772', 2297, 'Yufeng'); +INSERT INTO `t_region` VALUES (2301, '柳南区', '450204', '0772', 2297, 'Liunan'); +INSERT INTO `t_region` VALUES (2302, '柳北区', '450205', '0772', 2297, 'Liubei'); +INSERT INTO `t_region` VALUES (2303, '柳江区', '450206', '0772', 2297, 'The Liujiang River'); +INSERT INTO `t_region` VALUES (2304, '柳城县', '450222', '0772', 2297, 'Liucheng'); +INSERT INTO `t_region` VALUES (2305, '鹿寨县', '450223', '0772', 2297, 'Luzhai'); +INSERT INTO `t_region` VALUES (2306, '融安县', '450224', '0772', 2297, 'Rong’an'); +INSERT INTO `t_region` VALUES (2307, '融水苗族自治县', '450225', '0772', 2297, 'Miao Autonomousof Rongshui '); +INSERT INTO `t_region` VALUES (2308, '三江侗族自治县', '450226', '0772', 2297, 'Dong Autonomousof Sanjiang '); +INSERT INTO `t_region` VALUES (2309, '桂林市', '450300', '0773', 2282, 'Guilin'); +INSERT INTO `t_region` VALUES (2310, '桂林市市辖区', '450301', '0773', 2309, 'Guilin City'); +INSERT INTO `t_region` VALUES (2311, '秀峰区', '450302', '0773', 2309, 'Xiufeng'); +INSERT INTO `t_region` VALUES (2312, '叠彩区', '450303', '0773', 2309, 'Diecai'); +INSERT INTO `t_region` VALUES (2313, '象山区', '450304', '0773', 2309, 'Xiangshan'); +INSERT INTO `t_region` VALUES (2314, '七星区', '450305', '0773', 2309, 'Qixing'); +INSERT INTO `t_region` VALUES (2315, '雁山区', '450311', '0773', 2309, 'Yanshan'); +INSERT INTO `t_region` VALUES (2316, '临桂区', '450312', '0773', 2309, 'Lingui'); +INSERT INTO `t_region` VALUES (2317, '阳朔县', '450321', '0773', 2309, 'Yangshuo'); +INSERT INTO `t_region` VALUES (2318, '灵川县', '450323', '0773', 2309, 'Lingchuan'); +INSERT INTO `t_region` VALUES (2319, '全州县', '450324', '0773', 2309, 'Quanzhou'); +INSERT INTO `t_region` VALUES (2320, '兴安县', '450325', '0773', 2309, 'Xing’an'); +INSERT INTO `t_region` VALUES (2321, '永福县', '450326', '0773', 2309, 'Yongfu'); +INSERT INTO `t_region` VALUES (2322, '灌阳县', '450327', '0773', 2309, 'Guanyang'); +INSERT INTO `t_region` VALUES (2323, '龙胜各族自治县', '450328', '0773', 2309, 'Multinational Autonomousof Longsheng '); +INSERT INTO `t_region` VALUES (2324, '资源县', '450329', '0773', 2309, 'Ziyuan'); +INSERT INTO `t_region` VALUES (2325, '平乐县', '450330', '0773', 2309, 'Pingle'); +INSERT INTO `t_region` VALUES (2326, '荔浦县', '450331', '0773', 2309, 'Lipu'); +INSERT INTO `t_region` VALUES (2327, '恭城瑶族自治县', '450332', '0773', 2309, 'Gongcheng Yao Autonomous'); +INSERT INTO `t_region` VALUES (2328, '梧州市', '450400', '0774', 2282, 'Wuzhou'); +INSERT INTO `t_region` VALUES (2329, '梧州市市辖区', '450401', '0774', 2328, 'Wuzhou municipal'); +INSERT INTO `t_region` VALUES (2330, '万秀区', '450403', '0774', 2328, 'Wanxiu'); +INSERT INTO `t_region` VALUES (2331, '长洲区', '450405', '0774', 2328, 'Changzhou'); +INSERT INTO `t_region` VALUES (2332, '龙圩区', '450406', '0774', 2328, 'Longxu'); +INSERT INTO `t_region` VALUES (2333, '苍梧县', '450421', '0774', 2328, 'Cangwu'); +INSERT INTO `t_region` VALUES (2334, '藤县', '450422', '0774', 2328, 'Tengxian'); +INSERT INTO `t_region` VALUES (2335, '蒙山县', '450423', '0774', 2328, 'Mengshan'); +INSERT INTO `t_region` VALUES (2336, '岑溪市', '450481', '0774', 2328, 'cenxi'); +INSERT INTO `t_region` VALUES (2337, '北海市', '450500', '0779', 2282, 'Beihai'); +INSERT INTO `t_region` VALUES (2338, '北海市市辖区', '450501', '0779', 2337, 'Beihai municipal'); +INSERT INTO `t_region` VALUES (2339, '海城区', '450502', '0779', 2337, 'Haicheng'); +INSERT INTO `t_region` VALUES (2340, '银海区', '450503', '0779', 2337, 'Yinhai'); +INSERT INTO `t_region` VALUES (2341, '铁山港区', '450512', '0779', 2337, 'Tieshangang'); +INSERT INTO `t_region` VALUES (2342, '合浦县', '450521', '0779', 2337, 'Hepu'); +INSERT INTO `t_region` VALUES (2343, '防城港市', '450600', '0770', 2282, 'Fangchenggang City'); +INSERT INTO `t_region` VALUES (2344, '防城港市市辖区', '450601', '0770', 2343, 'Fangchenggang municipal'); +INSERT INTO `t_region` VALUES (2345, '港口区', '450602', '0770', 2343, 'Port area'); +INSERT INTO `t_region` VALUES (2346, '防城区', '450603', '0770', 2343, 'Fangcheng'); +INSERT INTO `t_region` VALUES (2347, '上思县', '450621', '0770', 2343, 'Shangsi'); +INSERT INTO `t_region` VALUES (2348, '东兴市', '450681', '0770', 2343, 'Dongxing City'); +INSERT INTO `t_region` VALUES (2349, '钦州市', '450700', '0777', 2282, 'Qinzhou City'); +INSERT INTO `t_region` VALUES (2350, '钦州市市辖区', '450701', '0777', 2349, 'Qinzhou municipal'); +INSERT INTO `t_region` VALUES (2351, '钦南区', '450702', '0777', 2349, 'Qinnan'); +INSERT INTO `t_region` VALUES (2352, '钦北区', '450703', '0777', 2349, 'Qinbei'); +INSERT INTO `t_region` VALUES (2353, '灵山县', '450721', '0777', 2349, 'Lingshan'); +INSERT INTO `t_region` VALUES (2354, '浦北县', '450722', '0777', 2349, 'Pubei'); +INSERT INTO `t_region` VALUES (2355, '贵港市', '450800', '1755', 2282, 'Guigang City'); +INSERT INTO `t_region` VALUES (2356, '贵港市市辖区', '450801', '1755', 2355, 'City of Guigang City'); +INSERT INTO `t_region` VALUES (2357, '港北区', '450802', '1755', 2355, 'Gangbei'); +INSERT INTO `t_region` VALUES (2358, '港南区', '450803', '1755', 2355, 'Gangnan'); +INSERT INTO `t_region` VALUES (2359, '覃塘区', '450804', '1755', 2355, 'Qintang'); +INSERT INTO `t_region` VALUES (2360, '平南县', '450821', '1755', 2355, 'Pingnan'); +INSERT INTO `t_region` VALUES (2361, '桂平市', '450881', '1755', 2355, 'Guiping'); +INSERT INTO `t_region` VALUES (2362, '玉林市', '450900', '0775', 2282, 'Yulin City'); +INSERT INTO `t_region` VALUES (2363, '玉林市市辖区', '450901', '0775', 2362, 'Yulin municipal'); +INSERT INTO `t_region` VALUES (2364, '玉州区', '450902', '0775', 2362, 'Yuzhou'); +INSERT INTO `t_region` VALUES (2365, '福绵区', '450903', '0775', 2362, 'Fu Mian'); +INSERT INTO `t_region` VALUES (2366, '容县', '450921', '0775', 2362, 'Rongxian'); +INSERT INTO `t_region` VALUES (2367, '陆川县', '450922', '0775', 2362, 'Luchuan'); +INSERT INTO `t_region` VALUES (2368, '博白县', '450923', '0775', 2362, 'Bobai'); +INSERT INTO `t_region` VALUES (2369, '兴业县', '450924', '0775', 2362, 'Xingye'); +INSERT INTO `t_region` VALUES (2370, '北流市', '450981', '0775', 2362, 'Beiliu'); +INSERT INTO `t_region` VALUES (2371, '百色市', '451000', '0776', 2282, 'Baise'); +INSERT INTO `t_region` VALUES (2372, '百色市市辖区', '451001', '0776', 2371, 'Baise'); +INSERT INTO `t_region` VALUES (2373, '右江区', '451002', '0776', 2371, 'Youjiang'); +INSERT INTO `t_region` VALUES (2374, '田阳县', '451021', '0776', 2371, 'Tianyang'); +INSERT INTO `t_region` VALUES (2375, '田东县', '451022', '0776', 2371, 'Tiandong'); +INSERT INTO `t_region` VALUES (2376, '平果县', '451023', '0776', 2371, 'Pingguo'); +INSERT INTO `t_region` VALUES (2377, '德保县', '451024', '0776', 2371, 'Debao'); +INSERT INTO `t_region` VALUES (2378, '靖西市', '451081', '0776', 2371, 'Jingxi City'); +INSERT INTO `t_region` VALUES (2379, '那坡县', '451026', '0776', 2371, 'Napo'); +INSERT INTO `t_region` VALUES (2380, '凌云县', '451027', '0776', 2371, 'Lingyun'); +INSERT INTO `t_region` VALUES (2381, '乐业县', '451028', '0776', 2371, 'Leye'); +INSERT INTO `t_region` VALUES (2382, '田林县', '451029', '0776', 2371, 'Tianlin'); +INSERT INTO `t_region` VALUES (2383, '西林县', '451030', '0776', 2371, 'Xilin'); +INSERT INTO `t_region` VALUES (2384, '隆林各族自治县', '451031', '0776', 2371, 'Multinational Autonomousof Longlin '); +INSERT INTO `t_region` VALUES (2385, '贺州市', '451100', '1774', 2282, 'Hezhou'); +INSERT INTO `t_region` VALUES (2386, '贺州市市辖区', '451101', '1774', 2385, 'Hezhou municipal'); +INSERT INTO `t_region` VALUES (2387, '八步区', '451102', '1774', 2385, 'Eight step area'); +INSERT INTO `t_region` VALUES (2388, '平桂区', '451103', '1774', 2385, 'Guangxi'); +INSERT INTO `t_region` VALUES (2389, '昭平县', '451121', '1774', 2385, 'Zhaoping'); +INSERT INTO `t_region` VALUES (2390, '钟山县', '451122', '1774', 2385, 'Zhongshan'); +INSERT INTO `t_region` VALUES (2391, '富川瑶族自治县', '451123', '1774', 2385, 'Fuchuan Yao Autonomous'); +INSERT INTO `t_region` VALUES (2392, '河池市', '451200', '0778', 2282, 'Hechi City'); +INSERT INTO `t_region` VALUES (2393, '河池市市辖区', '451201', '0778', 2392, 'Hechi municipal'); +INSERT INTO `t_region` VALUES (2394, '金城江区', '451202', '0778', 2392, 'Jinchengjiang'); +INSERT INTO `t_region` VALUES (2395, '南丹县', '451221', '0778', 2392, 'Nandan'); +INSERT INTO `t_region` VALUES (2396, '天峨县', '451222', '0778', 2392, 'Tian’e'); +INSERT INTO `t_region` VALUES (2397, '凤山县', '451223', '0778', 2392, 'Fengshan'); +INSERT INTO `t_region` VALUES (2398, '东兰县', '451224', '0778', 2392, 'Donglan'); +INSERT INTO `t_region` VALUES (2399, '罗城仫佬族自治县', '451225', '0778', 2392, 'Luocheng Mulao Autonomous'); +INSERT INTO `t_region` VALUES (2400, '环江毛南族自治县', '451226', '0778', 2392, 'Huanjiang Maonan Autonomous'); +INSERT INTO `t_region` VALUES (2401, '巴马瑶族自治县', '451227', '0778', 2392, 'Bama'); +INSERT INTO `t_region` VALUES (2402, '都安瑶族自治县', '451228', '0778', 2392, 'Yao Autonomousof Du’an'); +INSERT INTO `t_region` VALUES (2403, '大化瑶族自治县', '451229', '0778', 2392, 'dahua'); +INSERT INTO `t_region` VALUES (2404, '宜州区', '451203', '0778', 2392, 'Yizhou'); +INSERT INTO `t_region` VALUES (2405, '来宾市', '451300', '1772', 2282, 'Laibin City'); +INSERT INTO `t_region` VALUES (2406, '来宾市市辖区', '451301', '1772', 2405, 'Laibin City'); +INSERT INTO `t_region` VALUES (2407, '兴宾区', '451302', '1772', 2405, 'Xingbin'); +INSERT INTO `t_region` VALUES (2408, '忻城县', '451321', '1772', 2405, 'Xincheng'); +INSERT INTO `t_region` VALUES (2409, '象州县', '451322', '1772', 2405, 'Xiangzhou'); +INSERT INTO `t_region` VALUES (2410, '武宣县', '451323', '1772', 2405, 'Wuxuan'); +INSERT INTO `t_region` VALUES (2411, '金秀瑶族自治县', '451324', '1772', 2405, 'Yao Autonomousof Jinxiu '); +INSERT INTO `t_region` VALUES (2412, '合山市', '451381', '1772', 2405, 'Heshan'); +INSERT INTO `t_region` VALUES (2413, '崇左市', '451400', '1771', 2282, 'Chongzuo City'); +INSERT INTO `t_region` VALUES (2414, '崇左市市辖区', '451401', '1771', 2413, 'Chongzuo municipal'); +INSERT INTO `t_region` VALUES (2415, '江州区', '451402', '1771', 2413, 'Jiangzhou'); +INSERT INTO `t_region` VALUES (2416, '扶绥县', '451421', '1771', 2413, 'Fusui'); +INSERT INTO `t_region` VALUES (2417, '宁明县', '451422', '1771', 2413, 'Ningming'); +INSERT INTO `t_region` VALUES (2418, '龙州县', '451423', '1771', 2413, 'Longzhou'); +INSERT INTO `t_region` VALUES (2419, '大新县', '451424', '1771', 2413, 'Daxin'); +INSERT INTO `t_region` VALUES (2420, '天等县', '451425', '1771', 2413, 'Tiandeng'); +INSERT INTO `t_region` VALUES (2421, '凭祥市', '451481', '1771', 2413, 'Pingxiang'); +INSERT INTO `t_region` VALUES (2422, '海南省', '460000', '', 0, 'Hainan'); +INSERT INTO `t_region` VALUES (2423, '海口市', '460100', '0898', 2422, 'Haikou'); +INSERT INTO `t_region` VALUES (2424, '海口市市辖区', '460101', '0898', 2423, 'Haikou municipal'); +INSERT INTO `t_region` VALUES (2425, '秀英区', '460105', '0898', 2423, 'Xiuying'); +INSERT INTO `t_region` VALUES (2426, '龙华区', '460106', '0898', 2423, 'Longhua'); +INSERT INTO `t_region` VALUES (2427, '琼山区', '460107', '0898', 2423, 'Qiongshan'); +INSERT INTO `t_region` VALUES (2428, '美兰区', '460108', '0898', 2423, 'meilan'); +INSERT INTO `t_region` VALUES (2429, '三亚市', '460200', '0899', 2422, 'Theof Sanya'); +INSERT INTO `t_region` VALUES (2430, '三亚市市辖区', '460201', '0899', 2429, 'Sanya municipal'); +INSERT INTO `t_region` VALUES (2431, '海棠区', '460202', '0899', 2429, 'Begonia area'); +INSERT INTO `t_region` VALUES (2432, '吉阳区', '460203', '0899', 2429, 'Jiyang'); +INSERT INTO `t_region` VALUES (2433, '天涯区', '460204', '0899', 2429, 'Tianya'); +INSERT INTO `t_region` VALUES (2434, '崖州区', '460205', '0899', 2429, 'Ya Zhou'); +INSERT INTO `t_region` VALUES (2435, '三沙市', '460300', '2898', 2422, 'Sansha'); +INSERT INTO `t_region` VALUES (2436, '三沙市市辖区', '460301', '2898', 2435, 'City of San Sha City'); +INSERT INTO `t_region` VALUES (2437, '西沙群岛', '460321', '1895', 2435, 'the Xisha Islands '); +INSERT INTO `t_region` VALUES (2438, '南沙群岛', '460322', '1891', 2435, 'the Nansha Islands '); +INSERT INTO `t_region` VALUES (2439, '中沙群岛的岛礁及其海域', '460323', '2801', 2435, 'The islands, reefs and sea areas of the central Sand Islands'); +INSERT INTO `t_region` VALUES (2440, '儋州市', '460400', '0805', 2422, 'Danzhou City'); +INSERT INTO `t_region` VALUES (2441, '五指山市', '469001', '1897', 2440, 'Five Fingers Group City'); +INSERT INTO `t_region` VALUES (2442, '琼海市', '469002', '1894', 2440, 'Qionghai City'); +INSERT INTO `t_region` VALUES (2443, '文昌市', '469005', '1893', 2440, 'Wenchang City'); +INSERT INTO `t_region` VALUES (2444, '万宁市', '469006', '1898', 2440, 'Wanning City'); +INSERT INTO `t_region` VALUES (2445, '东方市', '469007', '0807', 2440, '[地名] [巴拉圭] Ciudad del Este '); +INSERT INTO `t_region` VALUES (2446, '定安县', '469021', '0806', 2440, 'Ding’an'); +INSERT INTO `t_region` VALUES (2447, '屯昌县', '469022', '1892', 2440, 'Tunchang'); +INSERT INTO `t_region` VALUES (2448, '澄迈县', '469023', '0804', 2440, 'Chengmai'); +INSERT INTO `t_region` VALUES (2449, '临高县', '469024', '1896', 2440, 'Lingao'); +INSERT INTO `t_region` VALUES (2450, '白沙黎族自治县', '469025', '0802', 2440, 'Baisha Li Autonomous'); +INSERT INTO `t_region` VALUES (2451, '昌江黎族自治县', '469026', '0803', 2440, 'Changjiang'); +INSERT INTO `t_region` VALUES (2452, '乐东黎族自治县', '469027', '2802', 2440, 'Ledong Li Autonomous'); +INSERT INTO `t_region` VALUES (2453, '陵水黎族自治县', '469028', '0809', 2440, 'Lingshui Li Autonomous'); +INSERT INTO `t_region` VALUES (2454, '保亭黎族苗族自治县', '469029', '0801', 2440, 'Baoting Li nationality and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2455, '琼中黎族苗族自治县', '469030', '1899', 2440, 'Qiongzhong'); +INSERT INTO `t_region` VALUES (2456, '重庆市', '500000', '023', 0, 'Chongqing'); +INSERT INTO `t_region` VALUES (2457, '重庆市市辖区', '500100', '023', 2456, 'Chongqing municipal'); +INSERT INTO `t_region` VALUES (2458, '万州区', '500101', '023', 2457, 'Wanzhou'); +INSERT INTO `t_region` VALUES (2459, '涪陵区', '500102', '023', 2457, 'fuling'); +INSERT INTO `t_region` VALUES (2460, '渝中区', '500103', '023', 2457, 'Yuzhong'); +INSERT INTO `t_region` VALUES (2461, '大渡口区', '500104', '023', 2457, 'dadukou'); +INSERT INTO `t_region` VALUES (2462, '江北区', '500105', '023', 2457, 'jiangbei'); +INSERT INTO `t_region` VALUES (2463, '沙坪坝区', '500106', '023', 2457, 'shapingba'); +INSERT INTO `t_region` VALUES (2464, '九龙坡区', '500107', '023', 2457, 'jiulongpo'); +INSERT INTO `t_region` VALUES (2465, '南岸区', '500108', '023', 2457, 'Nanan'); +INSERT INTO `t_region` VALUES (2466, '北碚区', '500109', '023', 2457, 'Beibei'); +INSERT INTO `t_region` VALUES (2467, '綦江区', '500110', '023', 2457, 'Qijiang'); +INSERT INTO `t_region` VALUES (2468, '大足区', '500111', '023', 2457, 'Dazu'); +INSERT INTO `t_region` VALUES (2469, '渝北区', '500112', '023', 2457, 'Yubei'); +INSERT INTO `t_region` VALUES (2470, '巴南区', '500113', '023', 2457, 'banan'); +INSERT INTO `t_region` VALUES (2471, '黔江区', '500114', '023', 2457, 'Qianjiang'); +INSERT INTO `t_region` VALUES (2472, '长寿区', '500115', '023', 2457, 'changshou'); +INSERT INTO `t_region` VALUES (2473, '江津区', '500116', '023', 2457, 'Jiangjin'); +INSERT INTO `t_region` VALUES (2474, '合川区', '500117', '023', 2457, 'Hechuan'); +INSERT INTO `t_region` VALUES (2475, '永川区', '500118', '023', 2457, 'yongchuan'); +INSERT INTO `t_region` VALUES (2476, '南川区', '500119', '023', 2457, 'Nanchuan'); +INSERT INTO `t_region` VALUES (2477, '璧山区', '500120', '023', 2457, 'Bishan'); +INSERT INTO `t_region` VALUES (2478, '铜梁区', '500151', '023', 2457, 'Tongliang'); +INSERT INTO `t_region` VALUES (2479, '潼南区', '500152', '023', 2457, 'Tongnan'); +INSERT INTO `t_region` VALUES (2480, '荣昌区', '500153', '023', 2457, 'Rongchang'); +INSERT INTO `t_region` VALUES (2481, '开州区', '500154', '023', 2457, 'Kai Zhou'); +INSERT INTO `t_region` VALUES (2482, '梁平区', '500155', '023', 2457, 'Liangping'); +INSERT INTO `t_region` VALUES (2483, '武隆区', '500156', '023', 2457, 'Wulong'); +INSERT INTO `t_region` VALUES (2484, '重庆市郊县', '500200', '023', 2456, 'Suburbanof Chongqing'); +INSERT INTO `t_region` VALUES (2485, '城口县', '500229', '023', 2484, 'Chengkou'); +INSERT INTO `t_region` VALUES (2486, '丰都县', '500230', '023', 2484, 'Fengdu'); +INSERT INTO `t_region` VALUES (2487, '垫江县', '500231', '023', 2484, 'Dianjiang'); +INSERT INTO `t_region` VALUES (2488, '忠县', '500233', '023', 2484, 'Zhongxian'); +INSERT INTO `t_region` VALUES (2489, '云阳县', '500235', '023', 2484, 'Yunyang'); +INSERT INTO `t_region` VALUES (2490, '奉节县', '500236', '023', 2484, 'Fengjie'); +INSERT INTO `t_region` VALUES (2491, '巫山县', '500237', '023', 2484, 'Wushan'); +INSERT INTO `t_region` VALUES (2492, '巫溪县', '500238', '023', 2484, 'Wuxi'); +INSERT INTO `t_region` VALUES (2493, '石柱土家族自治县', '500240', '023', 2484, 'Shizhu Tujia Autonomous'); +INSERT INTO `t_region` VALUES (2494, '秀山土家族苗族自治县', '500241', '023', 2484, 'Xiushan Tujia and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2495, '酉阳土家族苗族自治县', '500242', '023', 2484, 'Youyang Tujia and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2496, '彭水苗族土家族自治县', '500243', '023', 2484, 'pengshui miao and tujia autonomous'); +INSERT INTO `t_region` VALUES (2497, '四川省', '510000', '', 0, 'Sichuan Province '); +INSERT INTO `t_region` VALUES (2498, '成都市', '510100', '028', 2497, 'Chengdu'); +INSERT INTO `t_region` VALUES (2499, '成都市市辖区', '510101', '028', 2498, 'Chengdu municipal'); +INSERT INTO `t_region` VALUES (2500, '锦江区', '510104', '028', 2498, 'Jinjiang'); +INSERT INTO `t_region` VALUES (2501, '青羊区', '510105', '028', 2498, 'Qingyang'); +INSERT INTO `t_region` VALUES (2502, '金牛区', '510106', '028', 2498, 'Jinniu'); +INSERT INTO `t_region` VALUES (2503, '武侯区', '510107', '028', 2498, 'wuhou'); +INSERT INTO `t_region` VALUES (2504, '成华区', '510108', '028', 2498, 'Chenghua'); +INSERT INTO `t_region` VALUES (2505, '龙泉驿区', '510112', '028', 2498, 'Longquanyi'); +INSERT INTO `t_region` VALUES (2506, '青白江区', '510113', '028', 2498, 'qingbaijiang'); +INSERT INTO `t_region` VALUES (2507, '新都区', '510114', '028', 2498, 'xindu'); +INSERT INTO `t_region` VALUES (2508, '温江区', '510115', '028', 2498, 'Wenjiang'); +INSERT INTO `t_region` VALUES (2509, '金堂县', '510121', '028', 2498, 'Jintang'); +INSERT INTO `t_region` VALUES (2510, '双流区', '510116', '028', 2498, 'Double flow area'); +INSERT INTO `t_region` VALUES (2511, '郫都区', '510117', '028', 2498, 'PI Du'); +INSERT INTO `t_region` VALUES (2512, '大邑县', '510129', '028', 2498, 'Dayi'); +INSERT INTO `t_region` VALUES (2513, '蒲江县', '510131', '028', 2498, 'Pujiang'); +INSERT INTO `t_region` VALUES (2514, '新津县', '510132', '028', 2498, 'Xinjin'); +INSERT INTO `t_region` VALUES (2515, '简阳市', '510185', '028', 2498, 'Jianyang'); +INSERT INTO `t_region` VALUES (2516, '都江堰市', '510181', '028', 2498, 'dujiangyan city'); +INSERT INTO `t_region` VALUES (2517, '彭州市', '510182', '028', 2498, 'Pengzhou City'); +INSERT INTO `t_region` VALUES (2518, '邛崃市', '510183', '028', 2498, 'Qionglai City'); +INSERT INTO `t_region` VALUES (2519, '崇州市', '510184', '028', 2498, 'Chongzhou'); +INSERT INTO `t_region` VALUES (2520, '自贡市', '510300', '0813', 2497, 'Zigong'); +INSERT INTO `t_region` VALUES (2521, '自贡市市辖区', '510301', '0813', 2520, 'Zigong municipal'); +INSERT INTO `t_region` VALUES (2522, '自流井区', '510302', '0813', 2520, 'ziliujing'); +INSERT INTO `t_region` VALUES (2523, '贡井区', '510303', '0813', 2520, 'Gongjing'); +INSERT INTO `t_region` VALUES (2524, '大安区', '510304', '0813', 2520, 'Da\'an'); +INSERT INTO `t_region` VALUES (2525, '沿滩区', '510311', '0813', 2520, 'Yantan'); +INSERT INTO `t_region` VALUES (2526, '荣县', '510321', '0813', 2520, 'Rongxian'); +INSERT INTO `t_region` VALUES (2527, '富顺县', '510322', '0813', 2520, 'Fushun'); +INSERT INTO `t_region` VALUES (2528, '攀枝花市', '510400', '0812', 2497, 'Panzhihua City'); +INSERT INTO `t_region` VALUES (2529, '攀枝花市市辖区', '510401', '0812', 2528, 'Panzhihua municipal'); +INSERT INTO `t_region` VALUES (2530, '东区', '510402', '0812', 2528, 'Eastern Conference '); +INSERT INTO `t_region` VALUES (2531, '西区', '510403', '0812', 2528, '[体]western conference '); +INSERT INTO `t_region` VALUES (2532, '仁和区', '510411', '0812', 2528, 'renhe'); +INSERT INTO `t_region` VALUES (2533, '米易县', '510421', '0812', 2528, 'Miyi'); +INSERT INTO `t_region` VALUES (2534, '盐边县', '510422', '0812', 2528, 'Yanbian'); +INSERT INTO `t_region` VALUES (2535, '泸州市', '510500', '0830', 2497, 'Luzhou City'); +INSERT INTO `t_region` VALUES (2536, '泸州市市辖区', '510501', '0830', 2535, 'Luzhou municipal'); +INSERT INTO `t_region` VALUES (2537, '江阳区', '510502', '0830', 2535, 'jiangyang'); +INSERT INTO `t_region` VALUES (2538, '纳溪区', '510503', '0830', 2535, 'Naxi'); +INSERT INTO `t_region` VALUES (2539, '龙马潭区', '510504', '0830', 2535, 'Longmatan'); +INSERT INTO `t_region` VALUES (2540, '泸县', '510521', '0830', 2535, 'Luxian'); +INSERT INTO `t_region` VALUES (2541, '合江县', '510522', '0830', 2535, 'Hejiang'); +INSERT INTO `t_region` VALUES (2542, '叙永县', '510524', '0830', 2535, 'Xuyong'); +INSERT INTO `t_region` VALUES (2543, '古蔺县', '510525', '0830', 2535, 'Gulin'); +INSERT INTO `t_region` VALUES (2544, '德阳市', '510600', '0838', 2497, 'deyang'); +INSERT INTO `t_region` VALUES (2545, '德阳市市辖区', '510601', '0838', 2544, 'Deyang municipal'); +INSERT INTO `t_region` VALUES (2546, '旌阳区', '510603', '0838', 2544, 'Jingyang'); +INSERT INTO `t_region` VALUES (2547, '中江县', '510623', '0838', 2544, 'Zhongjiang'); +INSERT INTO `t_region` VALUES (2548, '罗江县', '510626', '0838', 2544, 'Luojiang'); +INSERT INTO `t_region` VALUES (2549, '广汉市', '510681', '0838', 2544, 'Guanghan'); +INSERT INTO `t_region` VALUES (2550, '什邡市', '510682', '0838', 2544, 'Shifang City'); +INSERT INTO `t_region` VALUES (2551, '绵竹市', '510683', '0838', 2544, 'Mianzhu City'); +INSERT INTO `t_region` VALUES (2552, '绵阳市', '510700', '0816', 2497, 'Mianyang'); +INSERT INTO `t_region` VALUES (2553, '绵阳市市辖区', '510701', '0816', 2552, 'Mianyang municipal'); +INSERT INTO `t_region` VALUES (2554, '涪城区', '510703', '0816', 2552, 'fucheng'); +INSERT INTO `t_region` VALUES (2555, '游仙区', '510704', '0816', 2552, 'Youxian'); +INSERT INTO `t_region` VALUES (2556, '三台县', '510722', '0816', 2552, 'Santai'); +INSERT INTO `t_region` VALUES (2557, '盐亭县', '510723', '0816', 2552, 'Yanting'); +INSERT INTO `t_region` VALUES (2558, '安州区', '510705', '0816', 2552, 'Anzhou'); +INSERT INTO `t_region` VALUES (2559, '梓潼县', '510725', '0816', 2552, 'Zitong'); +INSERT INTO `t_region` VALUES (2560, '北川羌族自治县', '510726', '0816', 2552, 'Beichuan Qiang Autonomous'); +INSERT INTO `t_region` VALUES (2561, '平武县', '510727', '0816', 2552, 'Pingwu'); +INSERT INTO `t_region` VALUES (2562, '江油市', '510781', '0816', 2552, 'Jiangyou City'); +INSERT INTO `t_region` VALUES (2563, '广元市', '510800', '0839', 2497, 'Guangyuan City'); +INSERT INTO `t_region` VALUES (2564, '广元市市辖区', '510801', '0839', 2563, 'Guangyuan municipal'); +INSERT INTO `t_region` VALUES (2565, '利州区', '510802', '0839', 2563, 'Lezhou'); +INSERT INTO `t_region` VALUES (2566, '昭化区', '510811', '0839', 2563, 'Zhao Hua'); +INSERT INTO `t_region` VALUES (2567, '朝天区', '510812', '0839', 2563, 'chaotian'); +INSERT INTO `t_region` VALUES (2568, '旺苍县', '510821', '0839', 2563, 'Wangcang'); +INSERT INTO `t_region` VALUES (2569, '青川县', '510822', '0839', 2563, 'Qingchuan'); +INSERT INTO `t_region` VALUES (2570, '剑阁县', '510823', '0839', 2563, 'Jiange'); +INSERT INTO `t_region` VALUES (2571, '苍溪县', '510824', '0839', 2563, 'Cangxi'); +INSERT INTO `t_region` VALUES (2572, '遂宁市', '510900', '0825', 2497, 'suining city'); +INSERT INTO `t_region` VALUES (2573, '遂宁市市辖区', '510901', '0825', 2572, 'Suining municipal'); +INSERT INTO `t_region` VALUES (2574, '船山区', '510903', '0825', 2572, 'Ship mountain'); +INSERT INTO `t_region` VALUES (2575, '安居区', '510904', '0825', 2572, 'anju'); +INSERT INTO `t_region` VALUES (2576, '蓬溪县', '510921', '0825', 2572, 'Pengxi'); +INSERT INTO `t_region` VALUES (2577, '射洪县', '510922', '0825', 2572, 'Shehong'); +INSERT INTO `t_region` VALUES (2578, '大英县', '510923', '0825', 2572, 'Daying'); +INSERT INTO `t_region` VALUES (2579, '内江市', '511000', '1832', 2497, 'Neijiang'); +INSERT INTO `t_region` VALUES (2580, '内江市市辖区', '511001', '1832', 2579, 'Neijiang municipal'); +INSERT INTO `t_region` VALUES (2581, '市中区', '511002', '1832', 2579, 'Shizhong'); +INSERT INTO `t_region` VALUES (2582, '东兴区', '511011', '1832', 2579, 'dongxing'); +INSERT INTO `t_region` VALUES (2583, '威远县', '511024', '1832', 2579, 'Weiyuan'); +INSERT INTO `t_region` VALUES (2584, '资中县', '511025', '1832', 2579, 'Zizhong'); +INSERT INTO `t_region` VALUES (2585, '隆昌市', '511028', '1832', 2579, 'Longchang City'); +INSERT INTO `t_region` VALUES (2586, '乐山市', '511100', '0833', 2497, 'Leshan City'); +INSERT INTO `t_region` VALUES (2587, '乐山市市辖区', '511101', '0833', 2586, 'Leshan municipal'); +INSERT INTO `t_region` VALUES (2588, '市中区', '511102', '0833', 2586, 'Shizhong'); +INSERT INTO `t_region` VALUES (2589, '沙湾区', '511111', '0833', 2586, 'Shawan'); +INSERT INTO `t_region` VALUES (2590, '五通桥区', '511112', '0833', 2586, 'Wutongqiao'); +INSERT INTO `t_region` VALUES (2591, '金口河区', '511113', '0833', 2586, 'Jinkouhe'); +INSERT INTO `t_region` VALUES (2592, '犍为县', '511123', '0833', 2586, 'Qianwei'); +INSERT INTO `t_region` VALUES (2593, '井研县', '511124', '0833', 2586, 'Jingyan'); +INSERT INTO `t_region` VALUES (2594, '夹江县', '511126', '0833', 2586, 'Jiajiang'); +INSERT INTO `t_region` VALUES (2595, '沐川县', '511129', '0833', 2586, 'Muchuan'); +INSERT INTO `t_region` VALUES (2596, '峨边彝族自治县', '511132', '0833', 2586, 'Ebian Yi Autonomous'); +INSERT INTO `t_region` VALUES (2597, '马边彝族自治县', '511133', '0833', 2586, 'Mabian'); +INSERT INTO `t_region` VALUES (2598, '峨眉山市', '511181', '0833', 2586, 'Emeishan City'); +INSERT INTO `t_region` VALUES (2599, '南充市', '511300', '0817', 2497, 'Nanchong'); +INSERT INTO `t_region` VALUES (2600, '南充市市辖区', '511301', '0817', 2599, 'Nanchong municipal'); +INSERT INTO `t_region` VALUES (2601, '顺庆区', '511302', '0817', 2599, 'Shunqing'); +INSERT INTO `t_region` VALUES (2602, '高坪区', '511303', '0817', 2599, 'gaoping'); +INSERT INTO `t_region` VALUES (2603, '嘉陵区', '511304', '0817', 2599, 'jialing'); +INSERT INTO `t_region` VALUES (2604, '南部县', '511321', '0817', 2599, 'Nanbu'); +INSERT INTO `t_region` VALUES (2605, '营山县', '511322', '0817', 2599, 'Yingshan'); +INSERT INTO `t_region` VALUES (2606, '蓬安县', '511323', '0817', 2599, 'Peng’an'); +INSERT INTO `t_region` VALUES (2607, '仪陇县', '511324', '0817', 2599, 'Yilong'); +INSERT INTO `t_region` VALUES (2608, '西充县', '511325', '0817', 2599, 'Xichong'); +INSERT INTO `t_region` VALUES (2609, '阆中市', '511381', '0817', 2599, 'Langzhong'); +INSERT INTO `t_region` VALUES (2610, '眉山市', '511400', '1833', 2497, 'Meishan City'); +INSERT INTO `t_region` VALUES (2611, '眉山市市辖区', '511401', '1833', 2610, 'Meishan municipal'); +INSERT INTO `t_region` VALUES (2612, '东坡区', '511402', '1833', 2610, 'Dongpo'); +INSERT INTO `t_region` VALUES (2613, '彭山区', '511403', '1833', 2610, 'Pengshan'); +INSERT INTO `t_region` VALUES (2614, '仁寿县', '511421', '1833', 2610, 'Renshou'); +INSERT INTO `t_region` VALUES (2615, '洪雅县', '511423', '1833', 2610, 'Hongya'); +INSERT INTO `t_region` VALUES (2616, '丹棱县', '511424', '1833', 2610, 'Danleng'); +INSERT INTO `t_region` VALUES (2617, '青神县', '511425', '1833', 2610, 'Qingshen'); +INSERT INTO `t_region` VALUES (2618, '宜宾市', '511500', '0831', 2497, 'Yibin'); +INSERT INTO `t_region` VALUES (2619, '宜宾市市辖区', '511501', '0831', 2618, 'Yibin municipal'); +INSERT INTO `t_region` VALUES (2620, '翠屏区', '511502', '0831', 2618, 'Cuiping'); +INSERT INTO `t_region` VALUES (2621, '南溪区', '511503', '0831', 2618, 'Nanxi'); +INSERT INTO `t_region` VALUES (2622, '宜宾县', '511521', '0831', 2618, 'Yibin'); +INSERT INTO `t_region` VALUES (2623, '江安县', '511523', '0831', 2618, 'Jiang’an'); +INSERT INTO `t_region` VALUES (2624, '长宁县', '511524', '0831', 2618, 'Changning'); +INSERT INTO `t_region` VALUES (2625, '高县', '511525', '0831', 2618, 'Gaoxian'); +INSERT INTO `t_region` VALUES (2626, '珙县', '511526', '0831', 2618, 'Gongxian'); +INSERT INTO `t_region` VALUES (2627, '筠连县', '511527', '0831', 2618, 'Junlian'); +INSERT INTO `t_region` VALUES (2628, '兴文县', '511528', '0831', 2618, 'Xingwen'); +INSERT INTO `t_region` VALUES (2629, '屏山县', '511529', '0831', 2618, 'Pingshan'); +INSERT INTO `t_region` VALUES (2630, '广安市', '511600', '0826', 2497, 'Guang\'an City'); +INSERT INTO `t_region` VALUES (2631, '广安市市辖区', '511601', '0826', 2630, 'Guang\'an municipal'); +INSERT INTO `t_region` VALUES (2632, '广安区', '511602', '0826', 2630, 'Guang\'an'); +INSERT INTO `t_region` VALUES (2633, '前锋区', '511603', '0826', 2630, 'Forward area'); +INSERT INTO `t_region` VALUES (2634, '岳池县', '511621', '0826', 2630, 'Yuechi'); +INSERT INTO `t_region` VALUES (2635, '武胜县', '511622', '0826', 2630, 'Wusheng'); +INSERT INTO `t_region` VALUES (2636, '邻水县', '511623', '0826', 2630, 'Linshui'); +INSERT INTO `t_region` VALUES (2637, '华蓥市', '511681', '0826', 2630, 'Huaying'); +INSERT INTO `t_region` VALUES (2638, '达州市', '511700', '0818', 2497, 'Dazhou City'); +INSERT INTO `t_region` VALUES (2639, '达州市市辖区', '511701', '0818', 2638, 'Dazhou municipal'); +INSERT INTO `t_region` VALUES (2640, '通川区', '511702', '0818', 2638, 'Tongchuan'); +INSERT INTO `t_region` VALUES (2641, '达川区', '511703', '0818', 2638, 'Da Chuan'); +INSERT INTO `t_region` VALUES (2642, '宣汉县', '511722', '0818', 2638, 'Xuanhan'); +INSERT INTO `t_region` VALUES (2643, '开江县', '511723', '0818', 2638, 'Kaijiang'); +INSERT INTO `t_region` VALUES (2644, '大竹县', '511724', '0818', 2638, 'Dazhu'); +INSERT INTO `t_region` VALUES (2645, '渠县', '511725', '0818', 2638, 'Quxian'); +INSERT INTO `t_region` VALUES (2646, '万源市', '511781', '0818', 2638, 'wanyuan city'); +INSERT INTO `t_region` VALUES (2647, '雅安市', '511800', '0835', 2497, 'Ya\'an City'); +INSERT INTO `t_region` VALUES (2648, '雅安市市辖区', '511801', '0835', 2647, 'Ya\'an municipal'); +INSERT INTO `t_region` VALUES (2649, '雨城区', '511802', '0835', 2647, 'Yucheng City'); +INSERT INTO `t_region` VALUES (2650, '名山区', '511803', '0835', 2647, 'Mingshan'); +INSERT INTO `t_region` VALUES (2651, '荥经县', '511822', '0835', 2647, 'Xingjing'); +INSERT INTO `t_region` VALUES (2652, '汉源县', '511823', '0835', 2647, 'Hanyuan'); +INSERT INTO `t_region` VALUES (2653, '石棉县', '511824', '0835', 2647, 'Shimian'); +INSERT INTO `t_region` VALUES (2654, '天全县', '511825', '0835', 2647, 'Tianquan'); +INSERT INTO `t_region` VALUES (2655, '芦山县', '511826', '0835', 2647, 'Lushan'); +INSERT INTO `t_region` VALUES (2656, '宝兴县', '511827', '0835', 2647, 'Baoxing'); +INSERT INTO `t_region` VALUES (2657, '巴中市', '511900', '0827', 2497, 'Bazhong City'); +INSERT INTO `t_region` VALUES (2658, '巴中市市辖区', '511901', '0827', 2657, 'Bazhong municipal'); +INSERT INTO `t_region` VALUES (2659, '巴州区', '511902', '0827', 2657, 'bazhou'); +INSERT INTO `t_region` VALUES (2660, '恩阳区', '511903', '0827', 2657, 'EN Yang'); +INSERT INTO `t_region` VALUES (2661, '通江县', '511921', '0827', 2657, 'Tongjiang'); +INSERT INTO `t_region` VALUES (2662, '南江县', '511922', '0827', 2657, 'Nanjiang'); +INSERT INTO `t_region` VALUES (2663, '平昌县', '511923', '0827', 2657, 'Pingchang'); +INSERT INTO `t_region` VALUES (2664, '资阳市', '512000', '0832', 2497, 'Ziyang City'); +INSERT INTO `t_region` VALUES (2665, '资阳市市辖区', '512001', '0832', 2664, 'Ziyang City'); +INSERT INTO `t_region` VALUES (2666, '雁江区', '512002', '0832', 2664, 'yanjiang'); +INSERT INTO `t_region` VALUES (2667, '安岳县', '512021', '0832', 2664, 'Anyue'); +INSERT INTO `t_region` VALUES (2668, '乐至县', '512022', '0832', 2664, 'Lezhi'); +INSERT INTO `t_region` VALUES (2669, '阿坝藏族羌族自治州', '513200', '0837', 2497, 'Aba Tibetan and Qiang Autonomous Prefecture'); +INSERT INTO `t_region` VALUES (2670, '汶川县', '513221', '0837', 2669, 'Wenchuan'); +INSERT INTO `t_region` VALUES (2671, '理县', '513222', '0837', 2669, 'Lixian'); +INSERT INTO `t_region` VALUES (2672, '茂县', '513223', '0837', 2669, 'Maoxian'); +INSERT INTO `t_region` VALUES (2673, '松潘县', '513224', '0837', 2669, 'Songpan'); +INSERT INTO `t_region` VALUES (2674, '九寨沟县', '513225', '0837', 2669, 'Jiuzhaigou'); +INSERT INTO `t_region` VALUES (2675, '金川县', '513226', '0837', 2669, 'Jinchuan'); +INSERT INTO `t_region` VALUES (2676, '小金县', '513227', '0837', 2669, 'Xiaojin'); +INSERT INTO `t_region` VALUES (2677, '黑水县', '513228', '0837', 2669, 'Heishui'); +INSERT INTO `t_region` VALUES (2678, '马尔康市', '513201', '0837', 2669, 'Barkam City'); +INSERT INTO `t_region` VALUES (2679, '壤塘县', '513230', '0837', 2669, 'Zamtang'); +INSERT INTO `t_region` VALUES (2680, '阿坝县', '513231', '0837', 2669, 'Aba'); +INSERT INTO `t_region` VALUES (2681, '若尔盖县', '513232', '0837', 2669, 'Zoigê'); +INSERT INTO `t_region` VALUES (2682, '红原县', '513233', '0837', 2669, 'Hongyuan'); +INSERT INTO `t_region` VALUES (2683, '甘孜藏族自治州', '513300', '0836', 2497, 'Tibetan Autonomous Prefecture of Garzê'); +INSERT INTO `t_region` VALUES (2684, '康定市', '513301', '0836', 2683, 'Kangding City'); +INSERT INTO `t_region` VALUES (2685, '泸定县', '513322', '0836', 2683, 'Luding'); +INSERT INTO `t_region` VALUES (2686, '丹巴县', '513323', '0836', 2683, 'Danba'); +INSERT INTO `t_region` VALUES (2687, '九龙县', '513324', '0836', 2683, 'Jiulong'); +INSERT INTO `t_region` VALUES (2688, '雅江县', '513325', '0836', 2683, 'Yajiang'); +INSERT INTO `t_region` VALUES (2689, '道孚县', '513326', '0836', 2683, 'Dawu'); +INSERT INTO `t_region` VALUES (2690, '炉霍县', '513327', '0836', 2683, 'Luhuo'); +INSERT INTO `t_region` VALUES (2691, '甘孜县', '513328', '0836', 2683, 'Garzê'); +INSERT INTO `t_region` VALUES (2692, '新龙县', '513329', '0836', 2683, 'Xinlong'); +INSERT INTO `t_region` VALUES (2693, '德格县', '513330', '0836', 2683, 'Dêgê'); +INSERT INTO `t_region` VALUES (2694, '白玉县', '513331', '0836', 2683, 'Baiyü'); +INSERT INTO `t_region` VALUES (2695, '石渠县', '513332', '0836', 2683, 'Sêrxü'); +INSERT INTO `t_region` VALUES (2696, '色达县', '513333', '0836', 2683, 'Sêrtar'); +INSERT INTO `t_region` VALUES (2697, '理塘县', '513334', '0836', 2683, 'Litang'); +INSERT INTO `t_region` VALUES (2698, '巴塘县', '513335', '0836', 2683, 'Batang'); +INSERT INTO `t_region` VALUES (2699, '乡城县', '513336', '0836', 2683, 'Xiangcheng'); +INSERT INTO `t_region` VALUES (2700, '稻城县', '513337', '0836', 2683, 'Daocheng'); +INSERT INTO `t_region` VALUES (2701, '得荣县', '513338', '0836', 2683, 'Dêrong'); +INSERT INTO `t_region` VALUES (2702, '凉山彝族自治州', '513400', '0834', 2497, 'Yi Autonomous Prefecture of Liangshan '); +INSERT INTO `t_region` VALUES (2703, '西昌市', '513401', '0834', 2702, 'Xichang City'); +INSERT INTO `t_region` VALUES (2704, '木里藏族自治县', '513422', '0834', 2702, 'Tibetan Autonomousof Muli '); +INSERT INTO `t_region` VALUES (2705, '盐源县', '513423', '0834', 2702, 'Yanyuan'); +INSERT INTO `t_region` VALUES (2706, '德昌县', '513424', '0834', 2702, 'Dechang'); +INSERT INTO `t_region` VALUES (2707, '会理县', '513425', '0834', 2702, 'Huili'); +INSERT INTO `t_region` VALUES (2708, '会东县', '513426', '0834', 2702, 'Huidong'); +INSERT INTO `t_region` VALUES (2709, '宁南县', '513427', '0834', 2702, 'Ningnan'); +INSERT INTO `t_region` VALUES (2710, '普格县', '513428', '0834', 2702, 'Puge'); +INSERT INTO `t_region` VALUES (2711, '布拖县', '513429', '0834', 2702, 'Butuo'); +INSERT INTO `t_region` VALUES (2712, '金阳县', '513430', '0834', 2702, 'Jinyang'); +INSERT INTO `t_region` VALUES (2713, '昭觉县', '513431', '0834', 2702, 'Zhaojue'); +INSERT INTO `t_region` VALUES (2714, '喜德县', '513432', '0834', 2702, 'Xide'); +INSERT INTO `t_region` VALUES (2715, '冕宁县', '513433', '0834', 2702, 'Mianning'); +INSERT INTO `t_region` VALUES (2716, '越西县', '513434', '0834', 2702, 'Yuexi'); +INSERT INTO `t_region` VALUES (2717, '甘洛县', '513435', '0834', 2702, 'Ganluo'); +INSERT INTO `t_region` VALUES (2718, '美姑县', '513436', '0834', 2702, 'Meigu'); +INSERT INTO `t_region` VALUES (2719, '雷波县', '513437', '0834', 2702, 'Leibo'); +INSERT INTO `t_region` VALUES (2720, '贵州省', '520000', '', 0, 'Guizhou Province '); +INSERT INTO `t_region` VALUES (2721, '贵阳市', '520100', '0851', 2720, 'Guiyang'); +INSERT INTO `t_region` VALUES (2722, '贵阳市市辖区', '520101', '0851', 2721, 'Guiyang municipal'); +INSERT INTO `t_region` VALUES (2723, '南明区', '520102', '0851', 2721, 'Nanming'); +INSERT INTO `t_region` VALUES (2724, '云岩区', '520103', '0851', 2721, 'yunyan'); +INSERT INTO `t_region` VALUES (2725, '花溪区', '520111', '0851', 2721, 'huaxi'); +INSERT INTO `t_region` VALUES (2726, '乌当区', '520112', '0851', 2721, 'Wudang'); +INSERT INTO `t_region` VALUES (2727, '白云区', '520113', '0851', 2721, 'Baiyun'); +INSERT INTO `t_region` VALUES (2728, '观山湖区', '520115', '0851', 2721, 'Guan Shan Lake area'); +INSERT INTO `t_region` VALUES (2729, '开阳县', '520121', '0851', 2721, 'Kaiyang'); +INSERT INTO `t_region` VALUES (2730, '息烽县', '520122', '0851', 2721, 'Xifeng'); +INSERT INTO `t_region` VALUES (2731, '修文县', '520123', '0851', 2721, 'Xiuwen'); +INSERT INTO `t_region` VALUES (2732, '清镇市', '520181', '0851', 2721, 'qingzhen'); +INSERT INTO `t_region` VALUES (2733, '六盘水市', '520200', '0858', 2720, 'liupanshui city'); +INSERT INTO `t_region` VALUES (2734, '钟山区', '520201', '0858', 2733, 'Zhongshan'); +INSERT INTO `t_region` VALUES (2735, '六枝特区', '520203', '0858', 2733, 'Six special economic zones'); +INSERT INTO `t_region` VALUES (2736, '水城县', '520221', '0858', 2733, 'Shuicheng'); +INSERT INTO `t_region` VALUES (2737, '盘州市', '520222', '0858', 2733, 'Pan Zhou City'); +INSERT INTO `t_region` VALUES (2738, '遵义市', '520300', '0852', 2720, 'Zunyi'); +INSERT INTO `t_region` VALUES (2739, '遵义市市辖区', '520301', '0852', 2738, 'Zunyi municipal'); +INSERT INTO `t_region` VALUES (2740, '红花岗区', '520302', '0852', 2738, 'honghuagang'); +INSERT INTO `t_region` VALUES (2741, '汇川区', '520303', '0852', 2738, 'Huichuan'); +INSERT INTO `t_region` VALUES (2742, '播州区', '520304', '0852', 2738, 'Sow state'); +INSERT INTO `t_region` VALUES (2743, '桐梓县', '520322', '0852', 2738, 'Tongzi'); +INSERT INTO `t_region` VALUES (2744, '绥阳县', '520323', '0852', 2738, 'Suiyang'); +INSERT INTO `t_region` VALUES (2745, '正安县', '520324', '0852', 2738, 'Zheng’an'); +INSERT INTO `t_region` VALUES (2746, '道真仡佬族苗族自治县', '520325', '0852', 2738, 'Daozhen Gelao and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2747, '务川仡佬族苗族自治县', '520326', '0852', 2738, 'Wuchuan Gelao and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2748, '凤冈县', '520327', '0852', 2738, 'Fenggang'); +INSERT INTO `t_region` VALUES (2749, '湄潭县', '520328', '0852', 2738, 'Meitan'); +INSERT INTO `t_region` VALUES (2750, '余庆县', '520329', '0852', 2738, 'Yuqing'); +INSERT INTO `t_region` VALUES (2751, '习水县', '520330', '0852', 2738, 'Xishui'); +INSERT INTO `t_region` VALUES (2752, '赤水市', '520381', '0852', 2738, 'Chishui'); +INSERT INTO `t_region` VALUES (2753, '仁怀市', '520382', '0852', 2738, 'Renhuai'); +INSERT INTO `t_region` VALUES (2754, '安顺市', '520400', '0853', 2720, 'Anshun'); +INSERT INTO `t_region` VALUES (2755, '安顺市市辖区', '520401', '0853', 2754, 'Anshun municipal'); +INSERT INTO `t_region` VALUES (2756, '西秀区', '520402', '0853', 2754, 'Xixiu'); +INSERT INTO `t_region` VALUES (2757, '平坝区', '520403', '0853', 2754, 'Pingba area'); +INSERT INTO `t_region` VALUES (2758, '普定县', '520422', '0853', 2754, 'Puding'); +INSERT INTO `t_region` VALUES (2759, '镇宁布依族苗族自治县', '520423', '0853', 2754, 'Bouyei-Miao Autonomousof Zhenning '); +INSERT INTO `t_region` VALUES (2760, '关岭布依族苗族自治县', '520424', '0853', 2754, 'Guanling'); +INSERT INTO `t_region` VALUES (2761, '紫云苗族布依族自治县', '520425', '0853', 2754, 'Bouyei-Miao Autonomousof Ziyun '); +INSERT INTO `t_region` VALUES (2762, '毕节市', '520500', '0857', 2720, 'Bijie City'); +INSERT INTO `t_region` VALUES (2763, '七星关区', '520502', '0857', 2762, 'Qixingguan'); +INSERT INTO `t_region` VALUES (2764, '大方县', '520521', '0857', 2762, 'Dafang'); +INSERT INTO `t_region` VALUES (2765, '黔西县', '520522', '0857', 2762, 'Qianxi'); +INSERT INTO `t_region` VALUES (2766, '金沙县', '520523', '0857', 2762, 'Jinsha'); +INSERT INTO `t_region` VALUES (2767, '织金县', '520524', '0857', 2762, 'Zhijin'); +INSERT INTO `t_region` VALUES (2768, '纳雍县', '520525', '0857', 2762, 'Nayong'); +INSERT INTO `t_region` VALUES (2769, '威宁彝族回族苗族自治县', '520526', '0857', 2762, 'Yi-Hui-Miao Autonomousof Weining '); +INSERT INTO `t_region` VALUES (2770, '赫章县', '520527', '0857', 2762, 'Hezhang'); +INSERT INTO `t_region` VALUES (2771, '铜仁市', '520600', '0856', 2720, 'Tongren'); +INSERT INTO `t_region` VALUES (2772, '碧江区', '520602', '0856', 2771, 'Bijiang'); +INSERT INTO `t_region` VALUES (2773, '万山区', '520603', '0856', 2771, 'Wanshan'); +INSERT INTO `t_region` VALUES (2774, '江口县', '520621', '0856', 2771, 'Jiangkou'); +INSERT INTO `t_region` VALUES (2775, '玉屏侗族自治县', '520622', '0856', 2771, 'Yuping Dong Autonomous'); +INSERT INTO `t_region` VALUES (2776, '石阡县', '520623', '0856', 2771, 'Shiqian'); +INSERT INTO `t_region` VALUES (2777, '思南县', '520624', '0856', 2771, 'Sinan'); +INSERT INTO `t_region` VALUES (2778, '印江土家族苗族自治县', '520625', '0856', 2771, 'Yinjiang Tujia and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2779, '德江县', '520626', '0856', 2771, 'Dejiang'); +INSERT INTO `t_region` VALUES (2780, '沿河土家族自治县', '520627', '0856', 2771, 'Yanhe'); +INSERT INTO `t_region` VALUES (2781, '松桃苗族自治县', '520628', '0856', 2771, 'Miao Autonomousof Songtao '); +INSERT INTO `t_region` VALUES (2782, '黔西南布依族苗族自治州', '522300', '0859', 2720, 'Qianxinan Buyei and Miao Autonomous Prefecture'); +INSERT INTO `t_region` VALUES (2783, '兴义市', '522301', '0859', 2782, 'Xingyi'); +INSERT INTO `t_region` VALUES (2784, '兴仁县', '522322', '0859', 2782, 'Xingren'); +INSERT INTO `t_region` VALUES (2785, '普安县', '522323', '0859', 2782, 'Pu’an'); +INSERT INTO `t_region` VALUES (2786, '晴隆县', '522324', '0859', 2782, 'Qinglong'); +INSERT INTO `t_region` VALUES (2787, '贞丰县', '522325', '0859', 2782, 'Zhenfeng'); +INSERT INTO `t_region` VALUES (2788, '望谟县', '522326', '0859', 2782, 'Wangmo'); +INSERT INTO `t_region` VALUES (2789, '册亨县', '522327', '0859', 2782, 'Ceheng'); +INSERT INTO `t_region` VALUES (2790, '安龙县', '522328', '0859', 2782, 'Anlong'); +INSERT INTO `t_region` VALUES (2791, '黔东南苗族侗族自治州', '522600', '0855', 2720, 'Miao-Dong Autonomous Prefecture of Qiandongnan '); +INSERT INTO `t_region` VALUES (2792, '凯里市', '522601', '0855', 2791, 'Kaili'); +INSERT INTO `t_region` VALUES (2793, '黄平县', '522622', '0855', 2791, 'Huangping'); +INSERT INTO `t_region` VALUES (2794, '施秉县', '522623', '0855', 2791, 'Shibing'); +INSERT INTO `t_region` VALUES (2795, '三穗县', '522624', '0855', 2791, 'Sansui'); +INSERT INTO `t_region` VALUES (2796, '镇远县', '522625', '0855', 2791, 'Zhenyuan'); +INSERT INTO `t_region` VALUES (2797, '岑巩县', '522626', '0855', 2791, 'Cengong'); +INSERT INTO `t_region` VALUES (2798, '天柱县', '522627', '0855', 2791, 'Tianzhu'); +INSERT INTO `t_region` VALUES (2799, '锦屏县', '522628', '0855', 2791, 'Jinping'); +INSERT INTO `t_region` VALUES (2800, '剑河县', '522629', '0855', 2791, 'Jianhe'); +INSERT INTO `t_region` VALUES (2801, '台江县', '522630', '0855', 2791, 'Taijiang'); +INSERT INTO `t_region` VALUES (2802, '黎平县', '522631', '0855', 2791, 'Liping'); +INSERT INTO `t_region` VALUES (2803, '榕江县', '522632', '0855', 2791, 'Rongjiang'); +INSERT INTO `t_region` VALUES (2804, '从江县', '522633', '0855', 2791, 'Congjiang'); +INSERT INTO `t_region` VALUES (2805, '雷山县', '522634', '0855', 2791, 'Leishan'); +INSERT INTO `t_region` VALUES (2806, '麻江县', '522635', '0855', 2791, 'Majiang'); +INSERT INTO `t_region` VALUES (2807, '丹寨县', '522636', '0855', 2791, 'Danzhai'); +INSERT INTO `t_region` VALUES (2808, '黔南布依族苗族自治州', '522700', '0854', 2720, 'Qiannan'); +INSERT INTO `t_region` VALUES (2809, '都匀市', '522701', '0854', 2808, 'Duyun'); +INSERT INTO `t_region` VALUES (2810, '福泉市', '522702', '0854', 2808, 'fuquan'); +INSERT INTO `t_region` VALUES (2811, '荔波县', '522722', '0854', 2808, 'Libo'); +INSERT INTO `t_region` VALUES (2812, '贵定县', '522723', '0854', 2808, 'Guiding'); +INSERT INTO `t_region` VALUES (2813, '瓮安县', '522725', '0854', 2808, 'Weng’an'); +INSERT INTO `t_region` VALUES (2814, '独山县', '522726', '0854', 2808, 'DuShan'); +INSERT INTO `t_region` VALUES (2815, '平塘县', '522727', '0854', 2808, 'Pingtang'); +INSERT INTO `t_region` VALUES (2816, '罗甸县', '522728', '0854', 2808, 'Luodian'); +INSERT INTO `t_region` VALUES (2817, '长顺县', '522729', '0854', 2808, 'Changshun'); +INSERT INTO `t_region` VALUES (2818, '龙里县', '522730', '0854', 2808, 'Longli'); +INSERT INTO `t_region` VALUES (2819, '惠水县', '522731', '0854', 2808, 'Huishui'); +INSERT INTO `t_region` VALUES (2820, '三都水族自治县', '522732', '0854', 2808, 'Shui Antonomousof Sandu '); +INSERT INTO `t_region` VALUES (2821, '云南省', '530000', '', 0, 'Yunnan Province '); +INSERT INTO `t_region` VALUES (2822, '昆明市', '530100', '0871', 2821, 'Kunming'); +INSERT INTO `t_region` VALUES (2823, '昆明市市辖区', '530101', '0871', 2822, 'Kunming municipal'); +INSERT INTO `t_region` VALUES (2824, '五华区', '530102', '0871', 2822, 'wuhua'); +INSERT INTO `t_region` VALUES (2825, '盘龙区', '530103', '0871', 2822, 'Panlong area'); +INSERT INTO `t_region` VALUES (2826, '官渡区', '530111', '0871', 2822, 'Guandu'); +INSERT INTO `t_region` VALUES (2827, '西山区', '530112', '0871', 2822, 'Xishan'); +INSERT INTO `t_region` VALUES (2828, '东川区', '530113', '0871', 2822, 'Dongchuan'); +INSERT INTO `t_region` VALUES (2829, '呈贡区', '530114', '0871', 2822, 'Chenggong'); +INSERT INTO `t_region` VALUES (2830, '晋宁区', '530115', '0871', 2822, 'Jinning'); +INSERT INTO `t_region` VALUES (2831, '富民县', '530124', '0871', 2822, 'Fumin'); +INSERT INTO `t_region` VALUES (2832, '宜良县', '530125', '0871', 2822, 'Yiliang'); +INSERT INTO `t_region` VALUES (2833, '石林彝族自治县', '530126', '0871', 2822, 'Shilin Yi Autonomous'); +INSERT INTO `t_region` VALUES (2834, '嵩明县', '530127', '0871', 2822, 'Songming'); +INSERT INTO `t_region` VALUES (2835, '禄劝彝族苗族自治县', '530128', '0871', 2822, 'Luquan Yi and Miao Autonomous'); +INSERT INTO `t_region` VALUES (2836, '寻甸回族彝族自治县', '530129', '0871', 2822, 'Xundian'); +INSERT INTO `t_region` VALUES (2837, '安宁市', '530181', '0871', 2822, 'Anning'); +INSERT INTO `t_region` VALUES (2838, '曲靖市', '530300', '0874', 2821, 'Qujing'); +INSERT INTO `t_region` VALUES (2839, '曲靖市市辖区', '530301', '0874', 2838, 'Qujing municipal'); +INSERT INTO `t_region` VALUES (2840, '麒麟区', '530302', '0874', 2838, 'Qilin'); +INSERT INTO `t_region` VALUES (2841, '马龙县', '530321', '0874', 2838, 'Malong'); +INSERT INTO `t_region` VALUES (2842, '陆良县', '530322', '0874', 2838, 'Luliang'); +INSERT INTO `t_region` VALUES (2843, '师宗县', '530323', '0874', 2838, 'Shizong'); +INSERT INTO `t_region` VALUES (2844, '罗平县', '530324', '0874', 2838, 'Luoping'); +INSERT INTO `t_region` VALUES (2845, '富源县', '530325', '0874', 2838, 'Fuyuan'); +INSERT INTO `t_region` VALUES (2846, '会泽县', '530326', '0874', 2838, 'Huize'); +INSERT INTO `t_region` VALUES (2847, '沾益区', '530303', '0874', 2838, 'Zhanyi'); +INSERT INTO `t_region` VALUES (2848, '宣威市', '530381', '0874', 2838, 'xuanwei city'); +INSERT INTO `t_region` VALUES (2849, '玉溪市', '530400', '0877', 2821, 'YuXi'); +INSERT INTO `t_region` VALUES (2850, '玉溪市市辖区', '530401', '0877', 2849, 'Yuxi municipal'); +INSERT INTO `t_region` VALUES (2851, '红塔区', '530402', '0877', 2849, 'Hongta'); +INSERT INTO `t_region` VALUES (2852, '江川区', '530403', '0877', 2849, 'Jiangchuan'); +INSERT INTO `t_region` VALUES (2853, '澄江县', '530422', '0877', 2849, 'Chengjiang'); +INSERT INTO `t_region` VALUES (2854, '通海县', '530423', '0877', 2849, 'Tonghai'); +INSERT INTO `t_region` VALUES (2855, '华宁县', '530424', '0877', 2849, 'Huaning'); +INSERT INTO `t_region` VALUES (2856, '易门县', '530425', '0877', 2849, 'Yimen'); +INSERT INTO `t_region` VALUES (2857, '峨山彝族自治县', '530426', '0877', 2849, 'Yi Autonomousof Eshan '); +INSERT INTO `t_region` VALUES (2858, '新平彝族傣族自治县', '530427', '0877', 2849, 'Xinping Yi and Dai Autonomous'); +INSERT INTO `t_region` VALUES (2859, '元江哈尼族彝族傣族自治县', '530428', '0877', 2849, 'Yi nationality and Dai Autonomousof Yuanjiang Hani Nationality'); +INSERT INTO `t_region` VALUES (2860, '保山市', '530500', '0875', 2821, 'baoshan'); +INSERT INTO `t_region` VALUES (2861, '保山市市辖区', '530501', '0875', 2860, 'Baoshan municipal'); +INSERT INTO `t_region` VALUES (2862, '隆阳区', '530502', '0875', 2860, 'Longyang'); +INSERT INTO `t_region` VALUES (2863, '施甸县', '530521', '0875', 2860, 'Shidian'); +INSERT INTO `t_region` VALUES (2864, '腾冲市', '530581', '0875', 2860, 'Tengchong City'); +INSERT INTO `t_region` VALUES (2865, '龙陵县', '530523', '0875', 2860, 'Longling'); +INSERT INTO `t_region` VALUES (2866, '昌宁县', '530524', '0875', 2860, 'Changning'); +INSERT INTO `t_region` VALUES (2867, '昭通市', '530600', '0870', 2821, 'zhaotong'); +INSERT INTO `t_region` VALUES (2868, '昭通市市辖区', '530601', '0870', 2867, 'Zhaotong municipal'); +INSERT INTO `t_region` VALUES (2869, '昭阳区', '530602', '0870', 2867, 'Zhaoyang'); +INSERT INTO `t_region` VALUES (2870, '鲁甸县', '530621', '0870', 2867, 'Ludian'); +INSERT INTO `t_region` VALUES (2871, '巧家县', '530622', '0870', 2867, 'Qiaojia'); +INSERT INTO `t_region` VALUES (2872, '盐津县', '530623', '0870', 2867, 'Yanjin'); +INSERT INTO `t_region` VALUES (2873, '大关县', '530624', '0870', 2867, 'Daguan'); +INSERT INTO `t_region` VALUES (2874, '永善县', '530625', '0870', 2867, 'Yongshan'); +INSERT INTO `t_region` VALUES (2875, '绥江县', '530626', '0870', 2867, 'Suijiang'); +INSERT INTO `t_region` VALUES (2876, '镇雄县', '530627', '0870', 2867, 'Zhenxiong'); +INSERT INTO `t_region` VALUES (2877, '彝良县', '530628', '0870', 2867, 'Yiliang'); +INSERT INTO `t_region` VALUES (2878, '威信县', '530629', '0870', 2867, 'Weixin'); +INSERT INTO `t_region` VALUES (2879, '水富县', '530630', '0870', 2867, 'Shuifu'); +INSERT INTO `t_region` VALUES (2880, '丽江市', '530700', '0888', 2821, 'lijiang'); +INSERT INTO `t_region` VALUES (2881, '丽江市市辖区', '530701', '0888', 2880, 'Lijiang municipal'); +INSERT INTO `t_region` VALUES (2882, '古城区', '530702', '0888', 2880, 'old town'); +INSERT INTO `t_region` VALUES (2883, '玉龙纳西族自治县', '530721', '0888', 2880, 'Yulong Naxi Autonomous'); +INSERT INTO `t_region` VALUES (2884, '永胜县', '530722', '0888', 2880, 'Yongsheng'); +INSERT INTO `t_region` VALUES (2885, '华坪县', '530723', '0888', 2880, 'Huaping'); +INSERT INTO `t_region` VALUES (2886, '宁蒗彝族自治县', '530724', '0888', 2880, 'Yi Autonomousof Ninglang '); +INSERT INTO `t_region` VALUES (2887, '普洱市', '530800', '0879', 2821, 'Pu\'er City'); +INSERT INTO `t_region` VALUES (2888, '普洱市市辖区', '530801', '0879', 2887, 'Pu\'er City'); +INSERT INTO `t_region` VALUES (2889, '思茅区', '530802', '0879', 2887, 'Simao'); +INSERT INTO `t_region` VALUES (2890, '宁洱哈尼族彝族自治县', '530821', '0879', 2887, 'Ning\'er'); +INSERT INTO `t_region` VALUES (2891, '墨江哈尼族自治县', '530822', '0879', 2887, 'Mojiang Hani Autonomous'); +INSERT INTO `t_region` VALUES (2892, '景东彝族自治县', '530823', '0879', 2887, 'Jingdong Yi Autonomous'); +INSERT INTO `t_region` VALUES (2893, '景谷傣族彝族自治县', '530824', '0879', 2887, 'Jinggu'); +INSERT INTO `t_region` VALUES (2894, '镇沅彝族哈尼族拉祜族自治县', '530825', '0879', 2887, 'Hani ethnic Lahu Autonomousof Zhenyuan Yi Nationality'); +INSERT INTO `t_region` VALUES (2895, '江城哈尼族彝族自治县', '530826', '0879', 2887, 'Hani-Yi Autonomousof Jiangcheng '); +INSERT INTO `t_region` VALUES (2896, '孟连傣族拉祜族佤族自治县', '530827', '0879', 2887, 'Dai-Lahu-Va Autonomousof Menglian '); +INSERT INTO `t_region` VALUES (2897, '澜沧拉祜族自治县', '530828', '0879', 2887, 'Lahu Autonomousof Lancang '); +INSERT INTO `t_region` VALUES (2898, '西盟佤族自治县', '530829', '0879', 2887, 'Ximeng Vazu Zizhixian'); +INSERT INTO `t_region` VALUES (2899, '临沧市', '530900', '0883', 2821, 'Lincang City'); +INSERT INTO `t_region` VALUES (2900, '临沧市市辖区', '530901', '0883', 2899, 'Lincang City'); +INSERT INTO `t_region` VALUES (2901, '临翔区', '530902', '0883', 2899, 'Linxiang'); +INSERT INTO `t_region` VALUES (2902, '凤庆县', '530921', '0883', 2899, 'Fengqing'); +INSERT INTO `t_region` VALUES (2903, '云县', '530922', '0883', 2899, 'Yunxian'); +INSERT INTO `t_region` VALUES (2904, '永德县', '530923', '0883', 2899, 'Yongde'); +INSERT INTO `t_region` VALUES (2905, '镇康县', '530924', '0883', 2899, 'Zhenkang'); +INSERT INTO `t_region` VALUES (2906, '双江拉祜族佤族布朗族傣族自治县', '530925', '0883', 2899, 'Shuang Jiang Lahu nationality Wa nationality and Dai Nationality Autonomousof Brown nationality'); +INSERT INTO `t_region` VALUES (2907, '耿马傣族佤族自治县', '530926', '0883', 2899, 'Dai-Va Autonomousof Gengma '); +INSERT INTO `t_region` VALUES (2908, '沧源佤族自治县', '530927', '0883', 2899, 'Va Autonomousof Cangyuan '); +INSERT INTO `t_region` VALUES (2909, '楚雄彝族自治州', '532300', '0878', 2821, 'Yi Autonomous Prefecture of Chuxiong '); +INSERT INTO `t_region` VALUES (2910, '楚雄市', '532301', '0878', 2909, 'Chuxiong City'); +INSERT INTO `t_region` VALUES (2911, '双柏县', '532322', '0878', 2909, 'Shuangbai'); +INSERT INTO `t_region` VALUES (2912, '牟定县', '532323', '0878', 2909, 'Mouding'); +INSERT INTO `t_region` VALUES (2913, '南华县', '532324', '0878', 2909, 'Nanhua'); +INSERT INTO `t_region` VALUES (2914, '姚安县', '532325', '0878', 2909, 'Yao’an'); +INSERT INTO `t_region` VALUES (2915, '大姚县', '532326', '0878', 2909, 'Dayao'); +INSERT INTO `t_region` VALUES (2916, '永仁县', '532327', '0878', 2909, 'Yongren'); +INSERT INTO `t_region` VALUES (2917, '元谋县', '532328', '0878', 2909, 'Yuanmou'); +INSERT INTO `t_region` VALUES (2918, '武定县', '532329', '0878', 2909, 'Wuding'); +INSERT INTO `t_region` VALUES (2919, '禄丰县', '532331', '0878', 2909, 'Lufeng'); +INSERT INTO `t_region` VALUES (2920, '红河哈尼族彝族自治州', '532500', '0873', 2821, 'Hani-Yi Autonomous Prefecture of Honghe '); +INSERT INTO `t_region` VALUES (2921, '个旧市', '532501', '0873', 2920, 'Gejiu'); +INSERT INTO `t_region` VALUES (2922, '开远市', '532502', '0873', 2920, 'Kaiyuan'); +INSERT INTO `t_region` VALUES (2923, '蒙自市', '532503', '0873', 2920, 'Mengzi City'); +INSERT INTO `t_region` VALUES (2924, '弥勒市', '532504', '0873', 2920, 'Maitreya City'); +INSERT INTO `t_region` VALUES (2925, '屏边苗族自治县', '532523', '0873', 2920, 'Miao Autonomousof Pingbian '); +INSERT INTO `t_region` VALUES (2926, '建水县', '532524', '0873', 2920, 'Jianshui'); +INSERT INTO `t_region` VALUES (2927, '石屏县', '532525', '0873', 2920, 'Shiping'); +INSERT INTO `t_region` VALUES (2928, '泸西县', '532527', '0873', 2920, 'Luxi'); +INSERT INTO `t_region` VALUES (2929, '元阳县', '532528', '0873', 2920, 'Yuanyang'); +INSERT INTO `t_region` VALUES (2930, '红河县', '532529', '0873', 2920, 'Honghe'); +INSERT INTO `t_region` VALUES (2931, '金平苗族瑶族傣族自治县', '532530', '0873', 2920, 'Jinping Miao nationality, Yao and Dai Autonomous'); +INSERT INTO `t_region` VALUES (2932, '绿春县', '532531', '0873', 2920, 'Lüchun'); +INSERT INTO `t_region` VALUES (2933, '河口瑶族自治县', '532532', '0873', 2920, 'Yao Autonomousof Hekou '); +INSERT INTO `t_region` VALUES (2934, '文山壮族苗族自治州', '532600', '0876', 2821, 'Zhuang-Miao Autonomous Prefecture of Wenshan '); +INSERT INTO `t_region` VALUES (2935, '文山市', '532601', '0876', 2934, 'Wenshan City'); +INSERT INTO `t_region` VALUES (2936, '砚山县', '532622', '0876', 2934, 'Yanshan'); +INSERT INTO `t_region` VALUES (2937, '西畴县', '532623', '0876', 2934, 'Xichou'); +INSERT INTO `t_region` VALUES (2938, '麻栗坡县', '532624', '0876', 2934, 'Malipo'); +INSERT INTO `t_region` VALUES (2939, '马关县', '532625', '0876', 2934, 'Maguan'); +INSERT INTO `t_region` VALUES (2940, '丘北县', '532626', '0876', 2934, 'Qiubei'); +INSERT INTO `t_region` VALUES (2941, '广南县', '532627', '0876', 2934, 'Guangnan'); +INSERT INTO `t_region` VALUES (2942, '富宁县', '532628', '0876', 2934, 'Funing'); +INSERT INTO `t_region` VALUES (2943, '西双版纳傣族自治州', '532800', '0691', 2821, 'Dai Autonomous Prefecture of Xishuangbanna '); +INSERT INTO `t_region` VALUES (2944, '景洪市', '532801', '0691', 2943, 'Jinghong City'); +INSERT INTO `t_region` VALUES (2945, '勐海县', '532822', '0691', 2943, 'Menghai'); +INSERT INTO `t_region` VALUES (2946, '勐腊县', '532823', '0691', 2943, 'Mengla'); +INSERT INTO `t_region` VALUES (2947, '大理白族自治州', '532900', '0872', 2821, 'Bai Autonomous Prefecture of Dali '); +INSERT INTO `t_region` VALUES (2948, '大理市', '532901', '0872', 2947, 'Dali City'); +INSERT INTO `t_region` VALUES (2949, '漾濞彝族自治县', '532922', '0872', 2947, 'Yangbi'); +INSERT INTO `t_region` VALUES (2950, '祥云县', '532923', '0872', 2947, 'Xiangyun'); +INSERT INTO `t_region` VALUES (2951, '宾川县', '532924', '0872', 2947, 'Binchuan'); +INSERT INTO `t_region` VALUES (2952, '弥渡县', '532925', '0872', 2947, 'Midu'); +INSERT INTO `t_region` VALUES (2953, '南涧彝族自治县', '532926', '0872', 2947, 'Yi Autonomousof Nanjian '); +INSERT INTO `t_region` VALUES (2954, '巍山彝族回族自治县', '532927', '0872', 2947, 'Yi-Hui Autonomousof Weishan '); +INSERT INTO `t_region` VALUES (2955, '永平县', '532928', '0872', 2947, 'Yongping'); +INSERT INTO `t_region` VALUES (2956, '云龙县', '532929', '0872', 2947, 'Yunlong'); +INSERT INTO `t_region` VALUES (2957, '洱源县', '532930', '0872', 2947, 'Eryuan'); +INSERT INTO `t_region` VALUES (2958, '剑川县', '532931', '0872', 2947, 'Jianchuan'); +INSERT INTO `t_region` VALUES (2959, '鹤庆县', '532932', '0872', 2947, 'Heqing'); +INSERT INTO `t_region` VALUES (2960, '德宏傣族景颇族自治州', '533100', '0692', 2821, 'Dai-Jingpo Autonomous Prefecture of Dehong '); +INSERT INTO `t_region` VALUES (2961, '瑞丽市', '533102', '0692', 2960, 'Ruili'); +INSERT INTO `t_region` VALUES (2962, '芒市', '533103', '0692', 2960, 'Mangshi '); +INSERT INTO `t_region` VALUES (2963, '梁河县', '533122', '0692', 2960, 'Lianghe'); +INSERT INTO `t_region` VALUES (2964, '盈江县', '533123', '0692', 2960, 'Yingjiang'); +INSERT INTO `t_region` VALUES (2965, '陇川县', '533124', '0692', 2960, 'Longchuan'); +INSERT INTO `t_region` VALUES (2966, '怒江傈僳族自治州', '533300', '0886', 2821, 'Lisu Autonomous Prefecture of Nujiang '); +INSERT INTO `t_region` VALUES (2967, '泸水市', '533301', '0886', 2966, 'Lushui City'); +INSERT INTO `t_region` VALUES (2968, '福贡县', '533323', '0886', 2966, 'Fugong'); +INSERT INTO `t_region` VALUES (2969, '贡山独龙族怒族自治县', '533324', '0886', 2966, 'Drung-Nu Autonomousof Gongshan '); +INSERT INTO `t_region` VALUES (2970, '兰坪白族普米族自治县', '533325', '0886', 2966, 'Lanping'); +INSERT INTO `t_region` VALUES (2971, '迪庆藏族自治州', '533400', '0887', 2821, 'Tibetan Autonomous Prefecture of Dêqên'); +INSERT INTO `t_region` VALUES (2972, '香格里拉市', '533401', '0887', 2971, 'Shangri-La City'); +INSERT INTO `t_region` VALUES (2973, '德钦县', '533422', '0887', 2971, 'Dêqên'); +INSERT INTO `t_region` VALUES (2974, '维西傈僳族自治县', '533423', '0887', 2971, 'Weixi Lisu Autonomous'); +INSERT INTO `t_region` VALUES (2975, '西藏自治区', '540000', '', 0, 'Xizang(Tibet) Autonomous Region'); +INSERT INTO `t_region` VALUES (2976, '拉萨市', '540100', '0891', 2975, 'Lhasa'); +INSERT INTO `t_region` VALUES (2977, '拉萨市市辖区', '540101', '0891', 2976, 'Lhasa municipal'); +INSERT INTO `t_region` VALUES (2978, '城关区', '540102', '0891', 2976, 'Chengguan'); +INSERT INTO `t_region` VALUES (2979, '林周县', '540121', '0891', 2976, 'Lhünzhub'); +INSERT INTO `t_region` VALUES (2980, '当雄县', '540122', '0891', 2976, 'Damxung'); +INSERT INTO `t_region` VALUES (2981, '尼木县', '540123', '0891', 2976, 'Nyêmo'); +INSERT INTO `t_region` VALUES (2982, '曲水县', '540124', '0891', 2976, 'Qüxü'); +INSERT INTO `t_region` VALUES (2983, '堆龙德庆区', '540103', '0891', 2976, 'Duke De Qing'); +INSERT INTO `t_region` VALUES (2984, '达孜县', '540126', '0891', 2976, 'Dagzê'); +INSERT INTO `t_region` VALUES (2985, '墨竹工卡县', '540127', '0891', 2976, 'Maizhokunggar'); +INSERT INTO `t_region` VALUES (2986, '日喀则市', '540200', '0892', 2975, 'Shigatse City'); +INSERT INTO `t_region` VALUES (2987, '桑珠孜区', '540202', '0892', 2986, 'Zan Zhu Zi'); +INSERT INTO `t_region` VALUES (2988, '南木林县', '540221', '0892', 2986, 'Namling'); +INSERT INTO `t_region` VALUES (2989, '江孜县', '540222', '0892', 2986, 'Gyangzê'); +INSERT INTO `t_region` VALUES (2990, '定日县', '540223', '0892', 2986, 'Tingri'); +INSERT INTO `t_region` VALUES (2991, '萨迦县', '540224', '0892', 2986, 'Sa’gya'); +INSERT INTO `t_region` VALUES (2992, '拉孜县', '540225', '0892', 2986, 'Lhazê'); +INSERT INTO `t_region` VALUES (2993, '昂仁县', '540226', '0892', 2986, 'Ngamring'); +INSERT INTO `t_region` VALUES (2994, '谢通门县', '540227', '0892', 2986, 'Xaitongmoin'); +INSERT INTO `t_region` VALUES (2995, '白朗县', '540228', '0892', 2986, 'Bainang'); +INSERT INTO `t_region` VALUES (2996, '仁布县', '540229', '0892', 2986, 'Rinbung'); +INSERT INTO `t_region` VALUES (2997, '康马县', '540230', '0892', 2986, 'Kangmar'); +INSERT INTO `t_region` VALUES (2998, '定结县', '540231', '0892', 2986, 'Dinggyê'); +INSERT INTO `t_region` VALUES (2999, '仲巴县', '540232', '0892', 2986, 'Zhongba'); +INSERT INTO `t_region` VALUES (3000, '亚东县', '540233', '0892', 2986, 'Yadong'); +INSERT INTO `t_region` VALUES (3001, '吉隆县', '540234', '0892', 2986, 'Gyirong'); +INSERT INTO `t_region` VALUES (3002, '聂拉木县', '540235', '0892', 2986, 'Nyalam'); +INSERT INTO `t_region` VALUES (3003, '萨嘎县', '540236', '0892', 2986, 'Saga'); +INSERT INTO `t_region` VALUES (3004, '岗巴县', '540237', '0892', 2986, 'Gamba'); +INSERT INTO `t_region` VALUES (3005, '昌都市', '540300', '0895', 2975, 'Changcheng'); +INSERT INTO `t_region` VALUES (3006, '卡若区', '540302', '0895', 3005, 'QaN'); +INSERT INTO `t_region` VALUES (3007, '江达县', '540321', '0895', 3005, 'Jomda'); +INSERT INTO `t_region` VALUES (3008, '贡觉县', '540322', '0895', 3005, 'Gonjo'); +INSERT INTO `t_region` VALUES (3009, '类乌齐县', '540323', '0895', 3005, 'Riwoqê'); +INSERT INTO `t_region` VALUES (3010, '丁青县', '540324', '0895', 3005, 'Dêngqên'); +INSERT INTO `t_region` VALUES (3011, '察雅县', '540325', '0895', 3005, 'Chag’yab'); +INSERT INTO `t_region` VALUES (3012, '八宿县', '540326', '0895', 3005, 'Baxoi'); +INSERT INTO `t_region` VALUES (3013, '左贡县', '540327', '0895', 3005, 'Zogang'); +INSERT INTO `t_region` VALUES (3014, '芒康县', '540328', '0895', 3005, 'Markam'); +INSERT INTO `t_region` VALUES (3015, '洛隆县', '540329', '0895', 3005, 'Lhorong'); +INSERT INTO `t_region` VALUES (3016, '边坝县', '540330', '0895', 3005, 'Banbar'); +INSERT INTO `t_region` VALUES (3017, '山南市', '540500', '0893', 2975, 'Shannan City'); +INSERT INTO `t_region` VALUES (3018, '乃东区', '540502', '0893', 3017, 'Nai Dong'); +INSERT INTO `t_region` VALUES (3019, '扎囊县', '540521', '0893', 3017, 'Zhanang'); +INSERT INTO `t_region` VALUES (3020, '贡嘎县', '540522', '0893', 3017, 'Gonggar'); +INSERT INTO `t_region` VALUES (3021, '桑日县', '540523', '0893', 3017, 'Sangri'); +INSERT INTO `t_region` VALUES (3022, '琼结县', '540524', '0893', 3017, 'Qonggyai'); +INSERT INTO `t_region` VALUES (3023, '曲松县', '540525', '0893', 3017, 'Qusum'); +INSERT INTO `t_region` VALUES (3024, '措美县', '540526', '0893', 3017, 'Comai'); +INSERT INTO `t_region` VALUES (3025, '洛扎县', '540527', '0893', 3017, 'Lhozhag'); +INSERT INTO `t_region` VALUES (3026, '加查县', '540528', '0893', 3017, 'Gyaca'); +INSERT INTO `t_region` VALUES (3027, '隆子县', '540529', '0893', 3017, 'Lhünzê'); +INSERT INTO `t_region` VALUES (3028, '错那县', '540530', '0893', 3017, 'Cona'); +INSERT INTO `t_region` VALUES (3029, '浪卡子县', '540531', '0893', 3017, 'Nagarzê'); +INSERT INTO `t_region` VALUES (3030, '那曲地区', '542400', '0896', 2975, 'Nagqu Prefecture '); +INSERT INTO `t_region` VALUES (3031, '那曲县', '542421', '0896', 3030, 'Nagqu'); +INSERT INTO `t_region` VALUES (3032, '嘉黎县', '542422', '0896', 3030, 'Lhari'); +INSERT INTO `t_region` VALUES (3033, '比如县', '542423', '0896', 3030, 'Biru'); +INSERT INTO `t_region` VALUES (3034, '聂荣县', '542424', '0896', 3030, 'Nyainrong'); +INSERT INTO `t_region` VALUES (3035, '安多县', '542425', '0896', 3030, 'Amdo'); +INSERT INTO `t_region` VALUES (3036, '申扎县', '542426', '0896', 3030, 'Xainza'); +INSERT INTO `t_region` VALUES (3037, '索县', '542427', '0896', 3030, 'Sog'); +INSERT INTO `t_region` VALUES (3038, '班戈县', '542428', '0896', 3030, 'Baingoin'); +INSERT INTO `t_region` VALUES (3039, '巴青县', '542429', '0896', 3030, 'Baqên'); +INSERT INTO `t_region` VALUES (3040, '尼玛县', '542430', '0896', 3030, 'Nyima'); +INSERT INTO `t_region` VALUES (3041, '双湖县', '542431', '0896', 3030, 'Double Lake'); +INSERT INTO `t_region` VALUES (3042, '阿里地区', '542500', '0897', 2975, 'Ngari Prefecture '); +INSERT INTO `t_region` VALUES (3043, '普兰县', '542521', '0897', 3042, 'Burang'); +INSERT INTO `t_region` VALUES (3044, '札达县', '542522', '0897', 3042, 'Zanda'); +INSERT INTO `t_region` VALUES (3045, '噶尔县', '542523', '0897', 3042, 'Gar'); +INSERT INTO `t_region` VALUES (3046, '日土县', '542524', '0897', 3042, 'Rutog'); +INSERT INTO `t_region` VALUES (3047, '革吉县', '542525', '0897', 3042, 'Gê’gya'); +INSERT INTO `t_region` VALUES (3048, '改则县', '542526', '0897', 3042, 'Gêrzê'); +INSERT INTO `t_region` VALUES (3049, '措勤县', '542527', '0897', 3042, 'Coqen'); +INSERT INTO `t_region` VALUES (3050, '林芝市', '540400', '0894', 2975, 'Linzhi City'); +INSERT INTO `t_region` VALUES (3051, '巴宜区', '540402', '0894', 3050, 'Ba Yi'); +INSERT INTO `t_region` VALUES (3052, '工布江达县', '540421', '0894', 3050, 'Gongbo’gvamda'); +INSERT INTO `t_region` VALUES (3053, '米林县', '540422', '0894', 3050, 'Mainling'); +INSERT INTO `t_region` VALUES (3054, '墨脱县', '540423', '0894', 3050, 'Mêdog'); +INSERT INTO `t_region` VALUES (3055, '波密县', '540424', '0894', 3050, 'Bomi'); +INSERT INTO `t_region` VALUES (3056, '察隅县', '540425', '0894', 3050, 'Zayü'); +INSERT INTO `t_region` VALUES (3057, '朗县', '540426', '0894', 3050, 'Nangxian'); +INSERT INTO `t_region` VALUES (3058, '陕西省', '610000', '', 0, 'Shaanxi Province'); +INSERT INTO `t_region` VALUES (3059, '西安市', '610100', '029', 3058, 'Xi’an City'); +INSERT INTO `t_region` VALUES (3060, '西安市市辖区', '610101', '029', 3059, 'Xi\'an municipal'); +INSERT INTO `t_region` VALUES (3061, '新城区', '610102', '029', 3059, 'New urban area'); +INSERT INTO `t_region` VALUES (3062, '碑林区', '610103', '029', 3059, 'Forest of steles'); +INSERT INTO `t_region` VALUES (3063, '莲湖区', '610104', '029', 3059, 'Lianhu area'); +INSERT INTO `t_region` VALUES (3064, '灞桥区', '610111', '029', 3059, 'Baqiao'); +INSERT INTO `t_region` VALUES (3065, '未央区', '610112', '029', 3059, 'No central area'); +INSERT INTO `t_region` VALUES (3066, '雁塔区', '610113', '029', 3059, 'Yanta area'); +INSERT INTO `t_region` VALUES (3067, '阎良区', '610114', '029', 3059, 'yanliang'); +INSERT INTO `t_region` VALUES (3068, '临潼区', '610115', '029', 3059, 'Lintong'); +INSERT INTO `t_region` VALUES (3069, '长安区', '610116', '029', 3059, 'Changan'); +INSERT INTO `t_region` VALUES (3070, '高陵区', '610117', '029', 3059, 'Gaoling'); +INSERT INTO `t_region` VALUES (3071, '蓝田县', '610122', '029', 3059, 'Lantian'); +INSERT INTO `t_region` VALUES (3072, '周至县', '610124', '029', 3059, 'Zhouzhi'); +INSERT INTO `t_region` VALUES (3073, '鄠邑区', '610118', '029', 3059, 'Yi Yi'); +INSERT INTO `t_region` VALUES (3074, '铜川市', '610200', '0919', 3058, 'Tongchuan'); +INSERT INTO `t_region` VALUES (3075, '铜川市市辖区', '610201', '0919', 3074, 'Tongchuan municipal'); +INSERT INTO `t_region` VALUES (3076, '王益区', '610202', '0919', 3074, 'Wangyi'); +INSERT INTO `t_region` VALUES (3077, '印台区', '610203', '0919', 3074, 'Yintai'); +INSERT INTO `t_region` VALUES (3078, '耀州区', '610204', '0919', 3074, 'Yaozhou'); +INSERT INTO `t_region` VALUES (3079, '宜君县', '610222', '0919', 3074, 'Yijun'); +INSERT INTO `t_region` VALUES (3080, '宝鸡市', '610300', '0917', 3058, 'Baoji'); +INSERT INTO `t_region` VALUES (3081, '宝鸡市市辖区', '610301', '0917', 3080, 'Baoji municipal'); +INSERT INTO `t_region` VALUES (3082, '渭滨区', '610302', '0917', 3080, 'Weibin'); +INSERT INTO `t_region` VALUES (3083, '金台区', '610303', '0917', 3080, 'Jintai'); +INSERT INTO `t_region` VALUES (3084, '陈仓区', '610304', '0917', 3080, 'Chencang'); +INSERT INTO `t_region` VALUES (3085, '凤翔县', '610322', '0917', 3080, 'Fengxiang'); +INSERT INTO `t_region` VALUES (3086, '岐山县', '610323', '0917', 3080, 'Qishan'); +INSERT INTO `t_region` VALUES (3087, '扶风县', '610324', '0917', 3080, 'Fufeng'); +INSERT INTO `t_region` VALUES (3088, '眉县', '610326', '0917', 3080, 'Meixian'); +INSERT INTO `t_region` VALUES (3089, '陇县', '610327', '0917', 3080, 'Longxian'); +INSERT INTO `t_region` VALUES (3090, '千阳县', '610328', '0917', 3080, 'Qianyang'); +INSERT INTO `t_region` VALUES (3091, '麟游县', '610329', '0917', 3080, 'Linyou'); +INSERT INTO `t_region` VALUES (3092, '凤县', '610330', '0917', 3080, 'Fengxian'); +INSERT INTO `t_region` VALUES (3093, '太白县', '610331', '0917', 3080, 'Taibai'); +INSERT INTO `t_region` VALUES (3094, '咸阳市', '610400', '0910', 3058, 'Xianyang'); +INSERT INTO `t_region` VALUES (3095, '咸阳市市辖区', '610401', '0910', 3094, 'Xianyang municipal'); +INSERT INTO `t_region` VALUES (3096, '秦都区', '610402', '0910', 3094, 'Qin Du'); +INSERT INTO `t_region` VALUES (3097, '杨陵区', '610403', '0910', 3094, 'Yangling'); +INSERT INTO `t_region` VALUES (3098, '渭城区', '610404', '0910', 3094, 'Weicheng'); +INSERT INTO `t_region` VALUES (3099, '三原县', '610422', '0910', 3094, 'Sanyuan'); +INSERT INTO `t_region` VALUES (3100, '泾阳县', '610423', '0910', 3094, 'Jingyang'); +INSERT INTO `t_region` VALUES (3101, '乾县', '610424', '0910', 3094, 'Qianxian'); +INSERT INTO `t_region` VALUES (3102, '礼泉县', '610425', '0910', 3094, 'Liquan'); +INSERT INTO `t_region` VALUES (3103, '永寿县', '610426', '0910', 3094, 'Yongshou'); +INSERT INTO `t_region` VALUES (3104, '彬县', '610427', '0910', 3094, 'Binxian'); +INSERT INTO `t_region` VALUES (3105, '长武县', '610428', '0910', 3094, 'Changwu'); +INSERT INTO `t_region` VALUES (3106, '旬邑县', '610429', '0910', 3094, 'Xunyi'); +INSERT INTO `t_region` VALUES (3107, '淳化县', '610430', '0910', 3094, 'Chunhua'); +INSERT INTO `t_region` VALUES (3108, '武功县', '610431', '0910', 3094, 'Wugong'); +INSERT INTO `t_region` VALUES (3109, '兴平市', '610481', '0910', 3094, 'xingping'); +INSERT INTO `t_region` VALUES (3110, '渭南市', '610500', '0913', 3058, 'Weinan City'); +INSERT INTO `t_region` VALUES (3111, '渭南市市辖区', '610501', '0913', 3110, 'Weinan municipal'); +INSERT INTO `t_region` VALUES (3112, '临渭区', '610502', '0913', 3110, 'Linwei'); +INSERT INTO `t_region` VALUES (3113, '华州区', '610503', '0913', 3110, 'Hua Zhou'); +INSERT INTO `t_region` VALUES (3114, '潼关县', '610522', '0913', 3110, 'Tongguan'); +INSERT INTO `t_region` VALUES (3115, '大荔县', '610523', '0913', 3110, 'Dali'); +INSERT INTO `t_region` VALUES (3116, '合阳县', '610524', '0913', 3110, 'Heyang'); +INSERT INTO `t_region` VALUES (3117, '澄城县', '610525', '0913', 3110, 'Chengcheng'); +INSERT INTO `t_region` VALUES (3118, '蒲城县', '610526', '0913', 3110, 'Pucheng'); +INSERT INTO `t_region` VALUES (3119, '白水县', '610527', '0913', 3110, 'Baishui'); +INSERT INTO `t_region` VALUES (3120, '富平县', '610528', '0913', 3110, 'Fuping'); +INSERT INTO `t_region` VALUES (3121, '韩城市', '610581', '0913', 3110, 'Hancheng'); +INSERT INTO `t_region` VALUES (3122, '华阴市', '610582', '0913', 3110, 'Huayin'); +INSERT INTO `t_region` VALUES (3123, '延安市', '610600', '0911', 3058, 'Yan’an City'); +INSERT INTO `t_region` VALUES (3124, '延安市市辖区', '610601', '0911', 3123, 'Yanan municipal'); +INSERT INTO `t_region` VALUES (3125, '宝塔区', '610602', '0911', 3123, 'Pagoda'); +INSERT INTO `t_region` VALUES (3126, '延长县', '610621', '0911', 3123, 'Yanchang'); +INSERT INTO `t_region` VALUES (3127, '延川县', '610622', '0911', 3123, 'Yanchuan'); +INSERT INTO `t_region` VALUES (3128, '子长县', '610623', '0911', 3123, 'Zichang'); +INSERT INTO `t_region` VALUES (3129, '安塞区', '610603', '0911', 3123, 'Ansai'); +INSERT INTO `t_region` VALUES (3130, '志丹县', '610625', '0911', 3123, 'Zhidan'); +INSERT INTO `t_region` VALUES (3131, '吴起县', '610626', '0911', 3123, 'Wuqi'); +INSERT INTO `t_region` VALUES (3132, '甘泉县', '610627', '0911', 3123, 'Ganquan'); +INSERT INTO `t_region` VALUES (3133, '富县', '610628', '0911', 3123, 'Fuxian'); +INSERT INTO `t_region` VALUES (3134, '洛川县', '610629', '0911', 3123, 'Luochuan'); +INSERT INTO `t_region` VALUES (3135, '宜川县', '610630', '0911', 3123, 'Yichuan'); +INSERT INTO `t_region` VALUES (3136, '黄龙县', '610631', '0911', 3123, 'Huanglong'); +INSERT INTO `t_region` VALUES (3137, '黄陵县', '610632', '0911', 3123, 'Huangling'); +INSERT INTO `t_region` VALUES (3138, '汉中市', '610700', '0916', 3058, 'Hanzhoung City'); +INSERT INTO `t_region` VALUES (3139, '汉中市市辖区', '610701', '0916', 3138, 'Hanzhoung municipal'); +INSERT INTO `t_region` VALUES (3140, '汉台区', '610702', '0916', 3138, 'Hantai'); +INSERT INTO `t_region` VALUES (3141, '南郑县', '610721', '0916', 3138, 'Nanzheng'); +INSERT INTO `t_region` VALUES (3142, '城固县', '610722', '0916', 3138, 'Chenggu'); +INSERT INTO `t_region` VALUES (3143, '洋县', '610723', '0916', 3138, 'Yangxian'); +INSERT INTO `t_region` VALUES (3144, '西乡县', '610724', '0916', 3138, 'Xixiang'); +INSERT INTO `t_region` VALUES (3145, '勉县', '610725', '0916', 3138, 'Mianxian'); +INSERT INTO `t_region` VALUES (3146, '宁强县', '610726', '0916', 3138, 'Ningqiang'); +INSERT INTO `t_region` VALUES (3147, '略阳县', '610727', '0916', 3138, 'Lüeyang'); +INSERT INTO `t_region` VALUES (3148, '镇巴县', '610728', '0916', 3138, 'Zhenba'); +INSERT INTO `t_region` VALUES (3149, '留坝县', '610729', '0916', 3138, 'Liuba'); +INSERT INTO `t_region` VALUES (3150, '佛坪县', '610730', '0916', 3138, 'Foping'); +INSERT INTO `t_region` VALUES (3151, '榆林市', '610800', '0912', 3058, 'Yulin City'); +INSERT INTO `t_region` VALUES (3152, '榆林市市辖区', '610801', '0912', 3151, 'Yulin municipal'); +INSERT INTO `t_region` VALUES (3153, '榆阳区', '610802', '0912', 3151, 'Yuyang'); +INSERT INTO `t_region` VALUES (3154, '神木市', '610881', '0912', 3151, 'Shenmu City'); +INSERT INTO `t_region` VALUES (3155, '府谷县', '610822', '0912', 3151, 'Fugu'); +INSERT INTO `t_region` VALUES (3156, '横山区', '610803', '0912', 3151, 'Hengshan'); +INSERT INTO `t_region` VALUES (3157, '靖边县', '610824', '0912', 3151, 'Jingbian'); +INSERT INTO `t_region` VALUES (3158, '定边县', '610825', '0912', 3151, 'Dingbian'); +INSERT INTO `t_region` VALUES (3159, '绥德县', '610826', '0912', 3151, 'Suide'); +INSERT INTO `t_region` VALUES (3160, '米脂县', '610827', '0912', 3151, 'Mizhi'); +INSERT INTO `t_region` VALUES (3161, '佳县', '610828', '0912', 3151, 'Jiaxian'); +INSERT INTO `t_region` VALUES (3162, '吴堡县', '610829', '0912', 3151, 'Wubu'); +INSERT INTO `t_region` VALUES (3163, '清涧县', '610830', '0912', 3151, 'Qingjian'); +INSERT INTO `t_region` VALUES (3164, '子洲县', '610831', '0912', 3151, 'Zizhou'); +INSERT INTO `t_region` VALUES (3165, '安康市', '610900', '0915', 3058, 'Ankang City'); +INSERT INTO `t_region` VALUES (3166, '安康市市辖区', '610901', '0915', 3165, 'The municipal of Ankang City'); +INSERT INTO `t_region` VALUES (3167, '汉滨区', '610902', '0915', 3165, 'Han Bin'); +INSERT INTO `t_region` VALUES (3168, '汉阴县', '610921', '0915', 3165, 'Hanyin'); +INSERT INTO `t_region` VALUES (3169, '石泉县', '610922', '0915', 3165, 'Shiquan'); +INSERT INTO `t_region` VALUES (3170, '宁陕县', '610923', '0915', 3165, 'Ningshan'); +INSERT INTO `t_region` VALUES (3171, '紫阳县', '610924', '0915', 3165, 'Ziyang'); +INSERT INTO `t_region` VALUES (3172, '岚皋县', '610925', '0915', 3165, 'Langao'); +INSERT INTO `t_region` VALUES (3173, '平利县', '610926', '0915', 3165, 'Pingli'); +INSERT INTO `t_region` VALUES (3174, '镇坪县', '610927', '0915', 3165, 'Zhenping'); +INSERT INTO `t_region` VALUES (3175, '旬阳县', '610928', '0915', 3165, 'Xunyang'); +INSERT INTO `t_region` VALUES (3176, '白河县', '610929', '0915', 3165, 'Baihe'); +INSERT INTO `t_region` VALUES (3177, '商洛市', '611000', '0914', 3058, 'shangluo'); +INSERT INTO `t_region` VALUES (3178, '商洛市市辖区', '611001', '0914', 3177, 'Shangluo municipal'); +INSERT INTO `t_region` VALUES (3179, '商州区', '611002', '0914', 3177, 'Shangzhou'); +INSERT INTO `t_region` VALUES (3180, '洛南县', '611021', '0914', 3177, 'Luonan'); +INSERT INTO `t_region` VALUES (3181, '丹凤县', '611022', '0914', 3177, 'Danfeng'); +INSERT INTO `t_region` VALUES (3182, '商南县', '611023', '0914', 3177, 'Shangnan'); +INSERT INTO `t_region` VALUES (3183, '山阳县', '611024', '0914', 3177, 'Shanyang'); +INSERT INTO `t_region` VALUES (3184, '镇安县', '611025', '0914', 3177, 'Zhen’an'); +INSERT INTO `t_region` VALUES (3185, '柞水县', '611026', '0914', 3177, 'Zhashui'); +INSERT INTO `t_region` VALUES (3186, '甘肃省', '620000', '', 0, 'Gansu Province '); +INSERT INTO `t_region` VALUES (3187, '兰州市', '620100', '0931', 3186, 'Lanzhou'); +INSERT INTO `t_region` VALUES (3188, '兰州市市辖区', '620101', '0931', 3187, 'Lanzhou municipal'); +INSERT INTO `t_region` VALUES (3189, '城关区', '620102', '0931', 3187, 'Chengguan'); +INSERT INTO `t_region` VALUES (3190, '七里河区', '620103', '0931', 3187, 'Qilihe'); +INSERT INTO `t_region` VALUES (3191, '西固区', '620104', '0931', 3187, 'Xigu'); +INSERT INTO `t_region` VALUES (3192, '安宁区', '620105', '0931', 3187, 'Anning'); +INSERT INTO `t_region` VALUES (3193, '红古区', '620111', '0931', 3187, 'honggu'); +INSERT INTO `t_region` VALUES (3194, '永登县', '620121', '0931', 3187, 'Yongdeng'); +INSERT INTO `t_region` VALUES (3195, '皋兰县', '620122', '0931', 3187, 'Gaolan'); +INSERT INTO `t_region` VALUES (3196, '榆中县', '620123', '0931', 3187, 'Yuzhong'); +INSERT INTO `t_region` VALUES (3197, '嘉峪关市', '620200', '1937', 3186, 'Jiayuguan'); +INSERT INTO `t_region` VALUES (3198, '嘉峪关市市辖区', '620201', '1937', 3197, 'Jiayuguan municipal'); +INSERT INTO `t_region` VALUES (3199, '金昌市', '620300', '0935', 3186, 'Jinchang'); +INSERT INTO `t_region` VALUES (3200, '金昌市市辖区', '620301', '0935', 3199, 'Jinchang municipal'); +INSERT INTO `t_region` VALUES (3201, '金川区', '620302', '0935', 3199, 'Jinchuan'); +INSERT INTO `t_region` VALUES (3202, '永昌县', '620321', '0935', 3199, 'Yongchang'); +INSERT INTO `t_region` VALUES (3203, '白银市', '620400', '0943', 3186, 'Baiyin'); +INSERT INTO `t_region` VALUES (3204, '白银市市辖区', '620401', '0943', 3203, 'Baiyin'); +INSERT INTO `t_region` VALUES (3205, '白银区', '620402', '0943', 3203, 'baiyin'); +INSERT INTO `t_region` VALUES (3206, '平川区', '620403', '0943', 3203, 'Pingchuan'); +INSERT INTO `t_region` VALUES (3207, '靖远县', '620421', '0943', 3203, 'Jingyuan'); +INSERT INTO `t_region` VALUES (3208, '会宁县', '620422', '0943', 3203, 'Huining'); +INSERT INTO `t_region` VALUES (3209, '景泰县', '620423', '0943', 3203, 'Jingtai'); +INSERT INTO `t_region` VALUES (3210, '天水市', '620500', '0938', 3186, 'Tianshui'); +INSERT INTO `t_region` VALUES (3211, '天水市市辖区', '620501', '0938', 3210, 'Tianshui'); +INSERT INTO `t_region` VALUES (3212, '秦州区', '620502', '0938', 3210, 'Qinzhou'); +INSERT INTO `t_region` VALUES (3213, '麦积区', '620503', '0938', 3210, 'Maiji'); +INSERT INTO `t_region` VALUES (3214, '清水县', '620521', '0938', 3210, 'Qingshui'); +INSERT INTO `t_region` VALUES (3215, '秦安县', '620522', '0938', 3210, 'Qin’an'); +INSERT INTO `t_region` VALUES (3216, '甘谷县', '620523', '0938', 3210, 'Gangu'); +INSERT INTO `t_region` VALUES (3217, '武山县', '620524', '0938', 3210, 'Wushan'); +INSERT INTO `t_region` VALUES (3218, '张家川回族自治县', '620525', '0938', 3210, 'Hui Autonomousof Zhangjiachuan '); +INSERT INTO `t_region` VALUES (3219, '武威市', '620600', '1935', 3186, 'Wuwei City'); +INSERT INTO `t_region` VALUES (3220, '武威市市辖区', '620601', '1935', 3219, 'Wuwei municipal'); +INSERT INTO `t_region` VALUES (3221, '凉州区', '620602', '1935', 3219, 'Liangzhou'); +INSERT INTO `t_region` VALUES (3222, '民勤县', '620621', '1935', 3219, 'Minqin'); +INSERT INTO `t_region` VALUES (3223, '古浪县', '620622', '1935', 3219, 'Gulang'); +INSERT INTO `t_region` VALUES (3224, '天祝藏族自治县', '620623', '1935', 3219, 'Tibetan Autonomousof Tianzhu '); +INSERT INTO `t_region` VALUES (3225, '张掖市', '620700', '0936', 3186, 'Zhangye City'); +INSERT INTO `t_region` VALUES (3226, '张掖市市辖区', '620701', '0936', 3225, 'Zhangye municipal'); +INSERT INTO `t_region` VALUES (3227, '甘州区', '620702', '0936', 3225, 'Ganzhou'); +INSERT INTO `t_region` VALUES (3228, '肃南裕固族自治县', '620721', '0936', 3225, 'Yugur Autonomousof Sunan '); +INSERT INTO `t_region` VALUES (3229, '民乐县', '620722', '0936', 3225, 'Minle'); +INSERT INTO `t_region` VALUES (3230, '临泽县', '620723', '0936', 3225, 'Linze'); +INSERT INTO `t_region` VALUES (3231, '高台县', '620724', '0936', 3225, 'Gaotai'); +INSERT INTO `t_region` VALUES (3232, '山丹县', '620725', '0936', 3225, 'Shandan'); +INSERT INTO `t_region` VALUES (3233, '平凉市', '620800', '0933', 3186, 'Pingliang'); +INSERT INTO `t_region` VALUES (3234, '平凉市市辖区', '620801', '0933', 3233, 'Pingliang municipal'); +INSERT INTO `t_region` VALUES (3235, '崆峒区', '620802', '0933', 3233, 'Kongtong'); +INSERT INTO `t_region` VALUES (3236, '泾川县', '620821', '0933', 3233, 'Jingchuan'); +INSERT INTO `t_region` VALUES (3237, '灵台县', '620822', '0933', 3233, 'Lingtai'); +INSERT INTO `t_region` VALUES (3238, '崇信县', '620823', '0933', 3233, 'Chongxin'); +INSERT INTO `t_region` VALUES (3239, '华亭县', '620824', '0933', 3233, 'Huating'); +INSERT INTO `t_region` VALUES (3240, '庄浪县', '620825', '0933', 3233, 'Zhuanglang'); +INSERT INTO `t_region` VALUES (3241, '静宁县', '620826', '0933', 3233, 'Jingning'); +INSERT INTO `t_region` VALUES (3242, '酒泉市', '620900', '0937', 3186, 'jiuquan'); +INSERT INTO `t_region` VALUES (3243, '酒泉市市辖区', '620901', '0937', 3242, 'Jiuquan municipal'); +INSERT INTO `t_region` VALUES (3244, '肃州区', '620902', '0937', 3242, 'Suzhou'); +INSERT INTO `t_region` VALUES (3245, '金塔县', '620921', '0937', 3242, 'Jinta'); +INSERT INTO `t_region` VALUES (3246, '瓜州县', '620922', '0937', 3242, 'Guzhou'); +INSERT INTO `t_region` VALUES (3247, '肃北蒙古族自治县', '620923', '0937', 3242, 'Mongolian Autonomousof Subei '); +INSERT INTO `t_region` VALUES (3248, '阿克塞哈萨克族自治县', '620924', '0937', 3242, 'Kazak Autonomousof Aksay '); +INSERT INTO `t_region` VALUES (3249, '玉门市', '620981', '0937', 3242, 'Yumen'); +INSERT INTO `t_region` VALUES (3250, '敦煌市', '620982', '0937', 3242, 'Dunhuang'); +INSERT INTO `t_region` VALUES (3251, '庆阳市', '621000', '0934', 3186, 'qingyang'); +INSERT INTO `t_region` VALUES (3252, '庆阳市市辖区', '621001', '0934', 3251, 'Qingyang municipal'); +INSERT INTO `t_region` VALUES (3253, '西峰区', '621002', '0934', 3251, 'Xifeng'); +INSERT INTO `t_region` VALUES (3254, '庆城县', '621021', '0934', 3251, 'Qingcheng'); +INSERT INTO `t_region` VALUES (3255, '环县', '621022', '0934', 3251, 'Huanxian'); +INSERT INTO `t_region` VALUES (3256, '华池县', '621023', '0934', 3251, 'Huachi'); +INSERT INTO `t_region` VALUES (3257, '合水县', '621024', '0934', 3251, 'Heshui'); +INSERT INTO `t_region` VALUES (3258, '正宁县', '621025', '0934', 3251, 'Zhengning'); +INSERT INTO `t_region` VALUES (3259, '宁县', '621026', '0934', 3251, 'Ningxian'); +INSERT INTO `t_region` VALUES (3260, '镇原县', '621027', '0934', 3251, 'Zhenyuan'); +INSERT INTO `t_region` VALUES (3261, '定西市', '621100', '0932', 3186, 'dingxi'); +INSERT INTO `t_region` VALUES (3262, '定西市市辖区', '621101', '0932', 3261, 'Dingxi municipal'); +INSERT INTO `t_region` VALUES (3263, '安定区', '621102', '0932', 3261, 'Anding'); +INSERT INTO `t_region` VALUES (3264, '通渭县', '621121', '0932', 3261, 'Tongwei'); +INSERT INTO `t_region` VALUES (3265, '陇西县', '621122', '0932', 3261, 'Longxi'); +INSERT INTO `t_region` VALUES (3266, '渭源县', '621123', '0932', 3261, 'Weiyuan'); +INSERT INTO `t_region` VALUES (3267, '临洮县', '621124', '0932', 3261, 'Lintao'); +INSERT INTO `t_region` VALUES (3268, '漳县', '621125', '0932', 3261, 'Zhangxian'); +INSERT INTO `t_region` VALUES (3269, '岷县', '621126', '0932', 3261, 'Minxian'); +INSERT INTO `t_region` VALUES (3270, '陇南市', '621200', '2935', 3186, 'Longnan City'); +INSERT INTO `t_region` VALUES (3271, '陇南市市辖区', '621201', '2935', 3270, 'Longnan municipal'); +INSERT INTO `t_region` VALUES (3272, '武都区', '621202', '2935', 3270, 'wudu'); +INSERT INTO `t_region` VALUES (3273, '成县', '621221', '2935', 3270, 'Chengxian'); +INSERT INTO `t_region` VALUES (3274, '文县', '621222', '2935', 3270, 'Wenxian'); +INSERT INTO `t_region` VALUES (3275, '宕昌县', '621223', '2935', 3270, 'Dangchang'); +INSERT INTO `t_region` VALUES (3276, '康县', '621224', '2935', 3270, 'Kangxian'); +INSERT INTO `t_region` VALUES (3277, '西和县', '621225', '2935', 3270, 'Xihe'); +INSERT INTO `t_region` VALUES (3278, '礼县', '621226', '2935', 3270, 'Lixian'); +INSERT INTO `t_region` VALUES (3279, '徽县', '621227', '2935', 3270, 'Huixian'); +INSERT INTO `t_region` VALUES (3280, '两当县', '621228', '2935', 3270, 'Liangdang'); +INSERT INTO `t_region` VALUES (3281, '临夏回族自治州', '622900', '0930', 3186, 'Hui Autonomous Prefecture of Linxia '); +INSERT INTO `t_region` VALUES (3282, '临夏市', '622901', '0930', 3281, 'linxia city'); +INSERT INTO `t_region` VALUES (3283, '临夏县', '622921', '0930', 3281, 'Linxia'); +INSERT INTO `t_region` VALUES (3284, '康乐县', '622922', '0930', 3281, 'Kangle'); +INSERT INTO `t_region` VALUES (3285, '永靖县', '622923', '0930', 3281, 'Yongjing'); +INSERT INTO `t_region` VALUES (3286, '广河县', '622924', '0930', 3281, 'Guanghe'); +INSERT INTO `t_region` VALUES (3287, '和政县', '622925', '0930', 3281, 'Hezheng'); +INSERT INTO `t_region` VALUES (3288, '东乡族自治县', '622926', '0930', 3281, 'Dongxiang Autonomous'); +INSERT INTO `t_region` VALUES (3289, '积石山保安族东乡族撒拉族自治县', '622927', '0930', 3281, 'Jishishan Bao\'an Dongxiang Sala Autonomous'); +INSERT INTO `t_region` VALUES (3290, '甘南藏族自治州', '623000', '0941', 3186, 'Tibetan Autonomous Prefecture of Ganan '); +INSERT INTO `t_region` VALUES (3291, '合作市', '623001', '0941', 3290, 'Cooperative city'); +INSERT INTO `t_region` VALUES (3292, '临潭县', '623021', '0941', 3290, 'Lintan'); +INSERT INTO `t_region` VALUES (3293, '卓尼县', '623022', '0941', 3290, 'Jonê'); +INSERT INTO `t_region` VALUES (3294, '舟曲县', '623023', '0941', 3290, 'Zhugqu'); +INSERT INTO `t_region` VALUES (3295, '迭部县', '623024', '0941', 3290, 'Têwo'); +INSERT INTO `t_region` VALUES (3296, '玛曲县', '623025', '0941', 3290, 'Maqu'); +INSERT INTO `t_region` VALUES (3297, '碌曲县', '623026', '0941', 3290, 'Luqu'); +INSERT INTO `t_region` VALUES (3298, '夏河县', '623027', '0941', 3290, 'Xiahe'); +INSERT INTO `t_region` VALUES (3299, '青海省', '630000', '', 0, 'Qinghai Province '); +INSERT INTO `t_region` VALUES (3300, '西宁市', '630100', '0971', 3299, 'Xining'); +INSERT INTO `t_region` VALUES (3301, '西宁市市辖区', '630101', '0971', 3300, 'Xining municipal'); +INSERT INTO `t_region` VALUES (3302, '城东区', '630102', '0971', 3300, 'Seongdong-gu'); +INSERT INTO `t_region` VALUES (3303, '城中区', '630103', '0971', 3300, 'city central'); +INSERT INTO `t_region` VALUES (3304, '城西区', '630104', '0971', 3300, 'Chengxi'); +INSERT INTO `t_region` VALUES (3305, '城北区', '630105', '0971', 3300, 'Seongbuk-gu'); +INSERT INTO `t_region` VALUES (3306, '大通回族土族自治县', '630121', '0971', 3300, 'Datong'); +INSERT INTO `t_region` VALUES (3307, '湟中县', '630122', '0971', 3300, 'Huangzhong'); +INSERT INTO `t_region` VALUES (3308, '湟源县', '630123', '0971', 3300, 'Huangyuan'); +INSERT INTO `t_region` VALUES (3309, '海东市', '630200', '0972', 3299, 'Haidong City'); +INSERT INTO `t_region` VALUES (3310, '乐都区', '630202', '0972', 3309, 'Ledu'); +INSERT INTO `t_region` VALUES (3311, '平安区', '630203', '0972', 3309, 'Safe area'); +INSERT INTO `t_region` VALUES (3312, '民和回族土族自治县', '630222', '0972', 3309, 'Minhe Hui and Tu Autonomous'); +INSERT INTO `t_region` VALUES (3313, '互助土族自治县', '630223', '0972', 3309, 'Tu Autonomousof Huzhu '); +INSERT INTO `t_region` VALUES (3314, '化隆回族自治县', '630224', '0972', 3309, 'Hui Autonomousof Hualong '); +INSERT INTO `t_region` VALUES (3315, '循化撒拉族自治县', '630225', '0972', 3309, 'Salar Autonomousof Xunhua '); +INSERT INTO `t_region` VALUES (3316, '海北藏族自治州', '632200', '0970', 3299, 'Tibetan Autonomous Prefecture of Haibei '); +INSERT INTO `t_region` VALUES (3317, '门源回族自治县', '632221', '0970', 3316, 'Hui Autonomousof Menyuan '); +INSERT INTO `t_region` VALUES (3318, '祁连县', '632222', '0970', 3316, 'Qilian'); +INSERT INTO `t_region` VALUES (3319, '海晏县', '632223', '0970', 3316, 'Haiyan'); +INSERT INTO `t_region` VALUES (3320, '刚察县', '632224', '0970', 3316, 'Gangca'); +INSERT INTO `t_region` VALUES (3321, '黄南藏族自治州', '632300', '0973', 3299, 'Tibetan Autonomous Prefecture of Huangnan '); +INSERT INTO `t_region` VALUES (3322, '同仁县', '632321', '0973', 3321, 'Tongren'); +INSERT INTO `t_region` VALUES (3323, '尖扎县', '632322', '0973', 3321, 'Jainca'); +INSERT INTO `t_region` VALUES (3324, '泽库县', '632323', '0973', 3321, 'Zêkog'); +INSERT INTO `t_region` VALUES (3325, '河南蒙古族自治县', '632324', '0973', 3321, 'Mongolian Autonomousof Henan '); +INSERT INTO `t_region` VALUES (3326, '海南藏族自治州', '632500', '0974', 3299, 'Tibetan Autonomous Prefecture of Hainan '); +INSERT INTO `t_region` VALUES (3327, '共和县', '632521', '0974', 3326, 'Gonghe'); +INSERT INTO `t_region` VALUES (3328, '同德县', '632522', '0974', 3326, 'Tongde'); +INSERT INTO `t_region` VALUES (3329, '贵德县', '632523', '0974', 3326, 'Guide'); +INSERT INTO `t_region` VALUES (3330, '兴海县', '632524', '0974', 3326, 'Xinghai'); +INSERT INTO `t_region` VALUES (3331, '贵南县', '632525', '0974', 3326, 'Guinan'); +INSERT INTO `t_region` VALUES (3332, '果洛藏族自治州', '632600', '0975', 3299, 'Tibetan Autonomous Prefecture of Golog '); +INSERT INTO `t_region` VALUES (3333, '玛沁县', '632621', '0975', 3332, 'Maqên'); +INSERT INTO `t_region` VALUES (3334, '班玛县', '632622', '0975', 3332, 'Baima'); +INSERT INTO `t_region` VALUES (3335, '甘德县', '632623', '0975', 3332, 'Gadê'); +INSERT INTO `t_region` VALUES (3336, '达日县', '632624', '0975', 3332, 'Darlag'); +INSERT INTO `t_region` VALUES (3337, '久治县', '632625', '0975', 3332, 'Jigzhi'); +INSERT INTO `t_region` VALUES (3338, '玛多县', '632626', '0975', 3332, 'Madoi'); +INSERT INTO `t_region` VALUES (3339, '玉树藏族自治州', '632700', '0976', 3299, 'Tibetan Autonomous Prefecture of Yushu '); +INSERT INTO `t_region` VALUES (3340, '玉树市', '632701', '0976', 3339, 'Yushu'); +INSERT INTO `t_region` VALUES (3341, '杂多县', '632722', '0976', 3339, 'Zadoi'); +INSERT INTO `t_region` VALUES (3342, '称多县', '632723', '0976', 3339, 'Chindu'); +INSERT INTO `t_region` VALUES (3343, '治多县', '632724', '0976', 3339, 'Zhidoi'); +INSERT INTO `t_region` VALUES (3344, '囊谦县', '632725', '0976', 3339, 'Nangqên'); +INSERT INTO `t_region` VALUES (3345, '曲麻莱县', '632726', '0976', 3339, 'Qumarlêb'); +INSERT INTO `t_region` VALUES (3346, '海西蒙古族藏族自治州', '632800', '0977', 3299, 'Haixi Mongol and Tibetan Autonomous Prefecture'); +INSERT INTO `t_region` VALUES (3347, '格尔木市', '632801', '0977', 3346, 'Golmud'); +INSERT INTO `t_region` VALUES (3348, '德令哈市', '632802', '0977', 3346, 'Delingha City'); +INSERT INTO `t_region` VALUES (3349, '乌兰县', '632821', '0977', 3346, 'Ulan'); +INSERT INTO `t_region` VALUES (3350, '都兰县', '632822', '0977', 3346, 'Dulan'); +INSERT INTO `t_region` VALUES (3351, '天峻县', '632823', '0977', 3346, 'Tianjun'); +INSERT INTO `t_region` VALUES (3352, '海西蒙古族藏族自治州直辖', '632825', '0977', 3346, 'The Autonomous Prefecture of the Haixi Mongolian nationality and Tibetan Autonomous Prefecture'); +INSERT INTO `t_region` VALUES (3353, '宁夏回族自治区', '640000', '', 0, 'the Ningxia Hui Autonomous Region '); +INSERT INTO `t_region` VALUES (3354, '银川市', '640100', '0951', 3353, 'Yinchuan'); +INSERT INTO `t_region` VALUES (3355, '银川市市辖区', '640101', '0951', 3354, 'Yinchuan municipal'); +INSERT INTO `t_region` VALUES (3356, '兴庆区', '640104', '0951', 3354, 'Xingqing'); +INSERT INTO `t_region` VALUES (3357, '西夏区', '640105', '0951', 3354, 'Xixia'); +INSERT INTO `t_region` VALUES (3358, '金凤区', '640106', '0951', 3354, 'Jinfeng'); +INSERT INTO `t_region` VALUES (3359, '永宁县', '640121', '0951', 3354, 'Yongning'); +INSERT INTO `t_region` VALUES (3360, '贺兰县', '640122', '0951', 3354, 'Helan'); +INSERT INTO `t_region` VALUES (3361, '灵武市', '640181', '0951', 3354, 'Lingwu City'); +INSERT INTO `t_region` VALUES (3362, '石嘴山市', '640200', '0952', 3353, 'Shizuishan'); +INSERT INTO `t_region` VALUES (3363, '石嘴山市市辖区', '640201', '0952', 3362, 'Shizuishan municipal'); +INSERT INTO `t_region` VALUES (3364, '大武口区', '640202', '0952', 3362, 'Dawukou'); +INSERT INTO `t_region` VALUES (3365, '惠农区', '640205', '0952', 3362, 'Huinong'); +INSERT INTO `t_region` VALUES (3366, '平罗县', '640221', '0952', 3362, 'Pingluo'); +INSERT INTO `t_region` VALUES (3367, '吴忠市', '640300', '0953', 3353, 'Wuzhong city'); +INSERT INTO `t_region` VALUES (3368, '吴忠市市辖区', '640301', '0953', 3367, 'Wuzhong City'); +INSERT INTO `t_region` VALUES (3369, '利通区', '640302', '0953', 3367, 'Litong'); +INSERT INTO `t_region` VALUES (3370, '红寺堡区', '640303', '0953', 3367, 'Red temple'); +INSERT INTO `t_region` VALUES (3371, '盐池县', '640323', '0953', 3367, 'Yanchi'); +INSERT INTO `t_region` VALUES (3372, '同心县', '640324', '0953', 3367, 'Tongxin'); +INSERT INTO `t_region` VALUES (3373, '青铜峡市', '640381', '0953', 3367, 'qingtongxia'); +INSERT INTO `t_region` VALUES (3374, '固原市', '640400', '0954', 3353, 'Guyuan City'); +INSERT INTO `t_region` VALUES (3375, '固原市市辖区', '640401', '0954', 3374, 'Guyuan municipal'); +INSERT INTO `t_region` VALUES (3376, '原州区', '640402', '0954', 3374, 'Yuanzhou'); +INSERT INTO `t_region` VALUES (3377, '西吉县', '640422', '0954', 3374, 'Xiji'); +INSERT INTO `t_region` VALUES (3378, '隆德县', '640423', '0954', 3374, 'Longde'); +INSERT INTO `t_region` VALUES (3379, '泾源县', '640424', '0954', 3374, 'Jingyuan'); +INSERT INTO `t_region` VALUES (3380, '彭阳县', '640425', '0954', 3374, 'Pengyang'); +INSERT INTO `t_region` VALUES (3381, '中卫市', '640500', '1953', 3353, 'Zhong Wei City'); +INSERT INTO `t_region` VALUES (3382, '中卫市市辖区', '640501', '1953', 3381, 'City of central Wei'); +INSERT INTO `t_region` VALUES (3383, '沙坡头区', '640502', '1953', 3381, 'Shapotou'); +INSERT INTO `t_region` VALUES (3384, '中宁县', '640521', '1953', 3381, 'Zhongning'); +INSERT INTO `t_region` VALUES (3385, '海原县', '640522', '1953', 3381, 'Haiyuan'); +INSERT INTO `t_region` VALUES (3386, '新疆维吾尔自治区', '650000', '', 0, 'the Xinjiang Uygur [Uighur] Autonomous Region '); +INSERT INTO `t_region` VALUES (3387, '乌鲁木齐市', '650100', '0991', 3386, 'Ürümqi City'); +INSERT INTO `t_region` VALUES (3388, '乌鲁木齐市市辖区', '650101', '0991', 3387, 'Urumqi municipal'); +INSERT INTO `t_region` VALUES (3389, '天山区', '650102', '0991', 3387, 'Tianshan'); +INSERT INTO `t_region` VALUES (3390, '沙依巴克区', '650103', '0991', 3387, 'Saybagh'); +INSERT INTO `t_region` VALUES (3391, '新市区', '650104', '0991', 3387, 'New urban area'); +INSERT INTO `t_region` VALUES (3392, '水磨沟区', '650105', '0991', 3387, 'shuimogou'); +INSERT INTO `t_region` VALUES (3393, '头屯河区', '650106', '0991', 3387, 'Toutunhe'); +INSERT INTO `t_region` VALUES (3394, '达坂城区', '650107', '0991', 3387, 'Dabancheng'); +INSERT INTO `t_region` VALUES (3395, '米东区', '650109', '0991', 3387, 'Midong'); +INSERT INTO `t_region` VALUES (3396, '乌鲁木齐县', '650121', '0991', 3387, 'Ürümqi'); +INSERT INTO `t_region` VALUES (3397, '克拉玛依市', '650200', '0990', 3386, 'Karamay'); +INSERT INTO `t_region` VALUES (3398, '克拉玛依市市辖区', '650201', '0990', 3397, 'Karamay municipal'); +INSERT INTO `t_region` VALUES (3399, '独山子区', '650202', '0990', 3397, 'Dushanzi'); +INSERT INTO `t_region` VALUES (3400, '克拉玛依区', '650203', '0990', 3397, 'Karamay'); +INSERT INTO `t_region` VALUES (3401, '白碱滩区', '650204', '0990', 3397, 'Baijiantan'); +INSERT INTO `t_region` VALUES (3402, '乌尔禾区', '650205', '0990', 3397, 'Urho'); +INSERT INTO `t_region` VALUES (3403, '吐鲁番市', '650400', '0995', 3386, 'Turpan'); +INSERT INTO `t_region` VALUES (3404, '高昌区', '650402', '0995', 3403, 'Gao Chang'); +INSERT INTO `t_region` VALUES (3405, '鄯善县', '650421', '0995', 3403, 'Shanshan'); +INSERT INTO `t_region` VALUES (3406, '托克逊县', '650422', '0995', 3403, 'Toksun'); +INSERT INTO `t_region` VALUES (3407, '哈密市', '650500', '0902', 3386, 'Hami City'); +INSERT INTO `t_region` VALUES (3408, '伊州区', '650502', '0902', 3407, 'Yizhou'); +INSERT INTO `t_region` VALUES (3409, '巴里坤哈萨克自治县', '650521', '0902', 3407, 'Kazak Autonomousof Barkol '); +INSERT INTO `t_region` VALUES (3410, '伊吾县', '650522', '0902', 3407, 'Yiwu'); +INSERT INTO `t_region` VALUES (3411, '昌吉回族自治州', '652300', '0994', 3386, 'Hui Autonomous Prefecture of Changji '); +INSERT INTO `t_region` VALUES (3412, '昌吉市', '652301', '0994', 3411, 'Changji City'); +INSERT INTO `t_region` VALUES (3413, '阜康市', '652302', '0994', 3411, 'Fukang'); +INSERT INTO `t_region` VALUES (3414, '呼图壁县', '652323', '0994', 3411, 'Hutubi'); +INSERT INTO `t_region` VALUES (3415, '玛纳斯县', '652324', '0994', 3411, 'Manas'); +INSERT INTO `t_region` VALUES (3416, '奇台县', '652325', '0994', 3411, 'Qitai'); +INSERT INTO `t_region` VALUES (3417, '吉木萨尔县', '652327', '0994', 3411, 'Jimsar'); +INSERT INTO `t_region` VALUES (3418, '木垒哈萨克自治县', '652328', '0994', 3411, 'Kazak Autonomousof Mori '); +INSERT INTO `t_region` VALUES (3419, '博尔塔拉蒙古自治州', '652700', '0909', 3386, 'Mongolian Autonomous Prefecture of Bortala '); +INSERT INTO `t_region` VALUES (3420, '博乐市', '652701', '0909', 3419, 'Bole'); +INSERT INTO `t_region` VALUES (3421, '阿拉山口市', '652702', '0909', 3419, 'Ara Yamaguchi'); +INSERT INTO `t_region` VALUES (3422, '精河县', '652722', '0909', 3419, 'Jinghe'); +INSERT INTO `t_region` VALUES (3423, '温泉县', '652723', '0909', 3419, '[地名] [美国] Hot Springs'); +INSERT INTO `t_region` VALUES (3424, '巴音郭楞蒙古自治州', '652800', '0996', 3386, 'Mongolian Autonomous Prefecture of Bayingolin '); +INSERT INTO `t_region` VALUES (3425, '库尔勒市', '652801', '0996', 3424, 'Korla'); +INSERT INTO `t_region` VALUES (3426, '轮台县', '652822', '0996', 3424, 'Luntai'); +INSERT INTO `t_region` VALUES (3427, '尉犁县', '652823', '0996', 3424, 'Yuli'); +INSERT INTO `t_region` VALUES (3428, '若羌县', '652824', '0996', 3424, 'Ruoqiang'); +INSERT INTO `t_region` VALUES (3429, '且末县', '652825', '0996', 3424, 'Qiemo'); +INSERT INTO `t_region` VALUES (3430, '焉耆回族自治县', '652826', '0996', 3424, 'Hui Autonomousof Yanqi '); +INSERT INTO `t_region` VALUES (3431, '和静县', '652827', '0996', 3424, 'Hejing'); +INSERT INTO `t_region` VALUES (3432, '和硕县', '652828', '0996', 3424, 'Hoxud'); +INSERT INTO `t_region` VALUES (3433, '博湖县', '652829', '0996', 3424, 'Bohu'); +INSERT INTO `t_region` VALUES (3434, '阿克苏地区', '652900', '0997', 3386, 'Aksu Prefecture '); +INSERT INTO `t_region` VALUES (3435, '阿克苏市', '652901', '0997', 3434, 'Akesu City'); +INSERT INTO `t_region` VALUES (3436, '温宿县', '652922', '0997', 3434, 'Wensu'); +INSERT INTO `t_region` VALUES (3437, '库车县', '652923', '0997', 3434, 'Kuqa'); +INSERT INTO `t_region` VALUES (3438, '沙雅县', '652924', '0997', 3434, 'Xayar'); +INSERT INTO `t_region` VALUES (3439, '新和县', '652925', '0997', 3434, 'Xinhe'); +INSERT INTO `t_region` VALUES (3440, '拜城县', '652926', '0997', 3434, 'Baicheng'); +INSERT INTO `t_region` VALUES (3441, '乌什县', '652927', '0997', 3434, 'Wushi'); +INSERT INTO `t_region` VALUES (3442, '阿瓦提县', '652928', '0997', 3434, 'Awat'); +INSERT INTO `t_region` VALUES (3443, '柯坪县', '652929', '0997', 3434, 'Kalpin'); +INSERT INTO `t_region` VALUES (3444, '克孜勒苏柯尔克孜自治州', '653000', '0908', 3386, 'Kergez Autonomous Prefecture of Kizilsu '); +INSERT INTO `t_region` VALUES (3445, '阿图什市', '653001', '0908', 3444, 'Artux City'); +INSERT INTO `t_region` VALUES (3446, '阿克陶县', '653022', '0908', 3444, 'Akto'); +INSERT INTO `t_region` VALUES (3447, '阿合奇县', '653023', '0908', 3444, 'Akqi'); +INSERT INTO `t_region` VALUES (3448, '乌恰县', '653024', '0908', 3444, 'Wuqia'); +INSERT INTO `t_region` VALUES (3449, '喀什地区', '653100', '0998', 3386, 'Kashi Prefecture '); +INSERT INTO `t_region` VALUES (3450, '喀什市', '653101', '0998', 3449, 'Kashi'); +INSERT INTO `t_region` VALUES (3451, '疏附县', '653121', '0998', 3449, 'Shufu'); +INSERT INTO `t_region` VALUES (3452, '疏勒县', '653122', '0998', 3449, 'Shule'); +INSERT INTO `t_region` VALUES (3453, '英吉沙县', '653123', '0998', 3449, 'Yengisar'); +INSERT INTO `t_region` VALUES (3454, '泽普县', '653124', '0998', 3449, 'Zepu'); +INSERT INTO `t_region` VALUES (3455, '莎车县', '653125', '0998', 3449, 'Shache'); +INSERT INTO `t_region` VALUES (3456, '叶城县', '653126', '0998', 3449, 'Yecheng'); +INSERT INTO `t_region` VALUES (3457, '麦盖提县', '653127', '0998', 3449, 'Markit'); +INSERT INTO `t_region` VALUES (3458, '岳普湖县', '653128', '0998', 3449, 'Yopurga'); +INSERT INTO `t_region` VALUES (3459, '伽师县', '653129', '0998', 3449, 'Jiashi'); +INSERT INTO `t_region` VALUES (3460, '巴楚县', '653130', '0998', 3449, 'Bachu'); +INSERT INTO `t_region` VALUES (3461, '塔什库尔干塔吉克自治县', '653131', '0998', 3449, 'Tajik Autonomousof Taxkorgan '); +INSERT INTO `t_region` VALUES (3462, '和田地区', '653200', '0903', 3386, 'Hotan Prefecture '); +INSERT INTO `t_region` VALUES (3463, '和田市', '653201', '0903', 3462, 'Hetian City'); +INSERT INTO `t_region` VALUES (3464, '和田县', '653221', '0903', 3462, 'Hotan'); +INSERT INTO `t_region` VALUES (3465, '墨玉县', '653222', '0903', 3462, 'Moyu'); +INSERT INTO `t_region` VALUES (3466, '皮山县', '653223', '0903', 3462, 'Pishan'); +INSERT INTO `t_region` VALUES (3467, '洛浦县', '653224', '0903', 3462, 'Lop'); +INSERT INTO `t_region` VALUES (3468, '策勒县', '653225', '0903', 3462, 'Qira'); +INSERT INTO `t_region` VALUES (3469, '于田县', '653226', '0903', 3462, 'Yutian'); +INSERT INTO `t_region` VALUES (3470, '民丰县', '653227', '0903', 3462, 'Minfeng'); +INSERT INTO `t_region` VALUES (3471, '伊犁哈萨克自治州', '654000', '0999', 3386, 'Kazak Autonomous Prefecture of Ili '); +INSERT INTO `t_region` VALUES (3472, '伊宁市', '654002', '0999', 3471, 'Yining'); +INSERT INTO `t_region` VALUES (3473, '奎屯市', '654003', '0999', 3471, 'Kuytun'); +INSERT INTO `t_region` VALUES (3474, '霍尔果斯市', '654004', '0999', 3471, 'Huoerguosi City'); +INSERT INTO `t_region` VALUES (3475, '伊宁县', '654021', '0999', 3471, 'Yining'); +INSERT INTO `t_region` VALUES (3476, '察布查尔锡伯自治县', '654022', '0999', 3471, 'Xibe Autonomousof Qapqal '); +INSERT INTO `t_region` VALUES (3477, '霍城县', '654023', '0999', 3471, 'Huocheng'); +INSERT INTO `t_region` VALUES (3478, '巩留县', '654024', '0999', 3471, 'Gongliu'); +INSERT INTO `t_region` VALUES (3479, '新源县', '654025', '0999', 3471, 'Xinyuan'); +INSERT INTO `t_region` VALUES (3480, '昭苏县', '654026', '0999', 3471, 'Zhaosu'); +INSERT INTO `t_region` VALUES (3481, '特克斯县', '654027', '0999', 3471, 'Tekes'); +INSERT INTO `t_region` VALUES (3482, '尼勒克县', '654028', '0999', 3471, 'Nilka'); +INSERT INTO `t_region` VALUES (3483, '塔城地区', '654200', '0901', 3386, 'Tacheng Prefecture '); +INSERT INTO `t_region` VALUES (3484, '塔城市', '654201', '0901', 3483, 'tacheng city'); +INSERT INTO `t_region` VALUES (3485, '乌苏市', '654202', '0901', 3483, 'Wusu'); +INSERT INTO `t_region` VALUES (3486, '额敏县', '654221', '0901', 3483, 'Emin'); +INSERT INTO `t_region` VALUES (3487, '沙湾县', '654223', '0901', 3483, 'Shawan'); +INSERT INTO `t_region` VALUES (3488, '托里县', '654224', '0901', 3483, 'Toli'); +INSERT INTO `t_region` VALUES (3489, '裕民县', '654225', '0901', 3483, 'Yumin'); +INSERT INTO `t_region` VALUES (3490, '和布克赛尔蒙古自治县', '654226', '0901', 3483, 'Mongolian Autonomousof Hoboksar '); +INSERT INTO `t_region` VALUES (3491, '阿勒泰地区', '654300', '0906', 3386, 'Altay Prefecture '); +INSERT INTO `t_region` VALUES (3492, '阿勒泰市', '654301', '0906', 3491, 'Aletai City'); +INSERT INTO `t_region` VALUES (3493, '布尔津县', '654321', '0906', 3491, 'Burqin'); +INSERT INTO `t_region` VALUES (3494, '富蕴县', '654322', '0906', 3491, 'Fuyun'); +INSERT INTO `t_region` VALUES (3495, '福海县', '654323', '0906', 3491, 'Fuhai'); +INSERT INTO `t_region` VALUES (3496, '哈巴河县', '654324', '0906', 3491, 'Habahe'); +INSERT INTO `t_region` VALUES (3497, '青河县', '654325', '0906', 3491, 'Qinghe'); +INSERT INTO `t_region` VALUES (3498, '吉木乃县', '654326', '0906', 3491, 'Jeminay'); +INSERT INTO `t_region` VALUES (3499, '石河子市', '659001', '0993', 3491, 'Shihezi'); +INSERT INTO `t_region` VALUES (3500, '阿拉尔市', '659002', '1997', 3491, 'Alar City'); +INSERT INTO `t_region` VALUES (3501, '图木舒克市', '659003', '1998', 3491, 'Tumxuk'); +INSERT INTO `t_region` VALUES (3502, '五家渠市', '659004', '1994', 3491, 'Wujiaqu'); +INSERT INTO `t_region` VALUES (3503, '北屯市', '659005', '1906', 3491, 'North Tun City'); +INSERT INTO `t_region` VALUES (3504, '铁门关市', '659006', '1996', 3491, 'Iron gate in the city'); +INSERT INTO `t_region` VALUES (3505, '双河市', '659007', '1909', 3491, 'Shuanghe City'); +INSERT INTO `t_region` VALUES (3506, '可克达拉市', '659008', '1999', 3491, 'Kirdalla City'); +INSERT INTO `t_region` VALUES (3507, '昆玉市', '659009', '1903', 3491, 'Kun Yu City'); +INSERT INTO `t_region` VALUES (3508, '台湾省', '710000', '1886', 0, 'Taiwan Province '); +INSERT INTO `t_region` VALUES (3509, '香港特别行政区', '810000', '1852', 0, 'Hong Kong Special Administrative Region(HKSAR) '); +INSERT INTO `t_region` VALUES (3510, '中西区', '810001', '1852', 3491, 'Western and Western Region'); +INSERT INTO `t_region` VALUES (3511, '湾仔区', '810002', '1852', 3491, 'wan chai'); +INSERT INTO `t_region` VALUES (3512, '东区', '810003', '1852', 3491, 'Eastern Conference '); +INSERT INTO `t_region` VALUES (3513, '南区', '810004', '1852', 3491, 'South Area'); +INSERT INTO `t_region` VALUES (3514, '油尖旺区', '810005', '1852', 3491, 'Oil spike'); +INSERT INTO `t_region` VALUES (3515, '深水埗区', '810006', '1852', 3491, 'Deepwater'); +INSERT INTO `t_region` VALUES (3516, '九龙城区', '810007', '1852', 3491, 'Kowloon City'); +INSERT INTO `t_region` VALUES (3517, '黄大仙区', '810008', '1852', 3491, 'Huang Da Xian'); +INSERT INTO `t_region` VALUES (3518, '观塘区', '810009', '1852', 3491, 'Kwun Tong'); +INSERT INTO `t_region` VALUES (3519, '荃湾区', '810010', '1852', 3491, 'Tsuen Wan'); +INSERT INTO `t_region` VALUES (3520, '屯门区', '810011', '1852', 3491, 'Tuen Mun'); +INSERT INTO `t_region` VALUES (3521, '元朗区', '810012', '1852', 3491, 'Yuen Long'); +INSERT INTO `t_region` VALUES (3522, '北区', '810013', '1852', 3491, 'Norte, Reg.'); +INSERT INTO `t_region` VALUES (3523, '大埔区', '810014', '1852', 3491, 'Tai Po'); +INSERT INTO `t_region` VALUES (3524, '西贡区', '810015', '1852', 3491, 'Sai Kung'); +INSERT INTO `t_region` VALUES (3525, '沙田区', '810016', '1852', 3491, 'sha tin'); +INSERT INTO `t_region` VALUES (3526, '葵青区', '810017', '1852', 3491, 'Kwai Tsing'); +INSERT INTO `t_region` VALUES (3527, '离岛区', '810018', '1852', 3491, 'islands'); +INSERT INTO `t_region` VALUES (3528, '澳门特别行政区', '820000', '1853', 0, 'the Macao Special Administrative Region'); +INSERT INTO `t_region` VALUES (3529, '花地玛堂区', '820001', '1853', 3491, 'Our Lady of Fatima Parish'); +INSERT INTO `t_region` VALUES (3530, '花王堂区', '820002', '1853', 3491, 'Flower Wang Tang'); +INSERT INTO `t_region` VALUES (3531, '望德堂区', '820003', '1853', 3491, 'Wang de Tang'); +INSERT INTO `t_region` VALUES (3532, '大堂区', '820004', '1853', 3491, 'Cathedral Parish'); +INSERT INTO `t_region` VALUES (3533, '风顺堂区', '820005', '1853', 3491, 'St. Lawrence Parish'); +INSERT INTO `t_region` VALUES (3534, '嘉模堂区', '820006', '1853', 3491, 'Jiaxu Tang'); +INSERT INTO `t_region` VALUES (3535, '路凼填海区', '820007', '1853', 3491, 'Taipan reclamation area'); +INSERT INTO `t_region` VALUES (3536, '圣方济各堂区', '820008', '1853', 3491, 'San Francisco'); + +-- ---------------------------- +-- Table structure for t_systen_config +-- ---------------------------- +DROP TABLE IF EXISTS `t_systen_config`; +CREATE TABLE `t_systen_config` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `type` int(1) NULL DEFAULT NULL COMMENT '类型(1=派单规则,2=佣金分成规则,3=抽成规则,4=积分规则,5=价格规则,6=余额规则,7=客服管理)', + `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT '内容', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '系统配置' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_systen_config +-- ---------------------------- + +-- ---------------------------- +-- Table structure for t_user_tag +-- ---------------------------- +DROP TABLE IF EXISTS `t_user_tag`; +CREATE TABLE `t_user_tag` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '标签名', + `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '达标条件', + `status` int(1) NULL DEFAULT NULL COMMENT '状态(1=正常,2=冻结,3=删除)', + `createTime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '用户标签' ROW_FORMAT = COMPACT; + +-- ---------------------------- +-- Records of t_user_tag +-- ---------------------------- + +SET FOREIGN_KEY_CHECKS = 1; -- Gitblit v1.7.1