跳到主要内容
版本:3.2

EDT部署指南

应用服务

部署列表

应用服务用途依赖组件
edt-event-data-mergeflink实时写后定时合并数据flink hdfs
edt-event-process-data接收kafka数据处理到hive,clickhose,hbase(维度表)flink clickhose hdfs kafka
edt-event-process-pipeline处理前端上报接口校验,正确和错误的上报数据分别分发到kafka供edt-event-process-data消费,上报接口数据完整存入clickhouseflink clickhouse zookeeper kafka
edt-report-api获取token, 事件上报kafka
edt-management-serviceEDT后台关联系统zookeeper,pgsql,clickhouse

应用部署脚本

edt-event-process-pipeline服务

依赖jar:通过maven打包后上传到指定的目录

启动脚本:

bash /data/software/flink-1.17.1/bin/flink run -c com.chinapex.edt.pipeline.FlinkEventProcessPipelineApp /home/hadoop/project/edt-event-process-pipeline.jar

application.properties

###############################flink配置###############################
#并行数
stream.parallelism=1
#是否开启checkpoint
stream.checkpoint.enable=true
#开启检查点并设置检查点间隔时间,以毫秒为单位
stream.checkpoint.interval=5000
#重启次数
stream.restart.attempts=4
#重启间隔时间,单位ms
stream.delay.between.attempts=60000
#两个Checkpoint 之间最少等待时间,单位ms
stream.min.pause.between.checkpoints=500
#checkpoint的超时时间,单位ms
stream.checkpoint.timeout=600000
#设置同一时间有多少个checkpoint可以同时执行
stream.max.concurrent.checkpoints=1
#设置允许的检查点失败次数
stream.tolerable.checkpoint.failure.number=0
#设置时间窗口间隔,单位秒
stream.window.time=10
###############################flink配置###############################


##Source kafka config #########################################################
nexus.pipeline.kafka.source.bootstrap-servers=10.25.19.207:9092,10.25.19.208:9092
nexus.pipeline.kafka.source.topic=data_buffer_nexus_release_dc_sdk_push_json
nexus.pipeline.kafka.source.consumer.group-id=default
nexus.pipeline.kafka.source.max-poll-records=10000
nexus.pipeline.kafka.source.session.timeout.ms=120000
nexus.pipeline.kafka.source.request.timeout.ms=180000

# latest, earliest, none
nexus.pipeline.kafka.source.auto-offset-reset=latest


##Sink kafka config #########################################################
nexus.pipeline.kafka.sink.bootstrap-servers=10.25.19.207:9092,10.25.19.208:9092
nexus.pipeline.kafka.dc.valid.topic=data_pipeline_valid_release_json
nexus.pipeline.kafka.dc.invalid.topic=data_pipeline_invalid_release_json
nexus.pipeline.kafka.dc.event.distinct.topic=data_pipeline_event_distinct_release_json



#zookeeper
nexus.edt.zookeeper.connect.string=10.25.19.204:2181,10.25.19.205:2181,10.25.19.206:2181
nexus.edt.zookeeper.namespace=edt_event
nexus.edt.zookeeper.session.timeout.ms=60000
nexus.edt.zookeeper.max.close.wait.ms=15000
nexus.edt.zookeeper.base.sleep.time.ms=3000
nexus.edt.zookeeper.max.retries=10

nexus.edt.zookeeper.event.attribute.mapping.path=/event/attribute/mapping
nexus.edt.zookeeper.event.path=/event

#clickhouse
clickhouse.host=10.25.19.208:8123
clickhouse.database=default
clickhouse.username=default
clickhouse.password=123
clickhouse.stream.parallelism=1

sql_clickhouse.sql

CREATE DATABASE IF NOT EXISTS ods_dc;
drop table IF EXISTS ods_dc.ods_event_pipeline_realtime;
CREATE TABLE IF NOT EXISTS ods_dc.ods_event_pipeline_realtime(
apexId Nullable(String),
appId Nullable(String),
appVersion Nullable(String),
content Nullable(String),
createTime DateTime,
ts DateTime,
error Nullable(String),
eventCode Nullable(String),
eventType Nullable(String),
projectId Nullable(String),
sendType Nullable(String),
wechatOpenId Nullable(String),
wechatUnionId Nullable(String),
eventName Nullable(String)
) ENGINE = MergeTree
PARTITION BY ts
ORDER BY (ts,createTime)
COMMENT '事件中心实时查询表';

edt-event-process-data服务

1、edt-event-process-data 启动以及properties脚本

依赖jar:通过maven打包后上传到指定的目录

启动脚本

bash /data/software/flink-1.17.1/bin/flink run -c com.chinapex.edt.data.process.FlinkKafkaConsumerAndProcess /home/hadoop/project/edt-event-process-data.jar

application.properties

##Source kafka config #########################################################
nexus.pipeline.kafka.bootstrap-servers=10.25.19.207:9092,10.25.19.208:9092
nexus.pipeline.kafka.dc.valid.topic=data_pipeline_valid_release_json
nexus.pipeline.kafka.dc.invalid.topic=data_pipeline_invalid_release_json
nexus.pipeline.kafka.consumer.group-id=default
nexus.pipeline.kafka.producer.max-poll-records=10000
nexus.pipeline.kafka.session.timeout.ms=120000
nexus.pipeline.kafka.request.timeout.ms=180000

# latest, earliest, none
nexus.pipeline.kafka.auto-offset-reset=latest

spring.datasource.url=jdbc:postgresql://10.25.19.2:5432/postgres
spring.datasource.username=postgres
spring.datasource.password=123456
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.hikari.schema=nexus_edt

mybatis-plus.configuration.map-underscore-to-camel-case=true
mybatis-plus.mapper-locations=classpath:mapper/*.xml



###############################flink配置###############################
#并行数
stream.parallelism=1
#是否开启checkpoint
stream.checkpoint.enable=true
#开启检查点并设置检查点间隔时间,以毫秒为单位
stream.checkpoint.interval=10000
#重启次数
stream.restart.attempts=4
#重启间隔时间,单位ms
stream.delay.between.attempts=60000
#两个Checkpoint 之间最少等待时间,单位ms
stream.min.pause.between.checkpoints=500
#checkpoint的超时时间,单位ms
stream.checkpoint.timeout=600000
#设置同一时间有多少个checkpoint可以同时执行
stream.max.concurrent.checkpoints=3
#设置允许的检查点失败次数
stream.tolerable.checkpoint.failure.number=0
#设置时间窗口间隔,单位秒
stream.window.time=30
#实时指标计算的时间窗口间隔,单位秒
stream.events.metrics.window.time=10
###############################flink配置###############################

#hdfs
hdfs.root.path=hdfs://nn1:8020
raw.events.hdfs.path=/raw/dc/events
raw.events.error.hdfs.path=/raw/dc/events/error
dwd.events.hdfs.path=/user/hive/warehouse/dwd_events
hadoop.user.name=hadoop


#EventsDwd
struct.evetns.dwd=distinct_id:string,ts:string,apex_id:string,event_code:string,tenant_id:string,project_id:string,app_id:string,platform:string,message_id:string,user_id:string,event_name:string,event_type:string,send_type:string,event_code_md5:string,event_duration:string,browse_time:string,device_id:string,device_model:string,device_brand:string,device_type:string,device_uuid:string,carriers:string,network_type:string,android_id:string,imei:string,mac:string,user_agent:string,os:string,idfa:string,idfv:string,oaid:string,latitude:string,longitude:string,wechat_open_id:string,wechat_union_id:string,screen_width:string,screen_height:string,page_height:string,page_width:string,browser_version:string,session_id:string,sdk_version:string,sdk_type:string,app_version:string,app_package_id:string,mini_program_scene:string,market_name:string,referrer_url:string,referrer_host:string,utm_matching_type:string,utm_source:string,utm_medium:string,utm_term:string,utm_content:string,utm_campaign:string,ip:string,province:string,city:string,county:string,country:string,page_type:string,current_page_id:string,current_page_name:string,current_page_url:string,time_since_last_operation:string,current_page_host:string,current_page_query:string,current_page_path:string,source_page_id:string,source_page_name:string,source_page_url:string,source_page_host:string,source_page_query:string,source_page_path:string,page_X:string,page_Y:string,client_X:string,client_Y:string,element_id:string,element_name:string,element_target_url:string,element_type:string,element_content:string,element_selector:string,element_position:string,element_index:string,element_tag_name:string,element_class:string,element_path:string,upload_time:string,write_log_time:string,insert_db_time:string,track_signup_original_id:string,last_visit_time:string,is_first_time:string,forward_user_id:string,extensions_1:string,extensions_2:string,extensions_3:string,extensions_4:string,extensions_5:string,extensions_6:string,extensions_7:string,extensions_8:string,extensions_9:string,extensions_10:string,extensions_11:string,extensions_12:string,extensions_13:string,extensions_14:string,extensions_15:string,extensions_16:string,extensions_17:string,extensions_18:string,extensions_19:string,extensions_20:string,extensions_21:string,extensions_22:string,extensions_23:string,extensions_24:string,extensions_25:string,extensions_26:string,extensions_27:string,extensions_28:string,extensions_29:string,extensions_30:string,extensions_31:string,extensions_32:string,extensions_33:string,extensions_34:string,extensions_35:string,extensions_36:string,extensions_37:string,extensions_38:string,extensions_39:string,extensions_40:string,extensions_41:string,extensions_42:string,extensions_43:string,extensions_44:string,extensions_45:string,extensions_46:string,extensions_47:string,extensions_48:string,extensions_49:string,extensions_50:string,extensions_51:string,extensions_52:string,extensions_53:string,extensions_54:string,extensions_55:string,extensions_56:string,extensions_57:string,extensions_58:string,extensions_59:string,extensions_60:string,extensions_61:string,extensions_62:string,extensions_63:string,extensions_64:string,extensions_65:string,extensions_66:string,extensions_67:string,extensions_68:string,extensions_69:string,extensions_70:string,extensions_71:string,extensions_72:string,extensions_73:string,extensions_74:string,extensions_75:string,extensions_76:string,extensions_77:string,extensions_78:string,extensions_79:string,extensions_80:string,extensions_81:string,extensions_82:string,extensions_83:string,extensions_84:string,extensions_85:string,extensions_86:string,extensions_87:string,extensions_88:string,extensions_89:string,extensions_90:string,extensions_91:string,extensions_92:string,extensions_93:string,extensions_94:string,extensions_95:string,extensions_96:string,extensions_97:string,extensions_98:string,extensions_99:string,extensions_100:string,extensions_101:string,extensions_102:string,extensions_103:string,extensions_104:string,extensions_105:string,extensions_106:string,extensions_107:string,extensions_108:string,extensions_109:string,extensions_110:string,extensions_111:string,extensions_112:string,extensions_113:string,extensions_114:string,extensions_115:string,extensions_116:string,extensions_117:string,extensions_118:string,extensions_119:string,extensions_120:string,extensions_121:string,extensions_122:string,extensions_123:string,extensions_124:string,extensions_125:string,extensions_126:string,extensions_127:string,extensions_128:string,extensions_129:string,extensions_130:string,extensions_131:string,extensions_132:string,extensions_133:string,extensions_134:string,extensions_135:string,extensions_136:string,extensions_137:string,extensions_138:string,extensions_139:string,extensions_140:string,extensions_141:string,extensions_142:string,extensions_143:string,extensions_144:string,extensions_145:string,extensions_146:string,extensions_147:string,extensions_148:string,extensions_149:string,extensions_150:string,extensions_151:string,extensions_152:string,extensions_153:string,extensions_154:string,extensions_155:string,extensions_156:string,extensions_157:string,extensions_158:string,extensions_159:string,extensions_160:string,extensions_161:string,extensions_162:string,extensions_163:string,extensions_164:string,extensions_165:string,extensions_166:string,extensions_167:string,extensions_168:string,extensions_169:string,extensions_170:string,extensions_171:string,extensions_172:string,extensions_173:string,extensions_174:string,extensions_175:string,extensions_176:string,extensions_177:string,extensions_178:string,extensions_179:string,extensions_180:string,extensions_181:string,extensions_182:string,extensions_183:string,extensions_184:string,extensions_185:string,extensions_186:string,extensions_187:string,extensions_188:string,extensions_189:string,extensions_190:string,extensions_191:string,extensions_192:string,extensions_193:string,extensions_194:string,extensions_195:string,extensions_196:string,extensions_197:string,extensions_198:string,extensions_199:string,extensions_200:string,extensions_201:string,extensions_202:string,extensions_203:string,extensions_204:string,extensions_205:string,extensions_206:string,extensions_207:string,extensions_208:string,extensions_209:string,extensions_210:string,extensions_211:string,extensions_212:string,extensions_213:string,extensions_214:string,extensions_215:string,extensions_216:string,extensions_217:string,extensions_218:string,extensions_219:string,extensions_220:string,extensions_221:string,extensions_222:string,extensions_223:string,extensions_224:string,extensions_225:string,extensions_226:string,extensions_227:string,extensions_228:string,extensions_229:string,extensions_230:string,extensions_231:string,extensions_232:string,extensions_233:string,extensions_234:string,extensions_235:string,extensions_236:string,extensions_237:string,extensions_238:string,extensions_239:string,extensions_240:string,extensions_241:string,extensions_242:string,extensions_243:string,extensions_244:string,extensions_245:string,extensions_246:string,extensions_247:string,extensions_248:string,extensions_249:string,extensions_250:string,extensions_251:string,extensions_252:string,extensions_253:string,extensions_254:string,extensions_255:string,extensions_256:string,extensions_257:string,extensions_258:string,extensions_259:string,extensions_260:string,extensions_261:string,extensions_262:string,extensions_263:string,extensions_264:string,extensions_265:string,extensions_266:string,extensions_267:string,extensions_268:string,extensions_269:string,extensions_270:string,extensions_271:string,extensions_272:string,extensions_273:string,extensions_274:string,extensions_275:string,extensions_276:string,extensions_277:string,extensions_278:string,extensions_279:string,extensions_280:string,extensions_281:string,extensions_282:string,extensions_283:string,extensions_284:string,extensions_285:string,extensions_286:string,extensions_287:string,extensions_288:string,extensions_289:string,extensions_290:string,extensions_291:string,extensions_292:string,extensions_293:string,extensions_294:string,extensions_295:string,extensions_296:string,extensions_297:string,extensions_298:string,extensions_299:string,extensions_300:string,extensions_301:string,extensions_302:string,extensions_303:string,extensions_304:string,extensions_305:string,extensions_306:string,extensions_307:string,extensions_308:string,extensions_309:string,extensions_310:string,extensions_311:string,extensions_312:string,extensions_313:string,extensions_314:string,extensions_315:string,extensions_316:string,extensions_317:string,extensions_318:string,extensions_319:string,extensions_320:string,extensions_321:string,extensions_322:string,extensions_323:string,extensions_324:string,extensions_325:string,extensions_326:string,extensions_327:string,extensions_328:string,extensions_329:string,extensions_330:string,extensions_331:string,extensions_332:string,extensions_333:string,extensions_334:string,extensions_335:string,extensions_336:string,extensions_337:string,extensions_338:string,extensions_339:string,extensions_340:string,extensions_341:string,extensions_342:string,extensions_343:string,extensions_344:string,extensions_345:string,extensions_346:string,extensions_347:string,extensions_348:string,extensions_349:string,extensions_350:string,extensions_351:string,extensions_352:string,extensions_353:string,extensions_354:string,extensions_355:string,extensions_356:string,extensions_357:string,extensions_358:string,extensions_359:string,extensions_360:string,extensions_361:string,extensions_362:string,extensions_363:string,extensions_364:string,extensions_365:string,extensions_366:string,extensions_367:string,extensions_368:string,extensions_369:string,extensions_370:string,extensions_371:string,extensions_372:string,extensions_373:string,extensions_374:string,extensions_375:string,extensions_376:string,extensions_377:string,extensions_378:string,extensions_379:string,extensions_380:string,extensions_381:string,extensions_382:string,extensions_383:string,extensions_384:string,extensions_385:string,extensions_386:string,extensions_387:string,extensions_388:string,extensions_389:string,extensions_390:string,extensions_391:string,extensions_392:string,extensions_393:string,extensions_394:string,extensions_395:string,extensions_396:string,extensions_397:string,extensions_398:string,extensions_399:string,extensions_400:string,extensions_401:string,extensions_402:string,extensions_403:string,extensions_404:string,extensions_405:string,extensions_406:string,extensions_407:string,extensions_408:string,extensions_409:string,extensions_410:string,extensions_411:string,extensions_412:string,extensions_413:string,extensions_414:string,extensions_415:string,extensions_416:string,extensions_417:string,extensions_418:string,extensions_419:string,extensions_420:string,extensions_421:string,extensions_422:string,extensions_423:string,extensions_424:string,extensions_425:string,extensions_426:string,extensions_427:string,extensions_428:string,extensions_429:string,extensions_430:string,extensions_431:string,extensions_432:string,extensions_433:string,extensions_434:string,extensions_435:string,extensions_436:string,extensions_437:string,extensions_438:string,extensions_439:string,extensions_440:string,extensions_441:string,extensions_442:string,extensions_443:string,extensions_444:string,extensions_445:string,extensions_446:string,extensions_447:string,extensions_448:string,extensions_449:string,extensions_450:string,extensions_451:string,extensions_452:string,extensions_453:string,extensions_454:string,extensions_455:string,extensions_456:string,extensions_457:string,extensions_458:string,extensions_459:string,extensions_460:string,extensions_461:string,extensions_462:string,extensions_463:string,extensions_464:string,extensions_465:string,extensions_466:string,extensions_467:string,extensions_468:string,extensions_469:string,extensions_470:string,extensions_471:string,extensions_472:string,extensions_473:string,extensions_474:string,extensions_475:string,extensions_476:string,extensions_477:string,extensions_478:string,extensions_479:string,extensions_480:string,extensions_481:string,extensions_482:string,extensions_483:string,extensions_484:string,extensions_485:string,extensions_486:string,extensions_487:string,extensions_488:string,extensions_489:string,extensions_490:string,extensions_491:string,extensions_492:string,extensions_493:string,extensions_494:string,extensions_495:string,extensions_496:string,extensions_497:string,extensions_498:string,extensions_499:string,extensions_500:string,extensions_501:string,extensions_502:string,extensions_503:string,extensions_504:string,extensions_505:string,extensions_506:string,extensions_507:string,extensions_508:string,extensions_509:string,extensions_510:string,extensions_511:string,extensions_512:string,extensions_513:string,extensions_514:string,extensions_515:string,extensions_516:string,extensions_517:string,extensions_518:string,extensions_519:string,extensions_520:string,extensions_521:string,extensions_522:string,extensions_523:string,extensions_524:string,extensions_525:string,extensions_526:string,extensions_527:string,extensions_528:string,extensions_529:string,extensions_530:string,extensions_531:string,extensions_532:string,extensions_533:string,extensions_534:string,extensions_535:string,extensions_536:string,extensions_537:string,extensions_538:string,extensions_539:string,extensions_540:string,extensions_541:string,extensions_542:string,extensions_543:string,extensions_544:string,extensions_545:string,extensions_546:string,extensions_547:string,extensions_548:string,extensions_549:string,extensions_550:string,extensions_551:string,extensions_552:string,extensions_553:string,extensions_554:string,extensions_555:string,extensions_556:string,extensions_557:string,extensions_558:string,extensions_559:string,extensions_560:string,extensions_561:string,extensions_562:string,extensions_563:string,extensions_564:string,extensions_565:string,extensions_566:string,extensions_567:string,extensions_568:string,extensions_569:string,extensions_570:string,extensions_571:string,extensions_572:string,extensions_573:string,extensions_574:string,extensions_575:string,extensions_576:string,extensions_577:string,extensions_578:string,extensions_579:string,extensions_580:string,extensions_581:string,extensions_582:string,extensions_583:string,extensions_584:string,extensions_585:string,extensions_586:string,extensions_587:string,extensions_588:string,extensions_589:string,extensions_590:string,extensions_591:string,extensions_592:string,extensions_593:string,extensions_594:string,extensions_595:string,extensions_596:string,extensions_597:string,extensions_598:string,extensions_599:string,extensions_600:string,extensions_601:string,extensions_602:string,extensions_603:string,extensions_604:string,extensions_605:string,extensions_606:string,extensions_607:string,extensions_608:string,extensions_609:string,extensions_610:string,extensions_611:string,extensions_612:string,extensions_613:string,extensions_614:string,extensions_615:string,extensions_616:string,extensions_617:string,extensions_618:string,extensions_619:string,extensions_620:string,extensions_621:string,extensions_622:string,extensions_623:string,extensions_624:string,extensions_625:string,extensions_626:string,extensions_627:string,extensions_628:string,extensions_629:string,extensions_630:string,extensions_631:string,extensions_632:string,extensions_633:string,extensions_634:string,extensions_635:string,extensions_636:string,extensions_637:string,extensions_638:string,extensions_639:string,extensions_640:string,extensions_641:string,extensions_642:string,extensions_643:string,extensions_644:string,extensions_645:string,extensions_646:string,extensions_647:string,extensions_648:string,extensions_649:string,extensions_650:string,extensions_651:string,extensions_652:string,extensions_653:string,extensions_654:string,extensions_655:string,extensions_656:string,extensions_657:string,extensions_658:string,extensions_659:string,extensions_660:string,extensions_661:string,extensions_662:string,extensions_663:string,extensions_664:string,extensions_665:string,extensions_666:string,extensions_667:string,extensions_668:string,extensions_669:string,extensions_670:string,extensions_671:string,extensions_672:string,extensions_673:string,extensions_674:string,extensions_675:string,extensions_676:string,extensions_677:string,extensions_678:string,extensions_679:string,extensions_680:string,extensions_681:string,extensions_682:string,extensions_683:string,extensions_684:string,extensions_685:string,extensions_686:string,extensions_687:string,extensions_688:string,extensions_689:string,extensions_690:string,extensions_691:string,extensions_692:string,extensions_693:string,extensions_694:string,extensions_695:string,extensions_696:string,extensions_697:string,extensions_698:string,extensions_699:string,extensions_700:string,extensions_701:string,extensions_702:string,extensions_703:string,extensions_704:string,extensions_705:string,extensions_706:string,extensions_707:string,extensions_708:string,extensions_709:string,extensions_710:string,extensions_711:string,extensions_712:string,extensions_713:string,extensions_714:string,extensions_715:string,extensions_716:string,extensions_717:string,extensions_718:string,extensions_719:string,extensions_720:string,extensions_721:string,extensions_722:string,extensions_723:string,extensions_724:string,extensions_725:string,extensions_726:string,extensions_727:string,extensions_728:string,extensions_729:string,extensions_730:string,extensions_731:string,extensions_732:string,extensions_733:string,extensions_734:string,extensions_735:string,extensions_736:string,extensions_737:string,extensions_738:string,extensions_739:string,extensions_740:string,extensions_741:string,extensions_742:string,extensions_743:string,extensions_744:string,extensions_745:string,extensions_746:string,extensions_747:string,extensions_748:string,extensions_749:string,extensions_750:string,extensions_751:string,extensions_752:string,extensions_753:string,extensions_754:string,extensions_755:string,extensions_756:string,extensions_757:string,extensions_758:string,extensions_759:string,extensions_760:string,extensions_761:string,extensions_762:string,extensions_763:string,extensions_764:string,extensions_765:string,extensions_766:string,extensions_767:string,extensions_768:string,extensions_769:string,extensions_770:string,extensions_771:string,extensions_772:string,extensions_773:string,extensions_774:string,extensions_775:string,extensions_776:string,extensions_777:string,extensions_778:string,extensions_779:string,extensions_780:string,extensions_781:string,extensions_782:string,extensions_783:string,extensions_784:string,extensions_785:string,extensions_786:string,extensions_787:string,extensions_788:string,extensions_789:string,extensions_790:string,extensions_791:string,extensions_792:string,extensions_793:string,extensions_794:string,extensions_795:string,extensions_796:string,extensions_797:string,extensions_798:string,extensions_799:string,extensions_800:string,extensions_801:string,extensions_802:string,extensions_803:string,extensions_804:string,extensions_805:string,extensions_806:string,extensions_807:string,extensions_808:string,extensions_809:string,extensions_810:string,extensions_811:string,extensions_812:string,extensions_813:string,extensions_814:string,extensions_815:string,extensions_816:string,extensions_817:string,extensions_818:string,extensions_819:string,extensions_820:string,extensions_821:string,extensions_822:string,extensions_823:string,extensions_824:string,extensions_825:string,extensions_826:string,extensions_827:string,extensions_828:string,extensions_829:string,extensions_830:string,extensions_831:string,extensions_832:string,extensions_833:string,extensions_834:string,extensions_835:string,extensions_836:string,extensions_837:string,extensions_838:string,extensions_839:string,extensions_840:string,extensions_841:string,extensions_842:string,extensions_843:string,extensions_844:string,extensions_845:string,extensions_846:string,extensions_847:string,extensions_848:string,extensions_849:string,extensions_850:string,extensions_851:string,extensions_852:string,extensions_853:string,extensions_854:string,extensions_855:string,extensions_856:string,extensions_857:string,extensions_858:string,extensions_859:string,extensions_860:string,extensions_861:string,extensions_862:string,extensions_863:string,extensions_864:string,extensions_865:string,extensions_866:string,extensions_867:string,extensions_868:string,extensions_869:string,extensions_870:string,extensions_871:string,extensions_872:string,extensions_873:string,extensions_874:string,extensions_875:string,extensions_876:string,extensions_877:string,extensions_878:string,extensions_879:string,extensions_880:string,extensions_881:string,extensions_882:string,extensions_883:string,extensions_884:string,extensions_885:string,extensions_886:string,extensions_887:string,extensions_888:string,extensions_889:string,extensions_890:string,extensions_891:string,extensions_892:string,extensions_893:string,extensions_894:string,extensions_895:string,extensions_896:string,extensions_897:string,extensions_898:string,extensions_899:string,extensions_900:string,extensions_901:string,extensions_902:string,extensions_903:string,extensions_904:string,extensions_905:string,extensions_906:string,extensions_907:string,extensions_908:string,extensions_909:string,extensions_910:string,extensions_911:string,extensions_912:string,extensions_913:string,extensions_914:string,extensions_915:string,extensions_916:string,extensions_917:string,extensions_918:string,extensions_919:string,extensions_920:string,extensions_921:string,extensions_922:string,extensions_923:string,extensions_924:string,extensions_925:string,extensions_926:string,extensions_927:string,extensions_928:string,extensions_929:string,extensions_930:string,extensions_931:string,extensions_932:string,extensions_933:string,extensions_934:string,extensions_935:string,extensions_936:string,extensions_937:string,extensions_938:string,extensions_939:string,extensions_940:string,extensions_941:string,extensions_942:string,extensions_943:string,extensions_944:string,extensions_945:string,extensions_946:string,extensions_947:string,extensions_948:string,extensions_949:string,extensions_950:string,extensions_951:string,extensions_952:string,extensions_953:string,extensions_954:string,extensions_955:string,extensions_956:string,extensions_957:string,extensions_958:string,extensions_959:string,extensions_960:string,extensions_961:string,extensions_962:string,extensions_963:string,extensions_964:string,extensions_965:string,extensions_966:string,extensions_967:string,extensions_968:string,extensions_969:string,extensions_970:string,extensions_971:string,extensions_972:string,extensions_973:string,extensions_974:string,extensions_975:string,extensions_976:string,extensions_977:string,extensions_978:string,extensions_979:string,extensions_980:string,extensions_981:string,extensions_982:string,extensions_983:string,extensions_984:string,extensions_985:string,extensions_986:string,extensions_987:string,extensions_988:string,extensions_989:string,extensions_990:string,extensions_991:string,extensions_992:string,extensions_993:string,extensions_994:string,extensions_995:string,extensions_996:string,extensions_997:string,extensions_998:string,extensions_999:string,extensions_1000:string

#zookeeper
nexus.edt.zookeeper.connect.string=10.25.19.204:2181,10.25.19.205:2181,10.25.19.206:2181
nexus.edt.zookeeper.namespace=edt_event
nexus.edt.zookeeper.session.timeout.ms=60000
nexus.edt.zookeeper.max.close.wait.ms=15000
nexus.edt.zookeeper.base.sleep.time.ms=3000
nexus.edt.zookeeper.max.retries=10

nexus.edt.zookeeper.event.attribute.mapping.path=/event/attribute/mapping
nexus.edt.zookeeper.event.path=/event

# HBase
hbase.zookeeper.quorum=10.25.19.204:2181,10.25.19.205:2181,10.25.19.206:2181
#设置 HBase 客户端在遇到可重试错误时的重试次数
hbase.client.retries.number=3
#指定 HBase Master 的信息端口号。Flink 客户端通过这个端口与 HBase Master 进行通信,获取集群的元数据信息。
hbase.master.info.port=-1
hbase.zookeeper.property.clientPort=2181
#增加 RPC 超时时间可以避免因操作超时导致的写入失败。但需要注意,过长的超时时间可能会导致系统响应变慢。
hbase.rpc.timeout=300000
#用于设置 HBase 客户端操作的超时时间。如果操作在给定的时间内没有完成,客户端将抛出超时异常
hbase.client.operation.timeout=300000
#设置 HBase Scanner 的超时时间。Scanner 用于从 HBase 表中读取数据
hbase.client.scanner.timeout.period=300000
#增加处理客户端请求的线程数,可以提高并发处理能力
#hbase.regionserver.handler.count=5
#调整 RegionServer 的线程池大小,以匹配集群的负载和硬件资源
#hbase.regionserver.thread.pool.size=
#合理设置 MemStore 的大小,避免频繁的 Flush 操作。过大的 MemStore 可能会导致内存溢出,而过小则可能增加磁盘 I/O 负担
#hbase.regionserver.global.memstore.size=
hbase.root.dir=hdfs://nn1:8020/hbase
#用于设置写入缓冲区的数据大小,单位是字节。默认情况下,它的值是2MB 64*1024*1024=67108864
hbase.client.write.buffer=67108864

hbase.flush.size=1000
#单位ms
hbase.flush.interval.millis=5000


#任务并行数,和stream.parallelism的并行数量一起看
valid.kafka.sink.parallelism=1
invalid.kafka.sink.parallelism=1
events.dwd.sink.parallelism=1
events.enum.stream.parallelism=1
events.user.stream.parallelism=1
events.device.stream.parallelism=1
events.location.stream.parallelism=1
events.utm.stream.parallelism=1
events.page.stream.parallelism=1
events.metrics.stream.parallelism=1


#clickhouse
clickhouse.host=10.25.19.208:8123
clickhouse.database=default
clickhouse.username=default
clickhouse.password=123
clickhouse.stream.parallelism=1

#枚举表-hbase
hbase.family.name=cf
platform.table=platform
tenantId.table=tenant_id
projectId.table=project_id
appId.table=app_id
deviceModel.table=device_model
deviceBrand.table=device_brand
deviceType.table=device_type
eventName.table=event_name
eventType.table=event_type
sdkVersion.table=sdk_version
appVersion.table=app_version
browserVersion.table=browser_version
sendType.table=send_type
marketName.table=market_name
utmMatchingType.table=utm_matching_type
utmSource.table=utm_source
eventCode.table=event_code

eventsUser.table=events_user
eventsDevice.table=events_device
eventsLocation.table=events_location
eventsUtm.table=events_utm
eventsPage.table=events_page
eventsMetrics.table=events_metrics


2、edt-event-process-data hdfs类脚本

说明:

raw_events_loop_add_partition.sh 正确埋点数据ODS层分区目录创建

events_loop_add_partition.sh 正确ODS层埋点数据按小时加载

raw_events_loop_add_partition_error.sh 错误埋点数据ODS层分区目录创建

events_loop_add_partition_error.sh 错误ODS层埋点数据按小时加载

dwd_events_loop_add_partition.sh 正确的埋点数据DWD层分区目录

dwd_events_loop_add_partition_sql.sh 正确的埋点数据DWD层分区按小时加载

创建目录示例:

nohup bash /home/hadoop/chenglei_shell/dwd_events_loop_add_partition.sh >> /home/hadoop/chenglei_shell/dwd_events_loop_add_partition.log &

dwd_events_loop_add_partition_sql.sh 正确DWD层埋点数据按小时创建生成创建表SQL文件,然后去hive执行生成的文件,例如:

生成创建分区的SQL语句

nohup bash /home/hadoop/chenglei_shell/dwd_events_loop_add_partition_sql.sh >> /home/hadoop/chenglei_shell/dwd_events_loop_add_partition_sql.sql &

执行hive命令:

hive -f dwd_events_loop_add_partition_sql.sql

yr变量指当前年份

pth:hive表数据的hdfs存储地址

raw_events_loop_add_partition.sh

#!/bin/bash
yr=2024
for m in `seq -w 3 12`
do
for d in `seq -w 1 31`
do
for h in `seq -w 0 23`
do
pth="/raw/dc/events/dt=${yr}${m}${d}/hour=${h}"
echo $pth
hdfs dfs -mkdir -p "$pth"
done
done
done

events_loop_add_partition.sh

#!/bin/bash
yr=2024
for m in `seq -w 3 12`
do
for d in `seq -w 1 31`
do
for h in `seq -w 0 23`
do
pth="/raw/dc/events/dt=${yr}${m}${d}/hour=${h}"
#echo $pth
echo "alter table ods_dc.ods_events add partition(dt='${yr}${m}${d}',hour='${h}') location '$pth';"
done
done
done

raw_events_loop_add_partition_error.sh

#!/bin/bash
yr=2024
for m in `seq -w 3 12`
do
for d in `seq -w 1 31`
do
for h in `seq -w 0 23`
do
pth="/raw/dc/events/error/dt=${yr}${m}${d}/hour=${h}"
echo $pth
hdfs dfs -mkdir -p "$pth"
done
done
done

events_loop_add_partition_error.sh

#!/bin/bash
yr=2024
for m in `seq -w 3 12`
do
for d in `seq -w 1 31`
do
for h in `seq -w 0 23`
do
pth="/raw/dc/events/error/dt=${yr}${m}${d}/hour=${h}"
#echo $pth
echo "alter table ods_dc.ods_events_error add partition(dt='${yr}${m}${d}',hour='${h}') location '$pth';"
done
done
done

dwd_events_loop_add_partition.sh

#!/bin/bash
yr=2024
for m in `seq -w 3 12`
do
for d in `seq -w 1 31`
do
for h in `seq -w 0 23`
do
pth="/user/hive/warehouse/dwd_events/dt=${yr}${m}${d}/hour=${h}"
echo $pth
hdfs dfs -mkdir -p "$pth"
done
done
done

dwd_events_loop_add_partition_sql.sh

#!/bin/bash
yr=2024
for m in `seq -w 3 12`
do
for d in `seq -w 1 31`
do
for h in `seq -w 0 23`
do
pth="/user/hive/warehouse/dwd_events/dt=${yr}${m}${d}/hour=${h}"
#echo $pth
echo "alter table dwd_dc.dwd_events add partition(dt='${yr}${m}${d}',hour='${h}') location '$pth';"
done
done
done
3、edt-evemt-process-data clickhouse相关脚本

说明:

clickhouse任务的定时脚本.txt,放到crontab表达式中

dwd开头的shell脚本放到clickhouse任务表达式下配置的目录下

conf.sh是配置Clickhouse的账户脚本

conf.sh

#!/bin/bash

source /home/hadoop/.bash_profile
ck_login='clickhouse-client --user default --password 123'

clickhouse任务的定时脚本.txt

#每5分钟更新 流量概览表按天 dwd_event_attribute_info
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_event_attribute_info.sh >> /home/hadoop/shell_code/logs/dwd_event_attribute_info.log 2>&1
#每5分钟更新 流量概览表按天 dwd_flow_summary_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_flow_summary_bydate.sh >> /home/hadoop/shell_code/logs/dwd_flow_summary_bydate.log 2>&1
#每5分钟更新 流量概览表按小时 dwd_flow_summary_byhour
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_flow_summary_byhour.sh >> /home/hadoop/shell_code/logs/dwd_flow_summary_byhour.log 2>&1
#每5分钟更新 新老访客统计表 dwd_newolduser_summary_date
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_newolduser_summary_date.sh >> /home/hadoop/shell_code/logs/dwd_newolduser_summary_date.log 2>&1
#每5分钟更新 受访页面统计表 dwd_visituri_summary_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_visituri_summary_bydate.sh >> /home/hadoop/shell_code/logs/dwd_visituri_summary_bydate.log 2>&1
#每5分钟更新 来源网站统计表 dwd_source_site_summary_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_source_site_summary_bydate.sh >> /home/hadoop/shell_code/logs/dwd_source_site_summary_bydate.log 2>&1
#每5分钟更新 地域统计表 dwd_area_summary_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_area_summary_bydate.sh >> /home/hadoop/shell_code/logs/dwd_area_summary_bydate.log 2>&1
#每5分钟更新 设备统计表 dwd_device_summary_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_device_summary_bydate.sh >> /home/hadoop/shell_code/logs/dwd_device_summary_bydate.log 2>&1
#每5分钟更新 用户访问次数分布表 dwd_user_visit_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_user_visit_bydate.sh >> /home/hadoop/shell_code/logs/dwd_user_visit_bydate.log 2>&1
#每5分钟更新 用户访问页数分布表 dwd_user_visitpage_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_user_visitpage_bydate.sh >> /home/hadoop/shell_code/logs/dwd_user_visitpage_bydate.log 2>&1
#每5分钟更新 用户访问时长分布表 dwd_user_visittime_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_user_visittime_bydate.sh >> /home/hadoop/shell_code/logs/dwd_user_visittime_bydate.log 2>&1
#每5分钟更新 新老访客生命周期统计 dwd_visitor_life_bydate
*/5 * * * * /usr/bin/sh /home/hadoop/shell_code/dwd_visitor_life_bydate.sh >> /home/hadoop/shell_code/logs/dwd_visitor_life_bydate.log 2>&1

dwd_area_summary_bydate.sh

#!/bin/bash
# 地域统计表 dwd_area_summary_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_area_summary_bydate
select t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.country,
t1.province,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
multiIf(t5.is_first_time='true','是','否') as is_new_user,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
multiIf(country is null, '空',country = '', '空',country = 'N/A', '空',country) as country,
multiIf(province is null, '空',province = '', '空',province = 'N/A', '空',province) as province,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,country,province
) t1
left join (
select
dt,
tenant_id,
project_id,
app_id,
platform,
country,
province,
sum(is_new_visit) as visit_num
from (
select dt,tenant_id,project_id,app_id,platform,country,province,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,country,province,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(country is null, '空',country = '', '空',country = 'N/A', '空',country) as country,
multiIf(province is null, '空',province = '', '空',province = 'N/A', '空',province) as province,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform,country,province
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id
and t1.platform=t2.platform and t1.country=t2.country and t1.province=t2.province
left join (
select
a1.dt,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
a1.country,
a1.province,
sum(a1.visit_time) as visit_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
session_id,
multiIf(country is null, '空',country = '', '空',country = 'N/A', '空',country) as country,
multiIf(province is null, '空',province = '', '空',province = 'N/A', '空',province) as province,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,session_id,country,province
) a1 group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform,a1.country,a1.province
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id
and t1.platform=t3.platform and t1.country=t3.country and t1.province=t3.province
left join (
select dt,tenant_id,project_id,app_id,platform,country,province,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(country is null, '空',country = '', '空',country = 'N/A', '空',country) as country,
multiIf(province is null, '空',province = '', '空',province = 'N/A', '空',province) as province,
count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,country,province
) group by dt,tenant_id,project_id,app_id,platform,country,province
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
and t1.country=t4.country and t1.province=t4.province
left join (
select distinct dt,tenant_id,project_id,app_id,platform,
multiIf(country is null, '空',country = '', '空',country = 'N/A', '空',country) as country,
multiIf(province is null, '空',province = '', '空',province = 'N/A', '空',province) as province,
is_first_time from dwd_dc.dwd_ck_events where dt>='$dt' and distinct_id is not null
) t5 on t1.dt=t5.dt and t1.tenant_id=t5.tenant_id and t1.project_id=t5.project_id and t1.app_id=t5.app_id and t1.platform=t5.platform
and t1.country=t5.country and t1.province=t5.province;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_area_summary_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_device_summary_bydate.sh

#!/bin/bash
# 设备统计表 dwd_device_summary_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_device_summary_bydate
select t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.device_model,
t1.device_brand,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
multiIf(t5.is_first_time='true','是','否') as is_new_user,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
multiIf(device_model is null, '空',device_model = '', '空',device_model = 'N/A', '空',device_model) as device_model,
multiIf(device_brand is null, '空',device_brand = '', '空',device_brand = 'N/A', '空',device_brand) as device_brand,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,device_model,device_brand
) t1
left join (
select
dt,
tenant_id,
project_id,
app_id,
platform,
device_model,
device_brand,
sum(is_new_visit) as visit_num
from (
select dt,tenant_id,project_id,app_id,platform,device_model,device_brand,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,device_model,device_brand,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(device_model is null, '空',device_model = '', '空',device_model = 'N/A', '空',device_model) as device_model,
multiIf(device_brand is null, '空',device_brand = '', '空',device_brand = 'N/A', '空',device_brand) as device_brand,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform,device_model,device_brand
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id
and t1.platform=t2.platform and t1.device_model=t2.device_model and t1.device_brand=t2.device_brand
left join (
select
a1.dt,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
a1.device_model,
a1.device_brand,
sum(a1.visit_time) as visit_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
session_id,
multiIf(device_model is null, '空',device_model = '', '空',device_model = 'N/A', '空',device_model) as device_model,
multiIf(device_brand is null, '空',device_brand = '', '空',device_brand = 'N/A', '空',device_brand) as device_brand,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,session_id,device_model,device_brand
) a1 group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform,a1.device_model,a1.device_brand
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id
and t1.platform=t3.platform and t1.device_model=t3.device_model and t1.device_brand=t3.device_brand
left join (
select dt,tenant_id,project_id,app_id,platform,device_model,device_brand,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(device_model is null, '空',device_model = '', '空',device_model = 'N/A', '空',device_model) as device_model,
multiIf(device_brand is null, '空',device_brand = '', '空',device_brand = 'N/A', '空',device_brand) as device_brand,
count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,device_model,device_brand
) group by dt,tenant_id,project_id,app_id,platform,device_model,device_brand
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
and t1.device_model=t4.device_model and t1.device_brand=t4.device_brand
left join (
select distinct dt,tenant_id,project_id,app_id,platform,
multiIf(device_model is null, '空',device_model = '', '空',device_model = 'N/A', '空',device_model) as device_model,
multiIf(device_brand is null, '空',device_brand = '', '空',device_brand = 'N/A', '空',device_brand) as device_brand,
is_first_time from dwd_dc.dwd_ck_events where dt>='$dt' and distinct_id is not null
) t5 on t1.dt=t5.dt and t1.tenant_id=t5.tenant_id and t1.project_id=t5.project_id and t1.app_id=t5.app_id and t1.platform=t5.platform
and t1.device_model=t5.device_model and t1.device_brand=t5.device_brand;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_device_summary_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_event_attribute_info.sh

#!/bin/bash
# 事件属性信息 dwd_event_attribute_info
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_event_attribute_info
select 'platform' as option_name,platform as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by platform
union all
select 'app_package_id' as option_name,app_package_id as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by app_package_id
union all
select 'app_version' as option_name,app_version as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by app_version
union all
select 'market_name' as option_name,market_name as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by market_name
union all
select 'device_type' as option_name,device_type as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by device_type
union all
select 'device_brand' as option_name,device_brand as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by device_brand
union all
select 'device_model' as option_name,device_model as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by device_model
union all
select 'os' as option_name,os as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by option_value
union all
select 'carriers' as option_name,carriers as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by carriers
union all
select 'user_agent' as option_name,user_agent as option_value,toTimeZone(now(), 'Asia/Shanghai') as update_time from dwd_dc.dwd_ck_events where dt>='$dt' group by user_agent
;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_event_attribute_info FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_flow_summary_bydate.sh

#!/bin/bash
# 流量概览 dwd_flow_summary_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_flow_summary_bydate
select t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.is_new_user,
t1.is_user_login,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
multiIf(is_first_time='true','是','否') as is_new_user,
multiIf(user_id is not null,'是','否') as is_user_login,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,
multiIf(is_first_time='true','是','否'),
multiIf(user_id is not null,'是','否')
) t1
left join (
select
dt,
tenant_id,
project_id,
app_id,
platform,
sum(is_new_visit) as visit_num
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id and t1.platform=t2.platform
left join (
select
a1.dt,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
sum(a1.visit_time) as visit_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
session_id,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,session_id
) a1 group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id and t1.platform=t3.platform
left join (
select dt,tenant_id,project_id,app_id,platform,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,tenant_id,project_id,app_id,platform,count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt' group by dt,tenant_id,project_id,app_id,platform
) group by dt,tenant_id,project_id,app_id,platform
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_flow_summary_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_flow_summary_byhour.sh

#!/bin/bash
# 流量趋势表 dwd_flow_summary_byhour
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_flow_summary_byhour
select t1.dt,
t1.stat_hour,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.is_new_user,
t1.is_user_login,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
stat_hour,
tenant_id,
project_id,
app_id,
platform,
multiIf(is_first_time='true','是','否') as is_new_user,
multiIf(user_id is not null,'是','否') as is_user_login,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,stat_hour,tenant_id,project_id,app_id,platform,
multiIf(is_first_time='true','是','否'),
multiIf(user_id is not null,'是','否')
) t1
left join (
select
dt,
stat_hour,
tenant_id,
project_id,
app_id,
platform,
sum(is_new_visit) as visit_num
from (
select dt,stat_hour,tenant_id,project_id,app_id,platform,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,stat_hour,tenant_id,project_id,app_id,platform,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,stat_hour,tenant_id,project_id,app_id,platform,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,stat_hour,tenant_id,project_id,app_id,platform
) t2 on t1.dt=t2.dt and t1.stat_hour=t2.stat_hour and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id and t1.platform=t2.platform
left join (
select
a1.dt,
a1.stat_hour,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
sum(a1.visit_time) as visit_time
from (
select
dt,
stat_hour,
tenant_id,
project_id,
app_id,
platform,
session_id,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,stat_hour,tenant_id,project_id,app_id,platform,session_id
) a1 group by a1.dt,a1.stat_hour,a1.tenant_id,a1.project_id,a1.app_id,a1.platform
) t3 on t1.dt=t3.dt and t1.stat_hour=t3.stat_hour and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id and t1.platform=t3.platform
left join (
select dt,stat_hour,tenant_id,project_id,app_id,platform,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,stat_hour,tenant_id,project_id,app_id,platform,count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt' group by dt,stat_hour,tenant_id,project_id,app_id,platform
) group by dt,stat_hour,tenant_id,project_id,app_id,platform
) t4 on t1.dt=t4.dt and t1.stat_hour=t4.stat_hour and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_flow_summary_byhour FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_newolduser_summary_date.sh

#!/bin/bash
# 新老访客统计表 dwd_newolduser_summary_date
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_newolduser_summary_date
select t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
multiIf(t5.is_first_time='true','是','否') as is_new_user,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform
) t1
left join (
select
dt,
tenant_id,
project_id,
app_id,
platform,
sum(is_new_visit) as visit_num
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id
and t1.platform=t2.platform
left join (
select
a1.dt,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
sum(a1.visit_time) as visit_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
session_id,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,session_id
) a1 group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id
and t1.platform=t3.platform
left join (
select dt,tenant_id,project_id,app_id,platform,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,tenant_id,project_id,app_id,platform,
count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform
) group by dt,tenant_id,project_id,app_id,platform
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
left join (
select distinct dt,tenant_id,project_id,app_id,platform,
is_first_time from dwd_dc.dwd_ck_events where dt>='$dt' and distinct_id is not null
) t5 on t1.dt=t5.dt and t1.tenant_id=t5.tenant_id and t1.project_id=t5.project_id and t1.app_id=t5.app_id and t1.platform=t5.platform
;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_newolduser_summary_date FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_source_site_summary_bydate.sh

#!/bin/bash
# 来源网站统计表 dwd_source_site_summary_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_source_site_summary_bydate
select t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.utm_source as source_site,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
multiIf(t5.is_first_time='true','是','否') as is_new_user,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
multiIf(utm_source is null, '空',utm_source = '', '空',utm_source = 'N/A', '空',utm_source) as utm_source,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,utm_source
) t1
left join (
select
dt,
tenant_id,
project_id,
app_id,
platform,
utm_source,
sum(is_new_visit) as visit_num
from (
select dt,tenant_id,project_id,app_id,platform,utm_source,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,utm_source,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(utm_source is null, '空',utm_source = '', '空',utm_source = 'N/A', '空',utm_source) as utm_source,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform,utm_source
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id
and t1.platform=t2.platform and t1.utm_source=t2.utm_source
left join (
select
a1.dt,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
a1.utm_source,
sum(a1.visit_time) as visit_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
session_id,
multiIf(utm_source is null, '空',utm_source = '', '空',utm_source = 'N/A', '空',utm_source) as utm_source,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,session_id,utm_source
) a1 group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform,a1.utm_source
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id
and t1.platform=t3.platform and t1.utm_source=t3.utm_source
left join (
select dt,tenant_id,project_id,app_id,platform,utm_source,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(utm_source is null, '空',utm_source = '', '空',utm_source = 'N/A', '空',utm_source) as utm_source,
count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,utm_source
) group by dt,tenant_id,project_id,app_id,platform,utm_source
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
and t1.utm_source=t4.utm_source
left join (
select distinct dt,tenant_id,project_id,app_id,platform,
multiIf(utm_source is null, '空',utm_source = '', '空',utm_source = 'N/A', '空',utm_source) as utm_source,
is_first_time from dwd_dc.dwd_ck_events where dt>='$dt' and distinct_id is not null
) t5 on t1.dt=t5.dt and t1.tenant_id=t5.tenant_id and t1.project_id=t5.project_id and t1.app_id=t5.app_id and t1.platform=t5.platform
and t1.utm_source=t5.utm_source;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_source_site_summary_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_user_visit_bydate.sh

#!/bin/bash
# 用户访问次数分布表 dwd_user_visit_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_user_visit_bydate
select
dt,
tenant_id,
project_id,
app_id,
platform,
is_new_user,
countDistinct(if(visit = 1, distinct_id, null)) as v1_uv,
countDistinct(if(visit = 2, distinct_id, null)) as v2_uv,
countDistinct(if(visit = 3, distinct_id, null)) as v3_uv,
countDistinct(if(visit = 4, distinct_id, null)) as v4_uv,
countDistinct(if(visit = 5, distinct_id, null)) as v5_uv,
countDistinct(if(visit = 6, distinct_id, null)) as v6_uv,
countDistinct(if(visit = 7, distinct_id, null)) as v7_uv,
countDistinct(if(visit = 8, distinct_id, null)) as v8_uv,
countDistinct(if(visit = 9, distinct_id, null)) as v9_uv,
countDistinct(if(visit = 10, distinct_id, null)) as v10_uv,
countDistinct(if(visit >= 11
AND visit <= 15, distinct_id, null)) as v11_15_uv,
countDistinct(if(visit >= 16
AND visit <= 50, distinct_id, null)) as v16_50_uv,
countDistinct(if(visit >= 51
AND visit <= 100, distinct_id, null)) as v51_100_uv,
countDistinct(if(visit >= 101
AND visit <= 200, distinct_id, null)) as v101_200_uv,
countDistinct(if(visit >= 201
AND visit <= 300, distinct_id, null)) as v201_300_uv,
countDistinct(if(visit >= 301, distinct_id, null)) as v300_uv,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
distinct_id,
is_new_user,
sum(is_new_visit) as visit
from (
select dt,tenant_id,project_id,app_id,platform,is_new_user,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,is_new_user,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
distinct_id,multiIf(is_first_time='true','是','否') as is_new_user,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform,distinct_id,is_new_user
) group by dt,tenant_id,project_id,app_id,platform,is_new_user;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_user_visit_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_user_visitpage_bydate.sh

#!/bin/bash
# 用户访问页数分布表 dwd_user_visitpage_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_user_visitpage_bydate
select
dt,
tenant_id,
project_id,
app_id,
platform,
is_new_user,
countDistinct(if(pv = 1, distinct_id, null)) as pv1_uv,
countDistinct(if(pv >= 2 and pv <= 5, distinct_id, null)) as pv2_5_uv,
countDistinct(if(pv >= 6 and pv <= 10, distinct_id, null)) as pv6_10_uv,
countDistinct(if(pv >= 11 and pv <= 20, distinct_id, null)) as pv11_20_uv,
countDistinct(if(pv >= 21 and pv <= 30, distinct_id, null)) as pv21_30_uv,
countDistinct(if(pv >= 31 and pv <= 40, distinct_id, null)) as pv31_40_uv,
countDistinct(if(pv >= 41 and pv <= 50, distinct_id, null)) as pv41_50_uv,
countDistinct(if(pv >= 51 and pv <= 100, distinct_id, null)) as pv51_100_uv,
countDistinct(if(pv >= 101, distinct_id, null)) as pv100_uv,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
distinct_id,
multiIf(is_first_time='true','是','否') as is_new_user,
count(distinct_id) as pv
from dwd_dc.dwd_ck_events where dt>='$dt' and event_type in ('view_page','click','custom','business_event','wx_event')
group by dt,tenant_id,project_id,app_id,platform,distinct_id,multiIf(is_first_time='true','是','否')
) group by dt,tenant_id,project_id,app_id,platform,is_new_user;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_user_visitpage_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_user_visittime_bydate.sh

#!/bin/bash
# 用户访问时长分布表 dwd_user_visittime_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_user_visittime_bydate
select
dt,
tenant_id,
project_id,
app_id,
platform,
is_new_user,
countDistinct(if(visit_time < 10, distinct_id, NULL)) as vt0_10_uv,
countDistinct(if(visit_time >= 10 AND visit_time < 30, distinct_id, NULL)) as vt10_30_uv,
countDistinct(if(visit_time >= 30 AND visit_time < 60, distinct_id, NULL)) as vt30_60_uv,
countDistinct(if(visit_time >= 60 AND visit_time < 120, distinct_id, NULL)) as vt60_120_uv,
countDistinct(if(visit_time >= 120 AND visit_time < 180, distinct_id, NULL)) as vt120_180_uv,
countDistinct(if(visit_time >= 180 AND visit_time < 240, distinct_id, NULL)) as vt180_240_uv,
countDistinct(if(visit_time >= 240 AND visit_time < 300, distinct_id, NULL)) as vt240_300_uv,
countDistinct(if(visit_time >= 300 AND visit_time < 600, distinct_id, NULL)) as vt300_600_uv,
countDistinct(if(visit_time >= 600 AND visit_time < 1800, distinct_id, NULL)) as vt600_1800_uv,
countDistinct(if(visit_time >= 1800 AND visit_time < 3600, distinct_id, NULL)) as vt1800_3600_uv,
countDistinct(if(visit_time >= 3600, distinct_id, NULL)) as vt3600_uv,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
distinct_id,
multiIf(is_first_time='true','是','否') as is_new_user,
(max(toInt64(upload_time))-min(toInt64(upload_time)))/1000 as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,distinct_id,multiIf(is_first_time='true','是','否')
) group by dt,tenant_id,project_id,app_id,platform,is_new_user
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_user_visittime_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_visitor_life_bydate.sh

#!/bin/bash
# 新老访客生命周期统计 dwd_visitor_life_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_visitor_life_bydate
select
t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.is_new_user,
t1.uv,
t2.uv as reflux_uv, --回流用户
t3.uv as silent_uv, --沉默用户
t4.uv as lost_uv, --流失用户
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
multiIf(is_first_time='true','是','否') as is_new_user,
countdistinct(distinct_id) as uv
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,multiIf(is_first_time='true','是','否')
) t1
left join (
--回流用户,老访客中,当天访问但前一天未访问的独立访客数。
select a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform,countdistinct(a1.distinct_id) as uv
from (select distinct dt,tenant_id,project_id,app_id,platform,distinct_id from dwd_dc.dwd_ck_events where dt>='$dt' and is_first_time<>'true') a1
left join (
select distinct dt,tenant_id,project_id,app_id,platform,distinct_id from dwd_dc.dwd_ck_events where dt>='$dt'
) a2 on toDate(a1.dt)-1=toDate(a2.dt) and a1.tenant_id=a2.tenant_id and a1.project_id=a2.project_id and a1.app_id=a2.app_id
and a1.platform=a2.platform and a1.distinct_id=a2.distinct_id
where ifnull(a2.distinct_id,'')=''
group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id
and t1.platform=t2.platform and t1.is_new_user='否'
left join (
--沉默用户 老访客中,当天未访问但前一天有访问的独立访客数。
select a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform,countdistinct(a1.distinct_id) as uv
from (select distinct dt,tenant_id,project_id,app_id,platform,distinct_id from dwd_dc.dwd_ck_events where dt>='$dt' and is_first_time<>'true') a1
left join (
select distinct dt,tenant_id,project_id,app_id,platform,distinct_id from dwd_dc.dwd_ck_events where dt>='$dt' and is_first_time<>'true'
) a2 on toDate(a1.dt)+1=toDate(a2.dt) and a1.tenant_id=a2.tenant_id and a1.project_id=a2.project_id and a1.app_id=a2.app_id
and a1.platform=a2.platform and a1.distinct_id=a2.distinct_id
where ifnull(a2.distinct_id,'')=''
group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id
and t1.platform=t3.platform and t1.is_new_user='否'
left join (
--流失用户 访客中距离上次访问超过一天的。
select dt,tenant_id,project_id,app_id,platform,is_new_user,countdistinct(distinct_id) as uv from (
select dt,tenant_id,project_id,app_id,platform,distinct_id,multiIf(is_first_time='true','是','否') as is_new_user,
any(dt) OVER (PARTITION BY distinct_id ORDER BY dt Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_dt
from dwd_dc.dwd_ck_events where dt>='$dt'
) where toDate(dt)-toDate(prev_real_dt)>1 group by dt,tenant_id,project_id,app_id,platform,is_new_user
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id
and t1.platform=t4.platform and t1.is_new_user=t4.is_new_user
;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_visitor_life_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

dwd_visituri_summary_bydate.sh

#!/bin/bash
# 受访页面统计表 dwd_visituri_summary_bydate
source /home/hadoop/shell_code/conf.sh
curdir=$(cd $(dirname $0);pwd)
cf=$curdir/$0

dt=`date -d "-1 days" +%Y-%m-%d `
[ $# -eq 1 ] && dt=$1

echo $ck_login
echo $curdir $cf $dt

sql="
insert into dwd_dc.dwd_visituri_summary_bydate
select t1.dt,
t1.tenant_id,
t1.project_id,
t1.app_id,
t1.platform,
t1.visit_title,
t1.visit_url,
t1.pv,
t2.visit_num,
t1.uv,
t1.ip_num,
t3.visit_time,
t4.bounce_num,
t6.c_d_pv,
multiIf(t5.is_first_time='true','是','否') as is_new_user,
t1.users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
multiIf(current_page_name is null, '空',current_page_name = '', '空',current_page_name = 'N/A', '空',current_page_name) as visit_title,
multiIf(current_page_url is null, '空',current_page_url = '', '空',current_page_url = 'N/A', '空',current_page_url) as visit_url,
count(distinct_id) as pv,
COUNTDistinct(distinct_id) as uv,
COUNTDistinct(ip) as ip_num,
COUNTDistinct(user_id) as users,
toTimeZone(now(), 'Asia/Shanghai') as update_time
from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,visit_title,visit_url
) t1
left join (
select
dt,
tenant_id,
project_id,
app_id,
platform,
visit_title,
visit_url,
sum(is_new_visit) as visit_num
from (
select dt,tenant_id,project_id,app_id,platform,visit_title,visit_url,
distinct_id,
real_time,
if(
prev_real_time IS NULL OR
toUInt64(real_time) - toUInt64(prev_real_time) > 30 * 60,
1,
0
) as is_new_visit
from (
select dt,tenant_id,project_id,app_id,platform,visit_title,visit_url,
distinct_id,
real_time,
any(real_time) OVER (PARTITION BY dt,distinct_id ORDER BY real_time Rows BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING) AS prev_real_time
from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(current_page_name is null, '空',current_page_name = '', '空',current_page_name = 'N/A', '空',current_page_name) as visit_title,
multiIf(current_page_url is null, '空',current_page_url = '', '空',current_page_url = 'N/A', '空',current_page_url) as visit_url,
distinct_id,
toDateTime(toInt64(upload_time) / 1000) AS real_time
from dwd_dc.dwd_ck_events where dt>='$dt'
)
)
where is_new_visit = 1
)
group by dt,tenant_id,project_id,app_id,platform,visit_title,visit_url
) t2 on t1.dt=t2.dt and t1.tenant_id=t2.tenant_id and t1.project_id=t2.project_id and t1.app_id=t2.app_id
and t1.platform=t2.platform and t1.visit_title=t2.visit_title and t1.visit_url=t2.visit_url
left join (
select
a1.dt,
a1.tenant_id,
a1.project_id,
a1.app_id,
a1.platform,
a1.visit_title,
a1.visit_url,
sum(a1.visit_time) as visit_time
from (
select
dt,
tenant_id,
project_id,
app_id,
platform,
session_id,
multiIf(current_page_name is null, '空',current_page_name = '', '空',current_page_name = 'N/A', '空',current_page_name) as visit_title,
multiIf(current_page_url is null, '空',current_page_url = '', '空',current_page_url = 'N/A', '空',current_page_url) as visit_url,
max(toInt64(upload_time))-min(toInt64(upload_time)) as visit_time
from dwd_dc.dwd_ck_events where dt>='$dt' and session_id<>''
group by dt,tenant_id,project_id,app_id,platform,session_id,visit_title,visit_url
) a1 group by a1.dt,a1.tenant_id,a1.project_id,a1.app_id,a1.platform,a1.visit_title,a1.visit_url
) t3 on t1.dt=t3.dt and t1.tenant_id=t3.tenant_id and t1.project_id=t3.project_id and t1.app_id=t3.app_id
and t1.platform=t3.platform and t1.visit_title=t3.visit_title and t1.visit_url=t3.visit_url
left join (
select dt,tenant_id,project_id,app_id,platform,visit_title,visit_url,sum(multiIf(pv=1 ,1,0)) as bounce_num from (
select dt,tenant_id,project_id,app_id,platform,
multiIf(current_page_name is null, '空',current_page_name = '', '空',current_page_name = 'N/A', '空',current_page_name) as visit_title,
multiIf(current_page_url is null, '空',current_page_url = '', '空',current_page_url = 'N/A', '空',current_page_url) as visit_url,
count(distinct_id) pv from dwd_dc.dwd_ck_events where dt>='$dt'
group by dt,tenant_id,project_id,app_id,platform,visit_title,visit_url
) group by dt,tenant_id,project_id,app_id,platform,visit_title,visit_url
) t4 on t1.dt=t4.dt and t1.tenant_id=t4.tenant_id and t1.project_id=t4.project_id and t1.app_id=t4.app_id and t1.platform=t4.platform
and t1.visit_title=t4.visit_title and t1.visit_url=t4.visit_url
left join (
select distinct dt,tenant_id,project_id,app_id,platform,
multiIf(current_page_name is null, '空',current_page_name = '', '空',current_page_name = 'N/A', '空',current_page_name) as visit_title,
multiIf(current_page_url is null, '空',current_page_url = '', '空',current_page_url = 'N/A', '空',current_page_url) as visit_url,
is_first_time from dwd_dc.dwd_ck_events where dt>='$dt' and distinct_id is not null
) t5 on t1.dt=t5.dt and t1.tenant_id=t5.tenant_id and t1.project_id=t5.project_id and t1.app_id=t5.app_id and t1.platform=t5.platform
and t1.visit_title=t5.visit_title and t1.visit_url=t5.visit_url
left join (
select dt,tenant_id,project_id,app_id,platform,
multiIf(referrer_url is null, '空',referrer_url = '', '空',referrer_url = 'N/A', '空',referrer_url) as referrer_url,
count(distinct_id) as c_d_pv from dwd_dc.dwd_ck_events where dt>='$dt' group by dt,tenant_id,project_id,app_id,platform,referrer_url
) t6 on t1.dt=t6.dt and t1.tenant_id=t6.tenant_id and t1.project_id=t6.project_id and t1.app_id=t6.app_id and t1.platform=t6.platform
and t1.visit_url=t6.referrer_url;
"
echo "${sql}"
$ck_login --query="${sql}"

sql1="OPTIMIZE TABLE dwd_dc.dwd_visituri_summary_bydate FINAL SETTINGS optimize_skip_merged_partitions=1;"
echo "${sql1}"
$ck_login --query="${sql1}"

4、edt-evemt-process-data SQL相关脚本

说明:

创建clickhouse表脚本

创建hive表脚本

sql脚本_clickhouse.sql

CREATE DATABASE IF NOT EXISTS ods_dc;
CREATE DATABASE IF NOT EXISTS dwd_dc;


CREATE TABLE ods_dc.ods_event_pipeline_realtime
(

`apexId` Nullable(String),

`appId` Nullable(String),

`appVersion` Nullable(String),

`content` Nullable(String),

`createTime` DateTime,

`ts` DateTime,

`error` Nullable(String),

`eventCode` Nullable(String),

`eventType` Nullable(String),

`projectId` Nullable(String),

`sendType` Nullable(String),

`wechatOpenId` Nullable(String),

`wechatUnionId` Nullable(String),

`eventName` Nullable(String)
) ENGINE = MergeTree
PARTITION BY ts
ORDER BY (ts,createTime)
COMMENT '事件中心实时查询表';


drop table IF EXISTS dwd_dc.dwd_ck_events;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_ck_events(
dt String,
stat_hour String,
distinct_id String,
ts Nullable(String),
apex_id Nullable(String),
event_code Nullable(String),
tenant_id Nullable(String),
project_id Nullable(String),
app_id Nullable(String),
platform Nullable(String),
message_id Nullable(String),
user_id Nullable(String),
event_name Nullable(String),
event_type Nullable(String),
send_type Nullable(String),
event_code_md5 Nullable(String),
event_duration Nullable(String),
browse_time Nullable(String),
device_id Nullable(String),
device_model Nullable(String),
device_brand Nullable(String),
device_type Nullable(String),
device_uuid Nullable(String),
carriers Nullable(String),
network_type Nullable(String),
android_id Nullable(String),
imei Nullable(String),
mac Nullable(String),
user_agent Nullable(String),
os Nullable(String),
idfa Nullable(String),
idfv Nullable(String),
oaid Nullable(String),
latitude Nullable(String),
longitude Nullable(String),
wechat_open_id Nullable(String),
wechat_union_id Nullable(String),
screen_width Nullable(String),
screen_height Nullable(String),
page_height Nullable(String),
page_width Nullable(String),
browser_version Nullable(String),
session_id Nullable(String),
sdk_version Nullable(String),
sdk_type Nullable(String),
app_version Nullable(String),
app_package_id Nullable(String),
mini_program_scene Nullable(String),
market_name Nullable(String),
referrer_url Nullable(String),
referrer_host Nullable(String),
utm_matching_type Nullable(String),
utm_source Nullable(String),
utm_medium Nullable(String),
utm_term Nullable(String),
utm_content Nullable(String),
utm_campaign Nullable(String),
ip Nullable(String),
province Nullable(String),
city Nullable(String),
county Nullable(String),
country Nullable(String),
page_type Nullable(String),
current_page_id Nullable(String),
current_page_name Nullable(String),
current_page_url Nullable(String),
time_since_last_operation Nullable(String),
current_page_host Nullable(String),
current_page_query Nullable(String),
current_page_path Nullable(String),
source_page_id Nullable(String),
source_page_name Nullable(String),
source_page_url Nullable(String),
source_page_host Nullable(String),
source_page_query Nullable(String),
source_page_path Nullable(String),
page_X Nullable(String),
page_Y Nullable(String),
client_X Nullable(String),
client_Y Nullable(String),
element_id Nullable(String),
element_name Nullable(String),
element_target_url Nullable(String),
element_type Nullable(String),
element_content Nullable(String),
element_selector Nullable(String),
element_position Nullable(String),
element_index Nullable(String),
element_tag_name Nullable(String),
element_class Nullable(String),
element_path Nullable(String),
upload_time Nullable(String),
write_log_time Nullable(String),
insert_db_time Nullable(String),
track_signup_original_id Nullable(String),
last_visit_time Nullable(String),
is_first_time Nullable(String),
forward_user_id Nullable(String),
common Nullable(String),
extensions Nullable(String)
) ENGINE = MergeTree
PARTITION BY dt
ORDER BY distinct_id
COMMENT '事件数据全表';

--事件属性信息
drop table IF EXISTS dwd_dc.dwd_event_attribute_info;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_event_attribute_info (
option_name String COMMENT '属性key',
option_value String COMMENT '属性value',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
order by (option_name,option_value);


-- 流量概览表按天
drop table IF EXISTS dwd_dc.dwd_flow_summary_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_flow_summary_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
is_new_user String COMMENT '是否新客',
is_user_login String COMMENT '会员是否登录',
pv Int32 DEFAULT 0 COMMENT '浏览量 PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,is_new_user,is_user_login);

-- 流量概览表按小时
drop table IF EXISTS dwd_dc.dwd_flow_summary_byhour;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_flow_summary_byhour (
dt String COMMENT '日期',
stat_hour String COMMENT '小时',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
is_new_user String COMMENT '是否新客',
is_user_login String COMMENT '会员是否登录',
pv Int32 DEFAULT 0 COMMENT '浏览量 PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,stat_hour,tenant_id,project_id,app_id,platform,is_new_user,is_user_login);

--新老访客统计表
drop table IF EXISTS dwd_dc.dwd_newolduser_summary_date;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_newolduser_summary_date (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
pv Int32 DEFAULT 0 COMMENT '浏览量 PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
is_new_user String COMMENT '是否新客',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,is_new_user);

-- 受访页面统计表
drop table IF EXISTS dwd_dc.dwd_visituri_summary_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_visituri_summary_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
visit_title String COMMENT '受访页面标题',
visit_url String COMMENT '受访页面url',
pv Int32 DEFAULT 0 COMMENT 'PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
c_d_pv Int32 DEFAULT 0 COMMENT '贡献下游浏览量',
is_new_user String COMMENT '是否新客',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,visit_title,visit_url,is_new_user);


-- 来源网站统计表
drop table IF EXISTS dwd_dc.dwd_source_site_summary_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_source_site_summary_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
source_site String COMMENT '来源网站',
pv Int32 DEFAULT 0 COMMENT 'PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
is_new_user String COMMENT '是否新客',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,source_site,is_new_user);



-- 地域统计表
drop table IF EXISTS dwd_dc.dwd_area_summary_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_area_summary_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
country String COMMENT '国家',
province String COMMENT '省份',
pv Int32 DEFAULT 0 COMMENT 'PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
is_new_user String COMMENT '是否新客',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,country,province,is_new_user);


-- 设备统计表
drop table IF EXISTS dwd_dc.dwd_device_summary_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_device_summary_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
device_model String COMMENT '设备机型',
device_brand String COMMENT '设备品牌',
pv Int32 DEFAULT 0 COMMENT 'PV',
visit_num Int32 DEFAULT 0 COMMENT '访问次数',
uv Int32 DEFAULT 0 COMMENT '访客数 UV',
ip_num Int32 DEFAULT 0 COMMENT 'IP数',
visit_time Int64 DEFAULT 0 COMMENT '访问时长 ms',
bounce_num Int32 DEFAULT 0 COMMENT '跳出数',
is_new_user String COMMENT '是否新客',
users Int32 DEFAULT 0 COMMENT '会员数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,device_model,device_brand,is_new_user);


-- 用户访问次数分布表
drop table IF EXISTS dwd_dc.dwd_user_visit_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_user_visit_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
is_new_user String COMMENT '是否新客',
v1_uv Int32 DEFAULT 0 COMMENT '访问次数为1的uv',
v2_uv Int32 DEFAULT 0 COMMENT '访问次数为2的uv',
v3_uv Int32 DEFAULT 0 COMMENT '访问次数为3的uv',
v4_uv Int32 DEFAULT 0 COMMENT '访问次数为4的uv',
v5_uv Int32 DEFAULT 0 COMMENT '访问次数为5的uv',
v6_uv Int32 DEFAULT 0 COMMENT '访问次数为6的uv',
v7_uv Int32 DEFAULT 0 COMMENT '访问次数为7的uv',
v8_uv Int32 DEFAULT 0 COMMENT '访问次数为8的uv',
v9_uv Int32 DEFAULT 0 COMMENT '访问次数为9的uv',
v10_uv Int32 DEFAULT 0 COMMENT '访问次数为10的uv',
v11_15_uv Int32 DEFAULT 0 COMMENT '访问次数为11到15的uv',
v16_50_uv Int32 DEFAULT 0 COMMENT '访问次数为16到50的uv',
v51_100_uv Int32 DEFAULT 0 COMMENT '访问次数为51搭配100的uv',
v101_200_uv Int32 DEFAULT 0 COMMENT '访问次数为101到200的uv',
v201_300_uv Int32 DEFAULT 0 COMMENT '访问次数为201到300的uv',
v300_uv Int32 DEFAULT 0 COMMENT '访问次数为300以上的uv',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,is_new_user);


-- 用户访问页数分布表
drop table IF EXISTS dwd_dc.dwd_user_visitpage_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_user_visitpage_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
is_new_user String COMMENT '是否新客',
pv1_uv Int32 DEFAULT 0 COMMENT '访问页数为1到1',
pv2_5_uv Int32 DEFAULT 0 COMMENT '访问页数为2到5',
pv6_10_uv Int32 DEFAULT 0 COMMENT '访问页数为6到10',
pv11_20_uv Int32 DEFAULT 0 COMMENT '访问页数为11到20',
pv21_30_uv Int32 DEFAULT 0 COMMENT '访问页数为21到30',
pv31_40_uv Int32 DEFAULT 0 COMMENT '访问页数为31到40',
pv41_50_uv Int32 DEFAULT 0 COMMENT '访问页数为41到50',
pv51_100_uv Int32 DEFAULT 0 COMMENT '访问页数为51到100',
pv100_uv Int32 DEFAULT 0 COMMENT '访问页数为100以上',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,is_new_user);


-- 用户访问时长分布表
drop table IF EXISTS dwd_dc.dwd_user_visittime_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_user_visittime_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
is_new_user String COMMENT '是否新客',
vt0_10_uv Int32 DEFAULT 0 COMMENT '访问时长0到10秒',
vt10_30_uv Int32 DEFAULT 0 COMMENT '访问时长10到30秒',
vt30_60_uv Int32 DEFAULT 0 COMMENT '访问时长30到60秒',
vt60_120_uv Int32 DEFAULT 0 COMMENT '访问时长60到120秒',
vt120_180_uv Int32 DEFAULT 0 COMMENT '访问时长120到180秒',
vt180_240_uv Int32 DEFAULT 0 COMMENT '访问时长180到240秒',
vt240_300_uv Int32 DEFAULT 0 COMMENT '访问时长240到300秒',
vt300_600_uv Int32 DEFAULT 0 COMMENT '访问时长300到600秒',
vt600_1800_uv Int32 DEFAULT 0 COMMENT '访问时长6000到1800秒',
vt1800_3600_uv Int32 DEFAULT 0 COMMENT '访问时长1800到3600秒',
vt3600_uv Int32 DEFAULT 0 COMMENT '访问时长3600秒以上',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,is_new_user);

-- 新老访客生命周期统计
drop table IF EXISTS dwd_dc.dwd_visitor_life_bydate;
CREATE TABLE IF NOT EXISTS dwd_dc.dwd_visitor_life_bydate (
dt String COMMENT '日期',
tenant_id String COMMENT '租户id',
project_id String COMMENT '项目id',
app_id String COMMENT '产品id',
platform String COMMENT '上报平台',
is_new_user String COMMENT '是否新客',
uv Int32 DEFAULT 0 COMMENT '访客数',
reflux_uv Int32 DEFAULT 0 COMMENT '回流用户数',
silent_uv Int32 DEFAULT 0 COMMENT '沉默用户数',
lost_uv Int32 DEFAULT 0 COMMENT '流失用户数',
update_time DateTime COMMENT '更新时间'
) engine = ReplacingMergeTree()
PARTITION BY dt
order by (dt,tenant_id,project_id,app_id,platform,is_new_user);



sql脚本_hive.sql

-- hdfs文件数据库
-- 1、准备好hdfs环境
-- 2、通过hive命令创建数据库,CREATE DATABASE IF NOT EXISTS ods_dc;
-- 3、查看刚刚创建的数据库是否存在,SHOW DATABASES LIKE 'ods_dc';
-- CREATE DATABASE IF NOT EXISTS dwd_dc;
-- SHOW DATABASES LIKE 'dwd_dc';

hdfs dfs -mkdir -p /raw/dc/events
hdfs dfs -mkdir -p /raw/dc/events/error
hdfs dfs -mkdir -p /user/hive/warehouse/dwd_events

ALTER TABLE ods_dc.ods_events SET LOCATION '/raw/dc/events';
ALTER TABLE ods_dc.ods_events_error SET LOCATION '/raw/dc/events/error';
ALTER TABLE dwd_dc.dwd_events SET LOCATION '/user/hive/warehouse/dwd_events';


CREATE EXTERNAL TABLE IF NOT EXISTS ods_dc.ods_events (
distinct_id string comment '通过sdk 生成distinctid,作为不用户登录或者未登录时,均上报时候必传字段,在用户登录后,需要传递userid,作为关联业务的字段。',
ts string comment '事件触发时间',
apex_id string comment '创略唯一ID',
event_code string comment '事件唯一代码',
tenant_id string comment '租户id',
project_id string comment '项目id',
app_id string comment '产品id',
platform string comment '上报平台',
common string comment '上报的公共属性,json对象字符串',
extensions string comment '上报的扩展属性,json对象字符串'
)
PARTITIONED BY (dt string, hour string)
STORED AS ORC
LOCATION '/raw/dc/events';
--TBLPROPERTIES ("orc.compress"="SNAPPY","orc.compress.size"="209715200","orc.stripe.size"="209715200","orc.block.size"="209715200");


CREATE EXTERNAL TABLE IF NOT EXISTS ods_dc.ods_events_error (
distinct_id string comment '通过sdk 生成distinctid,作为不用户登录或者未登录时,均上报时候必传字段,在用户登录后,需要传递userid,作为关联业务的字段。',
ts string comment '事件触发时间',
apex_id string comment '创略唯一ID',
event_code string comment '事件唯一代码',
tenant_id string comment '租户id',
project_id string comment '项目id',
app_id string comment '产品id',
platform string comment '上报平台',
common string comment '上报的公共属性,json对象字符串',
extensions string comment '上报的扩展属性,json对象字符串'
)
PARTITIONED BY (dt string, hour string)
STORED AS ORC
LOCATION '/raw/dc/events/error';
--TBLPROPERTIES ("orc.compress"="SNAPPY","orc.compress.size"="209715200","orc.stripe.size"="209715200","orc.block.size"="209715200");


CREATE TABLE IF NOT EXISTS dwd_dc.dwd_events (
distinct_id string comment '通过sdk 生成distinctid,作为不用户登录或者未登录时,均上报时候必传字段,在用户登录后,需要传递userid,作为关联业务的字段。'
,ts string comment '事件触发时间'
,apex_id string comment '创略唯一ID'
,event_code string comment '事件唯一代码'
,tenant_id string comment '租户id'
,project_id string comment '项目id'
,app_id string comment '产品id'
,platform string comment '上报平台'
,message_id string
,user_id string
,event_name string
,event_type string
,send_type string
,event_code_md5 string
,event_duration string
,browse_time string
,device_id string
,device_model string
,device_brand string
,device_type string
,device_uuid string
,carriers string
,network_type string
,android_id string
,imei string
,mac string
,user_agent string
,os string
,idfa string
,idfv string
,oaid string
,latitude string
,longitude string
,wechat_open_id string
,wechat_union_id string
,screen_width string
,screen_height string
,page_height string
,page_width string
,browser_version string
,session_id string
,sdk_version string
,sdk_type string
,app_version string
,app_package_id string
,mini_program_scene string
,market_name string
,referrer_url string
,referrer_host string
,utm_matching_type string
,utm_source string
,utm_medium string
,utm_term string
,utm_content string
,utm_campaign string
,ip string
,province string
,city string
,county string
,country string
,page_type string
,current_page_id string
,current_page_name string
,current_page_url string
,time_since_last_operation string
,current_page_host string
,current_page_query string
,current_page_path string
,source_page_id string
,source_page_name string
,source_page_url string
,source_page_host string
,source_page_query string
,source_page_path string
,page_X string
,page_Y string
,client_X string
,client_Y string
,element_id string
,element_name string
,element_target_url string
,element_type string
,element_content string
,element_selector string
,element_position string
,element_index string
,element_tag_name string
,element_class string
,element_path string
,upload_time string
,write_log_time string
,insert_db_time string
,track_signup_original_id string
,last_visit_time string
,is_first_time string
,forward_user_id string
,extensions_1 string
,extensions_2 string
,extensions_3 string
,extensions_4 string
,extensions_5 string
,extensions_6 string
,extensions_7 string
,extensions_8 string
,extensions_9 string
,extensions_10 string
,extensions_11 string
,extensions_12 string
,extensions_13 string
,extensions_14 string
,extensions_15 string
,extensions_16 string
,extensions_17 string
,extensions_18 string
,extensions_19 string
,extensions_20 string
,extensions_21 string
,extensions_22 string
,extensions_23 string
,extensions_24 string
,extensions_25 string
,extensions_26 string
,extensions_27 string
,extensions_28 string
,extensions_29 string
,extensions_30 string
,extensions_31 string
,extensions_32 string
,extensions_33 string
,extensions_34 string
,extensions_35 string
,extensions_36 string
,extensions_37 string
,extensions_38 string
,extensions_39 string
,extensions_40 string
,extensions_41 string
,extensions_42 string
,extensions_43 string
,extensions_44 string
,extensions_45 string
,extensions_46 string
,extensions_47 string
,extensions_48 string
,extensions_49 string
,extensions_50 string
,extensions_51 string
,extensions_52 string
,extensions_53 string
,extensions_54 string
,extensions_55 string
,extensions_56 string
,extensions_57 string
,extensions_58 string
,extensions_59 string
,extensions_60 string
,extensions_61 string
,extensions_62 string
,extensions_63 string
,extensions_64 string
,extensions_65 string
,extensions_66 string
,extensions_67 string
,extensions_68 string
,extensions_69 string
,extensions_70 string
,extensions_71 string
,extensions_72 string
,extensions_73 string
,extensions_74 string
,extensions_75 string
,extensions_76 string
,extensions_77 string
,extensions_78 string
,extensions_79 string
,extensions_80 string
,extensions_81 string
,extensions_82 string
,extensions_83 string
,extensions_84 string
,extensions_85 string
,extensions_86 string
,extensions_87 string
,extensions_88 string
,extensions_89 string
,extensions_90 string
,extensions_91 string
,extensions_92 string
,extensions_93 string
,extensions_94 string
,extensions_95 string
,extensions_96 string
,extensions_97 string
,extensions_98 string
,extensions_99 string
,extensions_100 string
,extensions_101 string
,extensions_102 string
,extensions_103 string
,extensions_104 string
,extensions_105 string
,extensions_106 string
,extensions_107 string
,extensions_108 string
,extensions_109 string
,extensions_110 string
,extensions_111 string
,extensions_112 string
,extensions_113 string
,extensions_114 string
,extensions_115 string
,extensions_116 string
,extensions_117 string
,extensions_118 string
,extensions_119 string
,extensions_120 string
,extensions_121 string
,extensions_122 string
,extensions_123 string
,extensions_124 string
,extensions_125 string
,extensions_126 string
,extensions_127 string
,extensions_128 string
,extensions_129 string
,extensions_130 string
,extensions_131 string
,extensions_132 string
,extensions_133 string
,extensions_134 string
,extensions_135 string
,extensions_136 string
,extensions_137 string
,extensions_138 string
,extensions_139 string
,extensions_140 string
,extensions_141 string
,extensions_142 string
,extensions_143 string
,extensions_144 string
,extensions_145 string
,extensions_146 string
,extensions_147 string
,extensions_148 string
,extensions_149 string
,extensions_150 string
,extensions_151 string
,extensions_152 string
,extensions_153 string
,extensions_154 string
,extensions_155 string
,extensions_156 string
,extensions_157 string
,extensions_158 string
,extensions_159 string
,extensions_160 string
,extensions_161 string
,extensions_162 string
,extensions_163 string
,extensions_164 string
,extensions_165 string
,extensions_166 string
,extensions_167 string
,extensions_168 string
,extensions_169 string
,extensions_170 string
,extensions_171 string
,extensions_172 string
,extensions_173 string
,extensions_174 string
,extensions_175 string
,extensions_176 string
,extensions_177 string
,extensions_178 string
,extensions_179 string
,extensions_180 string
,extensions_181 string
,extensions_182 string
,extensions_183 string
,extensions_184 string
,extensions_185 string
,extensions_186 string
,extensions_187 string
,extensions_188 string
,extensions_189 string
,extensions_190 string
,extensions_191 string
,extensions_192 string
,extensions_193 string
,extensions_194 string
,extensions_195 string
,extensions_196 string
,extensions_197 string
,extensions_198 string
,extensions_199 string
,extensions_200 string
,extensions_201 string
,extensions_202 string
,extensions_203 string
,extensions_204 string
,extensions_205 string
,extensions_206 string
,extensions_207 string
,extensions_208 string
,extensions_209 string
,extensions_210 string
,extensions_211 string
,extensions_212 string
,extensions_213 string
,extensions_214 string
,extensions_215 string
,extensions_216 string
,extensions_217 string
,extensions_218 string
,extensions_219 string
,extensions_220 string
,extensions_221 string
,extensions_222 string
,extensions_223 string
,extensions_224 string
,extensions_225 string
,extensions_226 string
,extensions_227 string
,extensions_228 string
,extensions_229 string
,extensions_230 string
,extensions_231 string
,extensions_232 string
,extensions_233 string
,extensions_234 string
,extensions_235 string
,extensions_236 string
,extensions_237 string
,extensions_238 string
,extensions_239 string
,extensions_240 string
,extensions_241 string
,extensions_242 string
,extensions_243 string
,extensions_244 string
,extensions_245 string
,extensions_246 string
,extensions_247 string
,extensions_248 string
,extensions_249 string
,extensions_250 string
,extensions_251 string
,extensions_252 string
,extensions_253 string
,extensions_254 string
,extensions_255 string
,extensions_256 string
,extensions_257 string
,extensions_258 string
,extensions_259 string
,extensions_260 string
,extensions_261 string
,extensions_262 string
,extensions_263 string
,extensions_264 string
,extensions_265 string
,extensions_266 string
,extensions_267 string
,extensions_268 string
,extensions_269 string
,extensions_270 string
,extensions_271 string
,extensions_272 string
,extensions_273 string
,extensions_274 string
,extensions_275 string
,extensions_276 string
,extensions_277 string
,extensions_278 string
,extensions_279 string
,extensions_280 string
,extensions_281 string
,extensions_282 string
,extensions_283 string
,extensions_284 string
,extensions_285 string
,extensions_286 string
,extensions_287 string
,extensions_288 string
,extensions_289 string
,extensions_290 string
,extensions_291 string
,extensions_292 string
,extensions_293 string
,extensions_294 string
,extensions_295 string
,extensions_296 string
,extensions_297 string
,extensions_298 string
,extensions_299 string
,extensions_300 string
,extensions_301 string
,extensions_302 string
,extensions_303 string
,extensions_304 string
,extensions_305 string
,extensions_306 string
,extensions_307 string
,extensions_308 string
,extensions_309 string
,extensions_310 string
,extensions_311 string
,extensions_312 string
,extensions_313 string
,extensions_314 string
,extensions_315 string
,extensions_316 string
,extensions_317 string
,extensions_318 string
,extensions_319 string
,extensions_320 string
,extensions_321 string
,extensions_322 string
,extensions_323 string
,extensions_324 string
,extensions_325 string
,extensions_326 string
,extensions_327 string
,extensions_328 string
,extensions_329 string
,extensions_330 string
,extensions_331 string
,extensions_332 string
,extensions_333 string
,extensions_334 string
,extensions_335 string
,extensions_336 string
,extensions_337 string
,extensions_338 string
,extensions_339 string
,extensions_340 string
,extensions_341 string
,extensions_342 string
,extensions_343 string
,extensions_344 string
,extensions_345 string
,extensions_346 string
,extensions_347 string
,extensions_348 string
,extensions_349 string
,extensions_350 string
,extensions_351 string
,extensions_352 string
,extensions_353 string
,extensions_354 string
,extensions_355 string
,extensions_356 string
,extensions_357 string
,extensions_358 string
,extensions_359 string
,extensions_360 string
,extensions_361 string
,extensions_362 string
,extensions_363 string
,extensions_364 string
,extensions_365 string
,extensions_366 string
,extensions_367 string
,extensions_368 string
,extensions_369 string
,extensions_370 string
,extensions_371 string
,extensions_372 string
,extensions_373 string
,extensions_374 string
,extensions_375 string
,extensions_376 string
,extensions_377 string
,extensions_378 string
,extensions_379 string
,extensions_380 string
,extensions_381 string
,extensions_382 string
,extensions_383 string
,extensions_384 string
,extensions_385 string
,extensions_386 string
,extensions_387 string
,extensions_388 string
,extensions_389 string
,extensions_390 string
,extensions_391 string
,extensions_392 string
,extensions_393 string
,extensions_394 string
,extensions_395 string
,extensions_396 string
,extensions_397 string
,extensions_398 string
,extensions_399 string
,extensions_400 string
,extensions_401 string
,extensions_402 string
,extensions_403 string
,extensions_404 string
,extensions_405 string
,extensions_406 string
,extensions_407 string
,extensions_408 string
,extensions_409 string
,extensions_410 string
,extensions_411 string
,extensions_412 string
,extensions_413 string
,extensions_414 string
,extensions_415 string
,extensions_416 string
,extensions_417 string
,extensions_418 string
,extensions_419 string
,extensions_420 string
,extensions_421 string
,extensions_422 string
,extensions_423 string
,extensions_424 string
,extensions_425 string
,extensions_426 string
,extensions_427 string
,extensions_428 string
,extensions_429 string
,extensions_430 string
,extensions_431 string
,extensions_432 string
,extensions_433 string
,extensions_434 string
,extensions_435 string
,extensions_436 string
,extensions_437 string
,extensions_438 string
,extensions_439 string
,extensions_440 string
,extensions_441 string
,extensions_442 string
,extensions_443 string
,extensions_444 string
,extensions_445 string
,extensions_446 string
,extensions_447 string
,extensions_448 string
,extensions_449 string
,extensions_450 string
,extensions_451 string
,extensions_452 string
,extensions_453 string
,extensions_454 string
,extensions_455 string
,extensions_456 string
,extensions_457 string
,extensions_458 string
,extensions_459 string
,extensions_460 string
,extensions_461 string
,extensions_462 string
,extensions_463 string
,extensions_464 string
,extensions_465 string
,extensions_466 string
,extensions_467 string
,extensions_468 string
,extensions_469 string
,extensions_470 string
,extensions_471 string
,extensions_472 string
,extensions_473 string
,extensions_474 string
,extensions_475 string
,extensions_476 string
,extensions_477 string
,extensions_478 string
,extensions_479 string
,extensions_480 string
,extensions_481 string
,extensions_482 string
,extensions_483 string
,extensions_484 string
,extensions_485 string
,extensions_486 string
,extensions_487 string
,extensions_488 string
,extensions_489 string
,extensions_490 string
,extensions_491 string
,extensions_492 string
,extensions_493 string
,extensions_494 string
,extensions_495 string
,extensions_496 string
,extensions_497 string
,extensions_498 string
,extensions_499 string
,extensions_500 string
,extensions_501 string
,extensions_502 string
,extensions_503 string
,extensions_504 string
,extensions_505 string
,extensions_506 string
,extensions_507 string
,extensions_508 string
,extensions_509 string
,extensions_510 string
,extensions_511 string
,extensions_512 string
,extensions_513 string
,extensions_514 string
,extensions_515 string
,extensions_516 string
,extensions_517 string
,extensions_518 string
,extensions_519 string
,extensions_520 string
,extensions_521 string
,extensions_522 string
,extensions_523 string
,extensions_524 string
,extensions_525 string
,extensions_526 string
,extensions_527 string
,extensions_528 string
,extensions_529 string
,extensions_530 string
,extensions_531 string
,extensions_532 string
,extensions_533 string
,extensions_534 string
,extensions_535 string
,extensions_536 string
,extensions_537 string
,extensions_538 string
,extensions_539 string
,extensions_540 string
,extensions_541 string
,extensions_542 string
,extensions_543 string
,extensions_544 string
,extensions_545 string
,extensions_546 string
,extensions_547 string
,extensions_548 string
,extensions_549 string
,extensions_550 string
,extensions_551 string
,extensions_552 string
,extensions_553 string
,extensions_554 string
,extensions_555 string
,extensions_556 string
,extensions_557 string
,extensions_558 string
,extensions_559 string
,extensions_560 string
,extensions_561 string
,extensions_562 string
,extensions_563 string
,extensions_564 string
,extensions_565 string
,extensions_566 string
,extensions_567 string
,extensions_568 string
,extensions_569 string
,extensions_570 string
,extensions_571 string
,extensions_572 string
,extensions_573 string
,extensions_574 string
,extensions_575 string
,extensions_576 string
,extensions_577 string
,extensions_578 string
,extensions_579 string
,extensions_580 string
,extensions_581 string
,extensions_582 string
,extensions_583 string
,extensions_584 string
,extensions_585 string
,extensions_586 string
,extensions_587 string
,extensions_588 string
,extensions_589 string
,extensions_590 string
,extensions_591 string
,extensions_592 string
,extensions_593 string
,extensions_594 string
,extensions_595 string
,extensions_596 string
,extensions_597 string
,extensions_598 string
,extensions_599 string
,extensions_600 string
,extensions_601 string
,extensions_602 string
,extensions_603 string
,extensions_604 string
,extensions_605 string
,extensions_606 string
,extensions_607 string
,extensions_608 string
,extensions_609 string
,extensions_610 string
,extensions_611 string
,extensions_612 string
,extensions_613 string
,extensions_614 string
,extensions_615 string
,extensions_616 string
,extensions_617 string
,extensions_618 string
,extensions_619 string
,extensions_620 string
,extensions_621 string
,extensions_622 string
,extensions_623 string
,extensions_624 string
,extensions_625 string
,extensions_626 string
,extensions_627 string
,extensions_628 string
,extensions_629 string
,extensions_630 string
,extensions_631 string
,extensions_632 string
,extensions_633 string
,extensions_634 string
,extensions_635 string
,extensions_636 string
,extensions_637 string
,extensions_638 string
,extensions_639 string
,extensions_640 string
,extensions_641 string
,extensions_642 string
,extensions_643 string
,extensions_644 string
,extensions_645 string
,extensions_646 string
,extensions_647 string
,extensions_648 string
,extensions_649 string
,extensions_650 string
,extensions_651 string
,extensions_652 string
,extensions_653 string
,extensions_654 string
,extensions_655 string
,extensions_656 string
,extensions_657 string
,extensions_658 string
,extensions_659 string
,extensions_660 string
,extensions_661 string
,extensions_662 string
,extensions_663 string
,extensions_664 string
,extensions_665 string
,extensions_666 string
,extensions_667 string
,extensions_668 string
,extensions_669 string
,extensions_670 string
,extensions_671 string
,extensions_672 string
,extensions_673 string
,extensions_674 string
,extensions_675 string
,extensions_676 string
,extensions_677 string
,extensions_678 string
,extensions_679 string
,extensions_680 string
,extensions_681 string
,extensions_682 string
,extensions_683 string
,extensions_684 string
,extensions_685 string
,extensions_686 string
,extensions_687 string
,extensions_688 string
,extensions_689 string
,extensions_690 string
,extensions_691 string
,extensions_692 string
,extensions_693 string
,extensions_694 string
,extensions_695 string
,extensions_696 string
,extensions_697 string
,extensions_698 string
,extensions_699 string
,extensions_700 string
,extensions_701 string
,extensions_702 string
,extensions_703 string
,extensions_704 string
,extensions_705 string
,extensions_706 string
,extensions_707 string
,extensions_708 string
,extensions_709 string
,extensions_710 string
,extensions_711 string
,extensions_712 string
,extensions_713 string
,extensions_714 string
,extensions_715 string
,extensions_716 string
,extensions_717 string
,extensions_718 string
,extensions_719 string
,extensions_720 string
,extensions_721 string
,extensions_722 string
,extensions_723 string
,extensions_724 string
,extensions_725 string
,extensions_726 string
,extensions_727 string
,extensions_728 string
,extensions_729 string
,extensions_730 string
,extensions_731 string
,extensions_732 string
,extensions_733 string
,extensions_734 string
,extensions_735 string
,extensions_736 string
,extensions_737 string
,extensions_738 string
,extensions_739 string
,extensions_740 string
,extensions_741 string
,extensions_742 string
,extensions_743 string
,extensions_744 string
,extensions_745 string
,extensions_746 string
,extensions_747 string
,extensions_748 string
,extensions_749 string
,extensions_750 string
,extensions_751 string
,extensions_752 string
,extensions_753 string
,extensions_754 string
,extensions_755 string
,extensions_756 string
,extensions_757 string
,extensions_758 string
,extensions_759 string
,extensions_760 string
,extensions_761 string
,extensions_762 string
,extensions_763 string
,extensions_764 string
,extensions_765 string
,extensions_766 string
,extensions_767 string
,extensions_768 string
,extensions_769 string
,extensions_770 string
,extensions_771 string
,extensions_772 string
,extensions_773 string
,extensions_774 string
,extensions_775 string
,extensions_776 string
,extensions_777 string
,extensions_778 string
,extensions_779 string
,extensions_780 string
,extensions_781 string
,extensions_782 string
,extensions_783 string
,extensions_784 string
,extensions_785 string
,extensions_786 string
,extensions_787 string
,extensions_788 string
,extensions_789 string
,extensions_790 string
,extensions_791 string
,extensions_792 string
,extensions_793 string
,extensions_794 string
,extensions_795 string
,extensions_796 string
,extensions_797 string
,extensions_798 string
,extensions_799 string
,extensions_800 string
,extensions_801 string
,extensions_802 string
,extensions_803 string
,extensions_804 string
,extensions_805 string
,extensions_806 string
,extensions_807 string
,extensions_808 string
,extensions_809 string
,extensions_810 string
,extensions_811 string
,extensions_812 string
,extensions_813 string
,extensions_814 string
,extensions_815 string
,extensions_816 string
,extensions_817 string
,extensions_818 string
,extensions_819 string
,extensions_820 string
,extensions_821 string
,extensions_822 string
,extensions_823 string
,extensions_824 string
,extensions_825 string
,extensions_826 string
,extensions_827 string
,extensions_828 string
,extensions_829 string
,extensions_830 string
,extensions_831 string
,extensions_832 string
,extensions_833 string
,extensions_834 string
,extensions_835 string
,extensions_836 string
,extensions_837 string
,extensions_838 string
,extensions_839 string
,extensions_840 string
,extensions_841 string
,extensions_842 string
,extensions_843 string
,extensions_844 string
,extensions_845 string
,extensions_846 string
,extensions_847 string
,extensions_848 string
,extensions_849 string
,extensions_850 string
,extensions_851 string
,extensions_852 string
,extensions_853 string
,extensions_854 string
,extensions_855 string
,extensions_856 string
,extensions_857 string
,extensions_858 string
,extensions_859 string
,extensions_860 string
,extensions_861 string
,extensions_862 string
,extensions_863 string
,extensions_864 string
,extensions_865 string
,extensions_866 string
,extensions_867 string
,extensions_868 string
,extensions_869 string
,extensions_870 string
,extensions_871 string
,extensions_872 string
,extensions_873 string
,extensions_874 string
,extensions_875 string
,extensions_876 string
,extensions_877 string
,extensions_878 string
,extensions_879 string
,extensions_880 string
,extensions_881 string
,extensions_882 string
,extensions_883 string
,extensions_884 string
,extensions_885 string
,extensions_886 string
,extensions_887 string
,extensions_888 string
,extensions_889 string
,extensions_890 string
,extensions_891 string
,extensions_892 string
,extensions_893 string
,extensions_894 string
,extensions_895 string
,extensions_896 string
,extensions_897 string
,extensions_898 string
,extensions_899 string
,extensions_900 string
,extensions_901 string
,extensions_902 string
,extensions_903 string
,extensions_904 string
,extensions_905 string
,extensions_906 string
,extensions_907 string
,extensions_908 string
,extensions_909 string
,extensions_910 string
,extensions_911 string
,extensions_912 string
,extensions_913 string
,extensions_914 string
,extensions_915 string
,extensions_916 string
,extensions_917 string
,extensions_918 string
,extensions_919 string
,extensions_920 string
,extensions_921 string
,extensions_922 string
,extensions_923 string
,extensions_924 string
,extensions_925 string
,extensions_926 string
,extensions_927 string
,extensions_928 string
,extensions_929 string
,extensions_930 string
,extensions_931 string
,extensions_932 string
,extensions_933 string
,extensions_934 string
,extensions_935 string
,extensions_936 string
,extensions_937 string
,extensions_938 string
,extensions_939 string
,extensions_940 string
,extensions_941 string
,extensions_942 string
,extensions_943 string
,extensions_944 string
,extensions_945 string
,extensions_946 string
,extensions_947 string
,extensions_948 string
,extensions_949 string
,extensions_950 string
,extensions_951 string
,extensions_952 string
,extensions_953 string
,extensions_954 string
,extensions_955 string
,extensions_956 string
,extensions_957 string
,extensions_958 string
,extensions_959 string
,extensions_960 string
,extensions_961 string
,extensions_962 string
,extensions_963 string
,extensions_964 string
,extensions_965 string
,extensions_966 string
,extensions_967 string
,extensions_968 string
,extensions_969 string
,extensions_970 string
,extensions_971 string
,extensions_972 string
,extensions_973 string
,extensions_974 string
,extensions_975 string
,extensions_976 string
,extensions_977 string
,extensions_978 string
,extensions_979 string
,extensions_980 string
,extensions_981 string
,extensions_982 string
,extensions_983 string
,extensions_984 string
,extensions_985 string
,extensions_986 string
,extensions_987 string
,extensions_988 string
,extensions_989 string
,extensions_990 string
,extensions_991 string
,extensions_992 string
,extensions_993 string
,extensions_994 string
,extensions_995 string
,extensions_996 string
,extensions_997 string
,extensions_998 string
,extensions_999 string
,extensions_1000 string
)
PARTITIONED BY (dt string, hour string)
STORED AS ORC
LOCATION '/user/hive/warehouse/dwd_events';
-- TBLPROPERTIES(
-- 'sink.partition-commit.policy.kind'='metastore,success-file'
-- );
-- metastore 提交策略会将分区的元数据写入 Hive 的元数据存储中,以保证分区的完整性和一致性。
-- success-file 提交策略会在成功写入分区数据后,创建一个成功标记文件,以表示分区数据写入完成
-- hdfs dfs -chmod -R u+w /user/hive/warehouse/dwd_dc.db/dwd_events

edt-event-data-merge服务

说明:

dwd_events_bydate_loop_add_partition.sh 初始化创建分区hdfs目录,

dwd_events_bydate_loop_add_partition_sql.sh 初始化创建日分区

hourly_orcfile_merger.sh合并埋点数据的分区文件,需要配置在crontab单独执行

sql脚本 埋点数据按日分区表,创建表时路径换到长龙的目录

yr变量指当前年份

pth:hive表数据的hdfs存储地址

crontab命令配置执行hourly_orcfile_merger.sh脚本:

7 * * * * source /home/hadoop/.bash_profile; cd /home/hadoop; /usr/bin/sh /home/hadoop/project/hourly_orcfile_merger.sh >> /home/hadoop/project/edt-event-data-merge.log 2>&1

dwd_events_bydate_loop_add_partition.sh

#!/bin/bash
# 年份、月份、HDFS地址根据具体需要调整
yr=2024
for m in `seq -w 7 12`
do
for d in `seq -w 1 31`
do
pth="/user/hive/warehouse/dwd_events_bydate/dt=${yr}${m}${d}"
echo $pth
hdfs dfs -mkdir -p "$pth"
done
done

dwd_events_bydate_loop_add_partition_sql.sh

#!/bin/bash
# 年份、月份、HDFS地址根据具体需要调整
yr=2024
for m in `seq -w 7 12`
do
for d in `seq -w 1 31`
do
pth="/user/hive/warehouse/dwd_events_bydate/dt=${yr}${m}${d}"
#echo $pth
echo "alter table dwd_dc.dwd_events_bydate add partition(dt='${yr}${m}${d}') location '$pth';"
done
done

hourly_orcfile_merger.sh 依赖jar:通过maven打包后上传到指定的目录

#!/bin/bash
# 7 * * * * source /home/hadoop/.bash_profile; cd /home/hadoop; /usr/bin/sh /home/hadoop/project/hourly_orcfile_merger.sh >> /home/hadoop/project/edt-event-data-merge.log 2>&1
# export HADOOP_CONF_DIR=/data/software/hadoop/etc/hadoop
# export YARN_CONF_DIR=/data/software/hadoop/etc/hadoop
bash /data/software/spark/bin/spark-submit \
--class com.chinapex.edt.merge.HourlyOrcFileMerger \
--master yarn \
--deploy-mode cluster \
--executor-memory 2G \
--num-executors 3 \
/home/hadoop/project/edt-event-data-merge.jar \
hdfs://dataverse /raw/dc/events /raw/dc/events/error /user/hive/warehouse/dwd_events /user/hive/warehouse/dwd_events_bydate 1 1 1 1


SQL脚本

hdfs dfs -mkdir -p /user/hive/warehouse/dwd_events_bydate

ALTER TABLE dwd_dc.dwd_events_bydate SET LOCATION '/user/hive/warehouse/dwd_events_bydate';

CREATE TABLE IF NOT EXISTS dwd_dc.dwd_events_bydate (
distinct_id string comment '通过sdk 生成distinctid,作为不用户登录或者未登录时,均上报时候必传字段,在用户登录后,需要传递userid,作为关联业务的字段。'
,ts string comment '事件触发时间'
,apex_id string comment '创略唯一ID'
,event_code string comment '事件唯一代码'
,tenant_id string comment '租户id'
,project_id string comment '项目id'
,app_id string comment '产品id'
,platform string comment '上报平台'
,message_id string
,user_id string
,event_name string
,event_type string
,send_type string
,event_code_md5 string
,event_duration string
,browse_time string
,device_id string
,device_model string
,device_brand string
,device_type string
,device_uuid string
,carriers string
,network_type string
,android_id string
,imei string
,mac string
,user_agent string
,os string
,idfa string
,idfv string
,oaid string
,latitude string
,longitude string
,wechat_open_id string
,wechat_union_id string
,screen_width string
,screen_height string
,page_height string
,page_width string
,browser_version string
,session_id string
,sdk_version string
,sdk_type string
,app_version string
,app_package_id string
,mini_program_scene string
,market_name string
,referrer_url string
,referrer_host string
,utm_matching_type string
,utm_source string
,utm_medium string
,utm_term string
,utm_content string
,utm_campaign string
,ip string
,province string
,city string
,county string
,country string
,page_type string
,current_page_id string
,current_page_name string
,current_page_url string
,time_since_last_operation string
,current_page_host string
,current_page_query string
,current_page_path string
,source_page_id string
,source_page_name string
,source_page_url string
,source_page_host string
,source_page_query string
,source_page_path string
,page_X string
,page_Y string
,client_X string
,client_Y string
,element_id string
,element_name string
,element_target_url string
,element_type string
,element_content string
,element_selector string
,element_position string
,element_index string
,element_tag_name string
,element_class string
,element_path string
,upload_time string
,write_log_time string
,insert_db_time string
,track_signup_original_id string
,last_visit_time string
,is_first_time string
,forward_user_id string
,extensions_1 string
,extensions_2 string
,extensions_3 string
,extensions_4 string
,extensions_5 string
,extensions_6 string
,extensions_7 string
,extensions_8 string
,extensions_9 string
,extensions_10 string
,extensions_11 string
,extensions_12 string
,extensions_13 string
,extensions_14 string
,extensions_15 string
,extensions_16 string
,extensions_17 string
,extensions_18 string
,extensions_19 string
,extensions_20 string
,extensions_21 string
,extensions_22 string
,extensions_23 string
,extensions_24 string
,extensions_25 string
,extensions_26 string
,extensions_27 string
,extensions_28 string
,extensions_29 string
,extensions_30 string
,extensions_31 string
,extensions_32 string
,extensions_33 string
,extensions_34 string
,extensions_35 string
,extensions_36 string
,extensions_37 string
,extensions_38 string
,extensions_39 string
,extensions_40 string
,extensions_41 string
,extensions_42 string
,extensions_43 string
,extensions_44 string
,extensions_45 string
,extensions_46 string
,extensions_47 string
,extensions_48 string
,extensions_49 string
,extensions_50 string
,extensions_51 string
,extensions_52 string
,extensions_53 string
,extensions_54 string
,extensions_55 string
,extensions_56 string
,extensions_57 string
,extensions_58 string
,extensions_59 string
,extensions_60 string
,extensions_61 string
,extensions_62 string
,extensions_63 string
,extensions_64 string
,extensions_65 string
,extensions_66 string
,extensions_67 string
,extensions_68 string
,extensions_69 string
,extensions_70 string
,extensions_71 string
,extensions_72 string
,extensions_73 string
,extensions_74 string
,extensions_75 string
,extensions_76 string
,extensions_77 string
,extensions_78 string
,extensions_79 string
,extensions_80 string
,extensions_81 string
,extensions_82 string
,extensions_83 string
,extensions_84 string
,extensions_85 string
,extensions_86 string
,extensions_87 string
,extensions_88 string
,extensions_89 string
,extensions_90 string
,extensions_91 string
,extensions_92 string
,extensions_93 string
,extensions_94 string
,extensions_95 string
,extensions_96 string
,extensions_97 string
,extensions_98 string
,extensions_99 string
,extensions_100 string
,extensions_101 string
,extensions_102 string
,extensions_103 string
,extensions_104 string
,extensions_105 string
,extensions_106 string
,extensions_107 string
,extensions_108 string
,extensions_109 string
,extensions_110 string
,extensions_111 string
,extensions_112 string
,extensions_113 string
,extensions_114 string
,extensions_115 string
,extensions_116 string
,extensions_117 string
,extensions_118 string
,extensions_119 string
,extensions_120 string
,extensions_121 string
,extensions_122 string
,extensions_123 string
,extensions_124 string
,extensions_125 string
,extensions_126 string
,extensions_127 string
,extensions_128 string
,extensions_129 string
,extensions_130 string
,extensions_131 string
,extensions_132 string
,extensions_133 string
,extensions_134 string
,extensions_135 string
,extensions_136 string
,extensions_137 string
,extensions_138 string
,extensions_139 string
,extensions_140 string
,extensions_141 string
,extensions_142 string
,extensions_143 string
,extensions_144 string
,extensions_145 string
,extensions_146 string
,extensions_147 string
,extensions_148 string
,extensions_149 string
,extensions_150 string
,extensions_151 string
,extensions_152 string
,extensions_153 string
,extensions_154 string
,extensions_155 string
,extensions_156 string
,extensions_157 string
,extensions_158 string
,extensions_159 string
,extensions_160 string
,extensions_161 string
,extensions_162 string
,extensions_163 string
,extensions_164 string
,extensions_165 string
,extensions_166 string
,extensions_167 string
,extensions_168 string
,extensions_169 string
,extensions_170 string
,extensions_171 string
,extensions_172 string
,extensions_173 string
,extensions_174 string
,extensions_175 string
,extensions_176 string
,extensions_177 string
,extensions_178 string
,extensions_179 string
,extensions_180 string
,extensions_181 string
,extensions_182 string
,extensions_183 string
,extensions_184 string
,extensions_185 string
,extensions_186 string
,extensions_187 string
,extensions_188 string
,extensions_189 string
,extensions_190 string
,extensions_191 string
,extensions_192 string
,extensions_193 string
,extensions_194 string
,extensions_195 string
,extensions_196 string
,extensions_197 string
,extensions_198 string
,extensions_199 string
,extensions_200 string
,extensions_201 string
,extensions_202 string
,extensions_203 string
,extensions_204 string
,extensions_205 string
,extensions_206 string
,extensions_207 string
,extensions_208 string
,extensions_209 string
,extensions_210 string
,extensions_211 string
,extensions_212 string
,extensions_213 string
,extensions_214 string
,extensions_215 string
,extensions_216 string
,extensions_217 string
,extensions_218 string
,extensions_219 string
,extensions_220 string
,extensions_221 string
,extensions_222 string
,extensions_223 string
,extensions_224 string
,extensions_225 string
,extensions_226 string
,extensions_227 string
,extensions_228 string
,extensions_229 string
,extensions_230 string
,extensions_231 string
,extensions_232 string
,extensions_233 string
,extensions_234 string
,extensions_235 string
,extensions_236 string
,extensions_237 string
,extensions_238 string
,extensions_239 string
,extensions_240 string
,extensions_241 string
,extensions_242 string
,extensions_243 string
,extensions_244 string
,extensions_245 string
,extensions_246 string
,extensions_247 string
,extensions_248 string
,extensions_249 string
,extensions_250 string
,extensions_251 string
,extensions_252 string
,extensions_253 string
,extensions_254 string
,extensions_255 string
,extensions_256 string
,extensions_257 string
,extensions_258 string
,extensions_259 string
,extensions_260 string
,extensions_261 string
,extensions_262 string
,extensions_263 string
,extensions_264 string
,extensions_265 string
,extensions_266 string
,extensions_267 string
,extensions_268 string
,extensions_269 string
,extensions_270 string
,extensions_271 string
,extensions_272 string
,extensions_273 string
,extensions_274 string
,extensions_275 string
,extensions_276 string
,extensions_277 string
,extensions_278 string
,extensions_279 string
,extensions_280 string
,extensions_281 string
,extensions_282 string
,extensions_283 string
,extensions_284 string
,extensions_285 string
,extensions_286 string
,extensions_287 string
,extensions_288 string
,extensions_289 string
,extensions_290 string
,extensions_291 string
,extensions_292 string
,extensions_293 string
,extensions_294 string
,extensions_295 string
,extensions_296 string
,extensions_297 string
,extensions_298 string
,extensions_299 string
,extensions_300 string
,extensions_301 string
,extensions_302 string
,extensions_303 string
,extensions_304 string
,extensions_305 string
,extensions_306 string
,extensions_307 string
,extensions_308 string
,extensions_309 string
,extensions_310 string
,extensions_311 string
,extensions_312 string
,extensions_313 string
,extensions_314 string
,extensions_315 string
,extensions_316 string
,extensions_317 string
,extensions_318 string
,extensions_319 string
,extensions_320 string
,extensions_321 string
,extensions_322 string
,extensions_323 string
,extensions_324 string
,extensions_325 string
,extensions_326 string
,extensions_327 string
,extensions_328 string
,extensions_329 string
,extensions_330 string
,extensions_331 string
,extensions_332 string
,extensions_333 string
,extensions_334 string
,extensions_335 string
,extensions_336 string
,extensions_337 string
,extensions_338 string
,extensions_339 string
,extensions_340 string
,extensions_341 string
,extensions_342 string
,extensions_343 string
,extensions_344 string
,extensions_345 string
,extensions_346 string
,extensions_347 string
,extensions_348 string
,extensions_349 string
,extensions_350 string
,extensions_351 string
,extensions_352 string
,extensions_353 string
,extensions_354 string
,extensions_355 string
,extensions_356 string
,extensions_357 string
,extensions_358 string
,extensions_359 string
,extensions_360 string
,extensions_361 string
,extensions_362 string
,extensions_363 string
,extensions_364 string
,extensions_365 string
,extensions_366 string
,extensions_367 string
,extensions_368 string
,extensions_369 string
,extensions_370 string
,extensions_371 string
,extensions_372 string
,extensions_373 string
,extensions_374 string
,extensions_375 string
,extensions_376 string
,extensions_377 string
,extensions_378 string
,extensions_379 string
,extensions_380 string
,extensions_381 string
,extensions_382 string
,extensions_383 string
,extensions_384 string
,extensions_385 string
,extensions_386 string
,extensions_387 string
,extensions_388 string
,extensions_389 string
,extensions_390 string
,extensions_391 string
,extensions_392 string
,extensions_393 string
,extensions_394 string
,extensions_395 string
,extensions_396 string
,extensions_397 string
,extensions_398 string
,extensions_399 string
,extensions_400 string
,extensions_401 string
,extensions_402 string
,extensions_403 string
,extensions_404 string
,extensions_405 string
,extensions_406 string
,extensions_407 string
,extensions_408 string
,extensions_409 string
,extensions_410 string
,extensions_411 string
,extensions_412 string
,extensions_413 string
,extensions_414 string
,extensions_415 string
,extensions_416 string
,extensions_417 string
,extensions_418 string
,extensions_419 string
,extensions_420 string
,extensions_421 string
,extensions_422 string
,extensions_423 string
,extensions_424 string
,extensions_425 string
,extensions_426 string
,extensions_427 string
,extensions_428 string
,extensions_429 string
,extensions_430 string
,extensions_431 string
,extensions_432 string
,extensions_433 string
,extensions_434 string
,extensions_435 string
,extensions_436 string
,extensions_437 string
,extensions_438 string
,extensions_439 string
,extensions_440 string
,extensions_441 string
,extensions_442 string
,extensions_443 string
,extensions_444 string
,extensions_445 string
,extensions_446 string
,extensions_447 string
,extensions_448 string
,extensions_449 string
,extensions_450 string
,extensions_451 string
,extensions_452 string
,extensions_453 string
,extensions_454 string
,extensions_455 string
,extensions_456 string
,extensions_457 string
,extensions_458 string
,extensions_459 string
,extensions_460 string
,extensions_461 string
,extensions_462 string
,extensions_463 string
,extensions_464 string
,extensions_465 string
,extensions_466 string
,extensions_467 string
,extensions_468 string
,extensions_469 string
,extensions_470 string
,extensions_471 string
,extensions_472 string
,extensions_473 string
,extensions_474 string
,extensions_475 string
,extensions_476 string
,extensions_477 string
,extensions_478 string
,extensions_479 string
,extensions_480 string
,extensions_481 string
,extensions_482 string
,extensions_483 string
,extensions_484 string
,extensions_485 string
,extensions_486 string
,extensions_487 string
,extensions_488 string
,extensions_489 string
,extensions_490 string
,extensions_491 string
,extensions_492 string
,extensions_493 string
,extensions_494 string
,extensions_495 string
,extensions_496 string
,extensions_497 string
,extensions_498 string
,extensions_499 string
,extensions_500 string
,extensions_501 string
,extensions_502 string
,extensions_503 string
,extensions_504 string
,extensions_505 string
,extensions_506 string
,extensions_507 string
,extensions_508 string
,extensions_509 string
,extensions_510 string
,extensions_511 string
,extensions_512 string
,extensions_513 string
,extensions_514 string
,extensions_515 string
,extensions_516 string
,extensions_517 string
,extensions_518 string
,extensions_519 string
,extensions_520 string
,extensions_521 string
,extensions_522 string
,extensions_523 string
,extensions_524 string
,extensions_525 string
,extensions_526 string
,extensions_527 string
,extensions_528 string
,extensions_529 string
,extensions_530 string
,extensions_531 string
,extensions_532 string
,extensions_533 string
,extensions_534 string
,extensions_535 string
,extensions_536 string
,extensions_537 string
,extensions_538 string
,extensions_539 string
,extensions_540 string
,extensions_541 string
,extensions_542 string
,extensions_543 string
,extensions_544 string
,extensions_545 string
,extensions_546 string
,extensions_547 string
,extensions_548 string
,extensions_549 string
,extensions_550 string
,extensions_551 string
,extensions_552 string
,extensions_553 string
,extensions_554 string
,extensions_555 string
,extensions_556 string
,extensions_557 string
,extensions_558 string
,extensions_559 string
,extensions_560 string
,extensions_561 string
,extensions_562 string
,extensions_563 string
,extensions_564 string
,extensions_565 string
,extensions_566 string
,extensions_567 string
,extensions_568 string
,extensions_569 string
,extensions_570 string
,extensions_571 string
,extensions_572 string
,extensions_573 string
,extensions_574 string
,extensions_575 string
,extensions_576 string
,extensions_577 string
,extensions_578 string
,extensions_579 string
,extensions_580 string
,extensions_581 string
,extensions_582 string
,extensions_583 string
,extensions_584 string
,extensions_585 string
,extensions_586 string
,extensions_587 string
,extensions_588 string
,extensions_589 string
,extensions_590 string
,extensions_591 string
,extensions_592 string
,extensions_593 string
,extensions_594 string
,extensions_595 string
,extensions_596 string
,extensions_597 string
,extensions_598 string
,extensions_599 string
,extensions_600 string
,extensions_601 string
,extensions_602 string
,extensions_603 string
,extensions_604 string
,extensions_605 string
,extensions_606 string
,extensions_607 string
,extensions_608 string
,extensions_609 string
,extensions_610 string
,extensions_611 string
,extensions_612 string
,extensions_613 string
,extensions_614 string
,extensions_615 string
,extensions_616 string
,extensions_617 string
,extensions_618 string
,extensions_619 string
,extensions_620 string
,extensions_621 string
,extensions_622 string
,extensions_623 string
,extensions_624 string
,extensions_625 string
,extensions_626 string
,extensions_627 string
,extensions_628 string
,extensions_629 string
,extensions_630 string
,extensions_631 string
,extensions_632 string
,extensions_633 string
,extensions_634 string
,extensions_635 string
,extensions_636 string
,extensions_637 string
,extensions_638 string
,extensions_639 string
,extensions_640 string
,extensions_641 string
,extensions_642 string
,extensions_643 string
,extensions_644 string
,extensions_645 string
,extensions_646 string
,extensions_647 string
,extensions_648 string
,extensions_649 string
,extensions_650 string
,extensions_651 string
,extensions_652 string
,extensions_653 string
,extensions_654 string
,extensions_655 string
,extensions_656 string
,extensions_657 string
,extensions_658 string
,extensions_659 string
,extensions_660 string
,extensions_661 string
,extensions_662 string
,extensions_663 string
,extensions_664 string
,extensions_665 string
,extensions_666 string
,extensions_667 string
,extensions_668 string
,extensions_669 string
,extensions_670 string
,extensions_671 string
,extensions_672 string
,extensions_673 string
,extensions_674 string
,extensions_675 string
,extensions_676 string
,extensions_677 string
,extensions_678 string
,extensions_679 string
,extensions_680 string
,extensions_681 string
,extensions_682 string
,extensions_683 string
,extensions_684 string
,extensions_685 string
,extensions_686 string
,extensions_687 string
,extensions_688 string
,extensions_689 string
,extensions_690 string
,extensions_691 string
,extensions_692 string
,extensions_693 string
,extensions_694 string
,extensions_695 string
,extensions_696 string
,extensions_697 string
,extensions_698 string
,extensions_699 string
,extensions_700 string
,extensions_701 string
,extensions_702 string
,extensions_703 string
,extensions_704 string
,extensions_705 string
,extensions_706 string
,extensions_707 string
,extensions_708 string
,extensions_709 string
,extensions_710 string
,extensions_711 string
,extensions_712 string
,extensions_713 string
,extensions_714 string
,extensions_715 string
,extensions_716 string
,extensions_717 string
,extensions_718 string
,extensions_719 string
,extensions_720 string
,extensions_721 string
,extensions_722 string
,extensions_723 string
,extensions_724 string
,extensions_725 string
,extensions_726 string
,extensions_727 string
,extensions_728 string
,extensions_729 string
,extensions_730 string
,extensions_731 string
,extensions_732 string
,extensions_733 string
,extensions_734 string
,extensions_735 string
,extensions_736 string
,extensions_737 string
,extensions_738 string
,extensions_739 string
,extensions_740 string
,extensions_741 string
,extensions_742 string
,extensions_743 string
,extensions_744 string
,extensions_745 string
,extensions_746 string
,extensions_747 string
,extensions_748 string
,extensions_749 string
,extensions_750 string
,extensions_751 string
,extensions_752 string
,extensions_753 string
,extensions_754 string
,extensions_755 string
,extensions_756 string
,extensions_757 string
,extensions_758 string
,extensions_759 string
,extensions_760 string
,extensions_761 string
,extensions_762 string
,extensions_763 string
,extensions_764 string
,extensions_765 string
,extensions_766 string
,extensions_767 string
,extensions_768 string
,extensions_769 string
,extensions_770 string
,extensions_771 string
,extensions_772 string
,extensions_773 string
,extensions_774 string
,extensions_775 string
,extensions_776 string
,extensions_777 string
,extensions_778 string
,extensions_779 string
,extensions_780 string
,extensions_781 string
,extensions_782 string
,extensions_783 string
,extensions_784 string
,extensions_785 string
,extensions_786 string
,extensions_787 string
,extensions_788 string
,extensions_789 string
,extensions_790 string
,extensions_791 string
,extensions_792 string
,extensions_793 string
,extensions_794 string
,extensions_795 string
,extensions_796 string
,extensions_797 string
,extensions_798 string
,extensions_799 string
,extensions_800 string
,extensions_801 string
,extensions_802 string
,extensions_803 string
,extensions_804 string
,extensions_805 string
,extensions_806 string
,extensions_807 string
,extensions_808 string
,extensions_809 string
,extensions_810 string
,extensions_811 string
,extensions_812 string
,extensions_813 string
,extensions_814 string
,extensions_815 string
,extensions_816 string
,extensions_817 string
,extensions_818 string
,extensions_819 string
,extensions_820 string
,extensions_821 string
,extensions_822 string
,extensions_823 string
,extensions_824 string
,extensions_825 string
,extensions_826 string
,extensions_827 string
,extensions_828 string
,extensions_829 string
,extensions_830 string
,extensions_831 string
,extensions_832 string
,extensions_833 string
,extensions_834 string
,extensions_835 string
,extensions_836 string
,extensions_837 string
,extensions_838 string
,extensions_839 string
,extensions_840 string
,extensions_841 string
,extensions_842 string
,extensions_843 string
,extensions_844 string
,extensions_845 string
,extensions_846 string
,extensions_847 string
,extensions_848 string
,extensions_849 string
,extensions_850 string
,extensions_851 string
,extensions_852 string
,extensions_853 string
,extensions_854 string
,extensions_855 string
,extensions_856 string
,extensions_857 string
,extensions_858 string
,extensions_859 string
,extensions_860 string
,extensions_861 string
,extensions_862 string
,extensions_863 string
,extensions_864 string
,extensions_865 string
,extensions_866 string
,extensions_867 string
,extensions_868 string
,extensions_869 string
,extensions_870 string
,extensions_871 string
,extensions_872 string
,extensions_873 string
,extensions_874 string
,extensions_875 string
,extensions_876 string
,extensions_877 string
,extensions_878 string
,extensions_879 string
,extensions_880 string
,extensions_881 string
,extensions_882 string
,extensions_883 string
,extensions_884 string
,extensions_885 string
,extensions_886 string
,extensions_887 string
,extensions_888 string
,extensions_889 string
,extensions_890 string
,extensions_891 string
,extensions_892 string
,extensions_893 string
,extensions_894 string
,extensions_895 string
,extensions_896 string
,extensions_897 string
,extensions_898 string
,extensions_899 string
,extensions_900 string
,extensions_901 string
,extensions_902 string
,extensions_903 string
,extensions_904 string
,extensions_905 string
,extensions_906 string
,extensions_907 string
,extensions_908 string
,extensions_909 string
,extensions_910 string
,extensions_911 string
,extensions_912 string
,extensions_913 string
,extensions_914 string
,extensions_915 string
,extensions_916 string
,extensions_917 string
,extensions_918 string
,extensions_919 string
,extensions_920 string
,extensions_921 string
,extensions_922 string
,extensions_923 string
,extensions_924 string
,extensions_925 string
,extensions_926 string
,extensions_927 string
,extensions_928 string
,extensions_929 string
,extensions_930 string
,extensions_931 string
,extensions_932 string
,extensions_933 string
,extensions_934 string
,extensions_935 string
,extensions_936 string
,extensions_937 string
,extensions_938 string
,extensions_939 string
,extensions_940 string
,extensions_941 string
,extensions_942 string
,extensions_943 string
,extensions_944 string
,extensions_945 string
,extensions_946 string
,extensions_947 string
,extensions_948 string
,extensions_949 string
,extensions_950 string
,extensions_951 string
,extensions_952 string
,extensions_953 string
,extensions_954 string
,extensions_955 string
,extensions_956 string
,extensions_957 string
,extensions_958 string
,extensions_959 string
,extensions_960 string
,extensions_961 string
,extensions_962 string
,extensions_963 string
,extensions_964 string
,extensions_965 string
,extensions_966 string
,extensions_967 string
,extensions_968 string
,extensions_969 string
,extensions_970 string
,extensions_971 string
,extensions_972 string
,extensions_973 string
,extensions_974 string
,extensions_975 string
,extensions_976 string
,extensions_977 string
,extensions_978 string
,extensions_979 string
,extensions_980 string
,extensions_981 string
,extensions_982 string
,extensions_983 string
,extensions_984 string
,extensions_985 string
,extensions_986 string
,extensions_987 string
,extensions_988 string
,extensions_989 string
,extensions_990 string
,extensions_991 string
,extensions_992 string
,extensions_993 string
,extensions_994 string
,extensions_995 string
,extensions_996 string
,extensions_997 string
,extensions_998 string
,extensions_999 string
,extensions_1000 string
)
PARTITIONED BY (dt string)
STORED AS ORC
LOCATION '/user/hive/warehouse/dwd_events_bydate';


edt-report-api服务

依赖jar:通过maven打包后上传到指定的目录

启动脚本start.sh

#!/bin/bash

. /etc/profile

export LANG=en_US.UTF-8

SERVER_NAME="edt-report-api"

pid=$(ps -ef | grep ${SERVER_NAME} | grep -v grep | awk '{print $2}')

if [[ "$pid" != '' ]]; then
kill -9 "$pid"
if [[ $? == 0 ]]; then
echo "stop successfully"
else
echo "stop failed"
fi
else
echo "already stopped"
fi

JAVA_OPTS="-Xms2048m -Xmx2048m -XX:PermSize=256m -XX:MaxPermSize=256m"

#这里建议使用jdk1.8.0_221版本,低版本的jdk1.8可能会使net.i2p.crypto.eddsa报错
nohup java ${JAVA_OPTS} -jar edt-report-api.jar>nexus-edt-report-api.log 2>&1 &
echo "$SERVER_NAME started ok"

停止脚本stop.sh

#!/bin/bash

. /etc/profile

export LANG=en_US.UTF-8

SERVER_NAME="edt-report-api"

pid=$(ps -ef | grep ${SERVER_NAME} | grep -v grep | awk '{print $2}')

if [[ "$pid" != '' ]]; then
kill -9 "$pid"
if [[ $? == 0 ]]; then
echo "stop successfully"
else
echo "stop failed"
fi
else
echo "already stopped"
fi

application-nexus-edt-report-api-custom-dev.yaml

server:
port: 26192
# servlet:
# context-path: /
spring:
servlet:
multipart:
enabled: true
max-file-size: 100MB
max-request-size: 100MB
redis:
database: 1
host: 10.25.19.3
port: 6379
password: Apexredis777
# timeout: 40s
kafka:
bootstrap-servers: 10.25.19.207:9092,10.25.19.208:9092
producer:
key-serializer: org.apache.kafka.common.serialization.StringSerializer
value-serializer: org.apache.kafka.common.serialization.StringSerializer
consumer:
key-deserializer: org.apache.kafka.common.serialization.StringSerializer
value-deserializer: org.apache.kafka.common.serialization.StringSerializer
jackson:
time-zone: "GMT+08:00"

# Logger Config
logging:
config: classpath:logback-custom.xml
#logstash:
#destination: 10.200.6.217:4570
level:
com.chinapex.edt.report: INFO
com.chinapex.edt.common: INFO
org.springframework.web: INFO
#com.chinapex.edt.report.config.BizLogger: OFF

do:
main:
host: https://nexus-one.chinapex.com.cn

edt-management-service服务

依赖jar:通过maven打包后上传到指定的目录

启动脚本start.sh

#!/bin/bash

. /etc/profile

export LANG=en_US.UTF-8

SERVER_NAME="edt-management-service"

pid=$(ps -ef | grep ${SERVER_NAME} | grep -v grep | awk '{print $2}')

if [[ "$pid" != '' ]]; then
kill -9 "$pid"
if [[ $? == 0 ]]; then
echo "stop successfully"
else
echo "stop failed"
fi
else
echo "already stopped"
fi

JAVA_OPTS="-Xms2048m -Xmx2048m -XX:PermSize=256m -XX:MaxPermSize=256m"
JAVA_8_221="/data/apex-dc-apps/nexus-edt/jdk1.8.0_221-amd64";

nohup ${JAVA_8_221}/bin/java ${JAVA_OPTS} -jar edt-management-service.jar>edt-management-service.log 2>&1 &
echo "$SERVER_NAME started ok"

停止脚本stop.sh

#!/bin/bash

. /etc/profile

export LANG=en_US.UTF-8

SERVER_NAME="edt-management-service"

pid=$(ps -ef | grep ${SERVER_NAME} | grep -v grep | awk '{print $2}')

if [[ "$pid" != '' ]]; then
kill -9 "$pid"
if [[ $? == 0 ]]; then
echo "stop successfully"
else
echo "stop failed"
fi
else
echo "already stopped"
fi

application-nexus-edt-management-custom-dev.properties

server.port=25392
#server.servlet.context-path=/edt/management
# datasource 配置
# clickhouse
# clickhouse
edt.clickhouse.test-while-idle=true
edt.clickhouse.validation-query=SELECT 1
edt.clickhouse.username=default
edt.clickhouse.password=123
edt.clickhouse.url=jdbc:clickhouse://10.25.19.208:8123/default
edt.clickhouse.driver-class-name=com.clickhouse.jdbc.ClickHouseDriver
edt.clickhouse.type=com.zaxxer.hikari.HikariDataSource

#postgresql
spring.datasource.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.username=postgres
spring.datasource.password=123456
spring.datasource.url=jdbc:postgresql://10.25.19.2:5432/postgres

spring.datasource.hikari.schema=nexus_edt
spring.datasource.hikari.minimum-idle=5
spring.datasource.hikari.max-lifetime=60000
spring.datasource.hikari.idle-timeout=10
spring.datasource.hikari.maximum-pool-size=10
spring.datasource.hikari.connection-timeout=5000
spring.datasource.hikari.connection-test-query=select 1

#redis
spring.redis.host=10.25.19.3
spring.redis.port=6379
spring.redis.password=Apexredis777
spring.redis.database=1


spring.servlet.multipart.enabled=true
spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=100MB
edt.metabase.query.limit.row=1000
edt.kafka.topic.reported-track-event=data_pipeline_nexus_test_event_enum_dim
edt.kafka.topic.option-enum=data_pipeline_nexus_test_option_enum
security.oauth2.client.access-token-uri=http://${GATEWAY_HOST:nexus-midware-gateway}:${GATEWAY_PORT:9999}/auth/oauth/token
security.oauth2.client.client-id=ENC(YHawa2xvHlZ16YmHqCJWQszBuqXY+e+K)
security.oauth2.client.client-secret=ENC(YHawa2xvHlZ16YmHqCJWQszBuqXY+e+K)
security.oauth2.client.scope=server
security.oauth2.client.ignore-urls[0]=/actuator/**
security.oauth2.client.ignore-urls[1]=/v2/api-docs
security.oauth2.client.ignore-urls[2]=/ws/**
security.oauth2.client.ignore-urls[3]=/selected/qrcode/**
security.oauth2.client.ignore-urls[4]=/selected/app/**
security.oauth2.client.ignore-urls[5]=/selected/ws/service/**
security.oauth2.client.resource.loadBalanced=true
security.oauth2.resource.token-info-uri=http://nexus-midware-auth/oauth/check_token
jasypt.encryptor.password=nexus3.0

#event distinct kafka config
nexus.pipeline.kafka.dc.event.distinct.bootstrap-servers=10.25.19.207:9092,10.25.19.208:9092
nexus.pipeline.kafka.dc.event.distinct.source.topic=data_pipeline_event_distinct_release_json
nexus.pipeline.kafka.dc.event.distinct.consumer.group-id=default
nexus.pipeline.kafka.dc.event.distinct.producer.max-poll-records=10000
# latest, earliest, none
nexus.pipeline.kafka.dc.event.distinct.auto-offset-reset=earliest

#mybatis-plus
mybatis-plus.mapper-locations=classpath:mapper/*.xml
mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
mybatis-plus.configuration.map-underscore-to-camel-case=true

nexus-edt-management-service-dev.properties

#测试环境
me.dc.test.product.initialconfig.reportServiceUrl=http://nexus-one.chinapex.com.cn
me.dc.test.product.initialconfig.contactServiceUrl=https://apex-dc-api-dev.chinapex.com.cn
me.dc.test.product.initialconfig.onlineTokenUrl=https://apex-dc-api-dev.chinapex.com.cn
me.dc.test.product.initialconfig.offlineTokenUrl=http://{0}.nexus3-pg-dev.cdp.market/nexus

# 生产环境
me.dc.product.initialconfig.reportServiceUrl=https://nexus-one.chinapex.com.cn
me.dc.product.initialconfig.contactServiceUrl=https://apex-dc-api-dev.chinapex.com.cn
me.dc.product.initialconfig.onlineTokenUrl=https://apex-dc-api-dev.chinapex.com.cn
me.dc.product.initialconfig.offlineTokenUrl=http://{0}.nexus3-pg-dev.cdp.market/nexus
me.dc.product.initialconfig.appSecretUrl=http://{0}.nexus3-pg-dev.cdp.market/nexus

me.dc.api.serverHost=https://nexus-one.chinapex.com.cn
me.dc.api.offlineToken.redirectUrl=https://nexus-one.chinapex.com.cn/edt-api/signature/offline_token
me.dc.api.passwordToken.redirectUrl=https://nexus-one.chinapex.com.cn/edt-api/signature/password_token


#zookeeper
nexus.edt.zookeeper.connect.string=10.25.19.204:2181,10.25.19.205:2181,10.25.19.206:2181
nexus.edt.zookeeper.namespace=edt_event
nexus.edt.zookeeper.session.timeout.ms=60000
nexus.edt.zookeeper.max.close.wait.ms=15000
nexus.edt.zookeeper.base.sleep.time.ms=3000
nexus.edt.zookeeper.max.retries=10

nexus.edt.zookeeper.event.attribute.mapping.path=/event/attribute/mapping
nexus.edt.zookeeper.event.path=/event

sql.limit.len=1000

pgsql edt-management.sql

DROP TABLE if EXISTS "edt_page";
CREATE TABLE "edt_page" (
"id" bigserial,
"dc_page_key" varchar(255) NOT NULL,
"dc_page_name" varchar(255) NOT NULL,
"dc_page_url" varchar(255),
"dc_page_level" int4 NOT NULL,
"dc_page_code" varchar(255) NOT NULL,
"dc_parent_page_code" varchar(255),
"dc_page_rank" int4 NOT NULL,
"product_id" int8 NOT NULL,
"project_id" int8 NOT NULL,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
"biz_workspace_id" int4,
"biz_workspace_name" varchar(255),
CONSTRAINT "edt_page_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_page"."id" IS '主键id';
COMMENT ON COLUMN "edt_page"."dc_page_key" IS '页面id';
COMMENT ON COLUMN "edt_page"."dc_page_name" IS '页面名称';
COMMENT ON COLUMN "edt_page"."dc_page_url" IS '所属页面url';
COMMENT ON COLUMN "edt_page"."dc_page_level" IS '页面层级';
COMMENT ON COLUMN "edt_page"."dc_page_code" IS '页面编码';
COMMENT ON COLUMN "edt_page"."dc_parent_page_code" IS '父页面编码';
COMMENT ON COLUMN "edt_page"."dc_page_rank" IS '排序字段';
COMMENT ON COLUMN "edt_page"."product_id" IS '产品id/终端id';
COMMENT ON COLUMN "edt_page"."project_id" IS '项目id';
COMMENT ON COLUMN "edt_page"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_page"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_page"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_page"."del" IS '删除标识';
COMMENT ON COLUMN "edt_page"."biz_workspace_id" IS '业务体系,空间ID';
COMMENT ON COLUMN "edt_page"."biz_workspace_name" IS '业务体系,空间名称';
COMMENT ON TABLE "edt_page" IS '页面表';


DROP TABLE if EXISTS "edt_product";
CREATE TABLE "edt_product" (
"id" bigserial,
"project_id" int8 NOT NULL,
"app_id" varchar(255) NOT NULL,
"product_name" varchar(50) NOT NULL,
"app_secret" varchar(255),
"platform" int2,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
"terminal_type" int2 NOT NULL,
"biz_workspace_id" int4,
"biz_workspace_name" varchar(255),
CONSTRAINT "edt_product_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_product"."id" IS '产品id/终端id';
COMMENT ON COLUMN "edt_product"."project_id" IS '项目id';
COMMENT ON COLUMN "edt_product"."app_id" IS 'APP ID/终端id(编码)';
COMMENT ON COLUMN "edt_product"."product_name" IS '产品名称/终端名称';
COMMENT ON COLUMN "edt_product"."platform" IS '平台,0.IOS, 1.ANDROID, 2.Web, 3.H5';
COMMENT ON COLUMN "edt_product"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_product"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_product"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_product"."del" IS '删除标识';
COMMENT ON COLUMN "edt_product"."terminal_type" IS '终端类型,1=SDK端,2=业务系统';
COMMENT ON COLUMN "edt_product"."biz_workspace_id" IS '业务体系,空间ID';
COMMENT ON COLUMN "edt_product"."biz_workspace_name" IS '业务体系,空间名称';
COMMENT ON TABLE "edt_product" IS '产品表';

DROP TABLE if EXISTS "edt_product_config";
CREATE TABLE "edt_product_config" (
"id" bigserial,
"app_and_h5_enabled" int2,
"by_realtime_enabled" int2,
"by_rule_enabled" int2,
"contact_service_url" text,
"excluded_attributes_enabled" int2,
"log_enabled" int2,
"max_duration" int4,
"max_item_size" int4,
"offline_token_url" text,
"online_token_url" text,
"report_enabled" int2,
"report_environment" int4 NOT NULL,
"report_service_url" text,
"track_method" int4,
"product_id" int8 NOT NULL,
"enterprise_id" int8,
"create_date" timestamp,
"update_date" timestamp,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_product_config_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_product_config"."app_and_h5_enabled" IS '是否启用APP和H5';
COMMENT ON COLUMN "edt_product_config"."by_realtime_enabled" IS '是否启用实时上报';
COMMENT ON COLUMN "edt_product_config"."by_rule_enabled" IS '启用规则';
COMMENT ON COLUMN "edt_product_config"."contact_service_url" IS '实时触点服务地址';
COMMENT ON COLUMN "edt_product_config"."excluded_attributes_enabled" IS '启用排除的事件属性';
COMMENT ON COLUMN "edt_product_config"."log_enabled" IS '是否启用日志';
COMMENT ON COLUMN "edt_product_config"."max_duration" IS '最大时长';
COMMENT ON COLUMN "edt_product_config"."max_item_size" IS '最大上报条数';
COMMENT ON COLUMN "edt_product_config"."offline_token_url" IS '离线Token地址';
COMMENT ON COLUMN "edt_product_config"."online_token_url" IS '在线Token地址';
COMMENT ON COLUMN "edt_product_config"."report_enabled" IS '是否启用';
COMMENT ON COLUMN "edt_product_config"."report_service_url" IS '上报服务地址';
COMMENT ON COLUMN "edt_product_config"."track_method" IS '上报方式';
COMMENT ON COLUMN "edt_product_config"."product_id" IS '产品ID';
COMMENT ON COLUMN "edt_product_config"."enterprise_id" IS '租户ID';
COMMENT ON COLUMN "edt_product_config"."del" IS '删除标识';
COMMENT ON TABLE "edt_product_config" IS '产品配置表';

DROP TABLE if EXISTS "edt_product_config_event_type";
CREATE TABLE "edt_product_config_event_type" (
"id" bigserial,
"product_id" int8 NOT NULL,
"product_config_id" int8 NOT NULL,
"report_type" int4,
"track_event_type" int4,
"enterprise_id" int8,
"create_date" timestamp,
"update_date" timestamp,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_product_config_event_type_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_product_config_event_type"."product_id" IS '产品ID';
COMMENT ON COLUMN "edt_product_config_event_type"."product_config_id" IS '初始化配置ID';
COMMENT ON COLUMN "edt_product_config_event_type"."report_type" IS '上报类型';
COMMENT ON COLUMN "edt_product_config_event_type"."track_event_type" IS '事件类型';
COMMENT ON COLUMN "edt_product_config_event_type"."enterprise_id" IS '租户ID';
COMMENT ON COLUMN "edt_product_config_event_type"."del" IS '删除标识';
COMMENT ON TABLE "edt_product_config_event_type" IS '产品配置事件表';

DROP TABLE if EXISTS "edt_product_config_not_collected_attribute";
CREATE TABLE "edt_product_config_not_collected_attribute" (
"id" bigserial,
"product_id" int8,
"product_config_id" int8 NOT NULL,
"not_collected_attribute" int4,
"platform" int4 NOT NULL,
"enterprise_id" int8,
"create_date" timestamp,
"update_date" timestamp,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_product_config_not_collected_attribute_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_product_config_not_collected_attribute"."product_id" IS '产品ID';
COMMENT ON COLUMN "edt_product_config_not_collected_attribute"."product_config_id" IS '初始化配置ID';
COMMENT ON COLUMN "edt_product_config_not_collected_attribute"."not_collected_attribute" IS '不收集的属性';
COMMENT ON COLUMN "edt_product_config_not_collected_attribute"."platform" IS '平台类型';
COMMENT ON COLUMN "edt_product_config_not_collected_attribute"."enterprise_id" IS '租户ID';
COMMENT ON COLUMN "edt_product_config_not_collected_attribute"."del" IS '删除标识';
COMMENT ON TABLE "edt_product_config_not_collected_attribute" IS '产品配置非收集属性表';

DROP TABLE if EXISTS "edt_product_version";
CREATE TABLE "edt_product_version" (
"id" bigserial,
"version" varchar(255) NOT NULL,
"product_id" int8 NOT NULL,
"project_id" int8 NOT NULL,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_product_version_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_product_version"."id" IS '主键id';
COMMENT ON COLUMN "edt_product_version"."version" IS '版本号';
COMMENT ON COLUMN "edt_product_version"."product_id" IS '产品id/终端id';
COMMENT ON COLUMN "edt_product_version"."project_id" IS '项目id';
COMMENT ON COLUMN "edt_product_version"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_product_version"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_product_version"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_product_version"."del" IS '删除标识';
COMMENT ON TABLE "edt_product_version" IS '产品版本列表';

DROP TABLE if EXISTS "edt_project";
CREATE TABLE "edt_project" (
"id" bigserial,
"project_name" varchar(255) NOT NULL,
"display_project_id" varchar(255) NOT NULL,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
"biz_workspace_id" int4,
"biz_workspace_name" varchar(255),
PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_project"."id" IS '项目id';
COMMENT ON COLUMN "edt_project"."project_name" IS '项目名称';
COMMENT ON COLUMN "edt_project"."display_project_id" IS '用于展示的项目id,uuid取值,类似于编码,上报时用';
COMMENT ON COLUMN "edt_project"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_project"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_project"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_project"."del" IS '删除标识';
COMMENT ON COLUMN "edt_project"."biz_workspace_id" IS '业务体系,空间ID';
COMMENT ON COLUMN "edt_project"."biz_workspace_name" IS '业务体系,空间名称';
COMMENT ON TABLE "edt_project" IS '项目表';

DROP TABLE if EXISTS "edt_realtime_profile";
CREATE TABLE "edt_realtime_profile" (
"id" bigserial,
"realtime_profile_json" text,
"user_id" int8,
"user_name" varchar(255),
"table_name" varchar(255),
"create_date" timestamp,
"update_date" timestamp,
"enterprise_id" int8,
"del" int2 DEFAULT 0,
CONSTRAINT "edt_realtime_profile_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_realtime_profile"."realtime_profile_json" IS '需要显示的列,json格式,: [{"fieldName":"platform","index":0,"show":true},{"fieldName":"ts","index":1,"show":false}], 如果为空,则表示全部列';
COMMENT ON COLUMN "edt_realtime_profile"."user_id" IS '用户id';
COMMENT ON COLUMN "edt_realtime_profile"."user_name" IS '用户名';
COMMENT ON COLUMN "edt_realtime_profile"."table_name" IS '表名';
COMMENT ON COLUMN "edt_realtime_profile"."del" IS '删除标识';
COMMENT ON TABLE "edt_realtime_profile" IS '用户偏好设置表';

DROP TABLE if EXISTS "edt_track_event";
CREATE TABLE "edt_track_event" (
"id" bigserial,
"project_id" int8 NOT NULL,
"product_id" int8 NOT NULL,
"event_code" varchar(255) NOT NULL,
"raw_event_code" varchar(255),
"event_name" varchar(255) NOT NULL,
"event_display_name" varchar(255),
"track_method" int4,
"event_label" int4,
"event_category" int2,
"master_type" varchar(255),
"relation_attribute_id" int8,
"relation_attribute_code" varchar(255),
"event_type" int4,
"platform" int2,
"report_moment" int4,
"dc_page_key" varchar(255),
"dc_page_name" varchar(255),
"dc_page_code" varchar(255),
"dc_page_url" varchar(255),
"user_id" int8,
"user_name" varchar(255),
"attribute_count" int4,
"reported" int2 NOT NULL DEFAULT 0,
"event_report_enable" int2 NOT NULL DEFAULT 1,
"thirty_expired_count" int4 DEFAULT 0,
"remark" varchar(600),
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
"biz_workspace_id" int4,
"biz_workspace_name" varchar(255),
"create_by_id" int8,
"create_by" varchar(255),
"create_date" timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"update_by_id" int8,
"update_by" varchar(255),
"update_date" timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "edt_track_event_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_track_event"."id" IS '主键id';
COMMENT ON COLUMN "edt_track_event"."project_id" IS '项目id';
COMMENT ON COLUMN "edt_track_event"."product_id" IS '产品id/终端id';
COMMENT ON COLUMN "edt_track_event"."event_code" IS '事件code';
COMMENT ON COLUMN "edt_track_event"."raw_event_code" IS '事件code(原始)';
COMMENT ON COLUMN "edt_track_event"."event_name" IS '事件名称(中文)';
COMMENT ON COLUMN "edt_track_event"."event_display_name" IS '事件展示名称(英文)';
COMMENT ON COLUMN "edt_track_event"."track_method" IS '0=全埋点,1=代码埋点,2=可视化圈选,3=后端接口上报(业务事件),99=未知';
COMMENT ON COLUMN "edt_track_event"."event_label" IS '0=实时触点,1=无';
COMMENT ON COLUMN "edt_track_event"."event_category" IS '事件分类,1=代码埋点事件,2=业务事件,3=预置事件,4=可视化圈选事件';
COMMENT ON COLUMN "edt_track_event"."master_type" IS '主体类型,又叫标识大类:枚举有:USER、GOODS、STORE、ASSE';
COMMENT ON COLUMN "edt_track_event"."relation_attribute_id" IS '关联属性id';
COMMENT ON COLUMN "edt_track_event"."relation_attribute_code" IS '关联属性code';
COMMENT ON COLUMN "edt_track_event"."event_type" IS '事件类型0=click,1=view_page,2=custom,3=cold_start,4=hot_start,5=use_end,99=unknown';
COMMENT ON COLUMN "edt_track_event"."platform" IS '平台,0.IOS, 1.ANDROID, 2.Web, 3.H5,4.Wechat,5.业务系统,99.未知';
COMMENT ON COLUMN "edt_track_event"."report_moment" IS '上报时机';
COMMENT ON COLUMN "edt_track_event"."dc_page_key" IS '页面id';
COMMENT ON COLUMN "edt_track_event"."dc_page_name" IS '页面名称';
COMMENT ON COLUMN "edt_track_event"."dc_page_code" IS '页面编码';
COMMENT ON COLUMN "edt_track_event"."dc_page_url" IS '所属页面url';
COMMENT ON COLUMN "edt_track_event"."user_id" IS '创建人';
COMMENT ON COLUMN "edt_track_event"."user_name" IS '创建人名';
COMMENT ON COLUMN "edt_track_event"."attribute_count" IS '属性个数';
COMMENT ON COLUMN "edt_track_event"."reported" IS '有无上报数据,0=无数据,1=有数据';
COMMENT ON COLUMN "edt_track_event"."event_report_enable" IS '是否接收(上报是否开启),0=不上报,1=上报';
COMMENT ON COLUMN "edt_track_event"."thirty_expired_count" IS '过期30天数据量';
COMMENT ON COLUMN "edt_track_event"."remark" IS '备注';
COMMENT ON COLUMN "edt_track_event"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_track_event"."del" IS '删除标识';
COMMENT ON COLUMN "edt_track_event"."biz_workspace_id" IS '业务体系,空间ID';
COMMENT ON COLUMN "edt_track_event"."biz_workspace_name" IS '业务体系,空间名称';
COMMENT ON COLUMN "edt_track_event"."create_by_id" IS '创建人id';
COMMENT ON COLUMN "edt_track_event"."create_by" IS '创建人';
COMMENT ON COLUMN "edt_track_event"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_track_event"."update_by_id" IS '更新人id';
COMMENT ON COLUMN "edt_track_event"."update_by" IS '更新人';
COMMENT ON COLUMN "edt_track_event"."update_date" IS '更新时间';
COMMENT ON TABLE "edt_track_event" IS '事件表';

DROP TABLE if EXISTS "edt_track_event_attribute";
CREATE TABLE "edt_track_event_attribute" (
"id" bigserial,
"attribute_code" varchar(255) NOT NULL,
"attribute_name" varchar(255) NOT NULL,
"attribute_type" int2 NOT NULL,
"prepared" int2,
"data_type" int2 NOT NULL,
"remark" varchar(600),
"reported" int2 NOT NULL DEFAULT 0,
"master_type" varchar(255),
"relation_master_table_id" int8,
"relation_master_table_name" varchar(255),
"relation_master_table_alias" varchar(255),
"relation_identifier_id" int8,
"relation_identifier_name" varchar(255),
"relation_identifier_alias" varchar(255),
"operate_mode" int2 NOT NULL,
"relation_origin_table_id" int8,
"relation_origin_table_name" varchar(255),
"relation_origin_table_alias" varchar(255),
"relation_origin_table_column_id" int8,
"relation_origin_table_column_name" varchar(255),
"relation_origin_table_column_alias" varchar(255),
"enterprise_id" int8 NOT NULL DEFAULT 1,
"del" int2 NOT NULL DEFAULT 0,
"biz_workspace_id" int4,
"biz_workspace_name" varchar(255),
"is_public" int2 NOT NULL,
"create_by_id" int8,
"create_by" varchar(255),
"create_date" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
"update_by_id" int8,
"update_by" varchar(255),
"update_date" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
"dic_category_id" int8,
"dic_category_code" varchar(255),
"dic_category_name" varchar(255),
"dictionary_id" int8,
"dictionary_name" varchar(255),
"dictionary_alias" varchar(255),
CONSTRAINT "edt_track_event_attribute_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_track_event_attribute"."id" IS '主键id';
COMMENT ON COLUMN "edt_track_event_attribute"."attribute_code" IS '属性编码';
COMMENT ON COLUMN "edt_track_event_attribute"."attribute_name" IS '属性名称';
COMMENT ON COLUMN "edt_track_event_attribute"."attribute_type" IS '属性类型,0=事件属性,1=用户属性';
COMMENT ON COLUMN "edt_track_event_attribute"."prepared" IS '是否预置';
COMMENT ON COLUMN "edt_track_event_attribute"."data_type" IS '数据类型:1:文本、2:整数、3:浮点数,4:日期、5:日期时间';
COMMENT ON COLUMN "edt_track_event_attribute"."remark" IS '备注';
COMMENT ON COLUMN "edt_track_event_attribute"."reported" IS '有无数据,0=否,1=是';
COMMENT ON COLUMN "edt_track_event_attribute"."master_type" IS '主体类型,又叫标识大类:枚举有:USER、GOODS、STORE、ASSET';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_master_table_id" IS '关联唯一标识表id';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_master_table_name" IS '关联唯一标识表名称英文';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_master_table_alias" IS '关联唯一标识表中文名';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_identifier_id" IS '关联唯一标识,-1代表不关联';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_identifier_name" IS '关联唯一标识英文名';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_identifier_alias" IS '关联唯一标识中文名';
COMMENT ON COLUMN "edt_track_event_attribute"."operate_mode" IS '计算方式,1=无数据,2=字典表,3=事件上报枚举表,4=事件上报维表,5=系统值';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_origin_table_id" IS '关联维表表id';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_origin_table_name" IS '关联维表表名,英文';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_origin_table_alias" IS '关联维表表名 ,中文';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_origin_table_column_id" IS '关联维表字段ID';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_origin_table_column_name" IS '关联维表字段名英文';
COMMENT ON COLUMN "edt_track_event_attribute"."relation_origin_table_column_alias" IS '关联维表字段名中文';
COMMENT ON COLUMN "edt_track_event_attribute"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_track_event_attribute"."del" IS '删除标识';
COMMENT ON COLUMN "edt_track_event_attribute"."biz_workspace_id" IS '业务体系,空间ID';
COMMENT ON COLUMN "edt_track_event_attribute"."biz_workspace_name" IS '业务体系,空间名称';
COMMENT ON COLUMN "edt_track_event_attribute"."is_public" IS '是否是公共';
COMMENT ON COLUMN "edt_track_event_attribute"."create_by_id" IS '创建人id';
COMMENT ON COLUMN "edt_track_event_attribute"."create_by" IS '创建人';
COMMENT ON COLUMN "edt_track_event_attribute"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_track_event_attribute"."update_by_id" IS '更新人id';
COMMENT ON COLUMN "edt_track_event_attribute"."update_by" IS '更新人';
COMMENT ON COLUMN "edt_track_event_attribute"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_track_event_attribute"."dic_category_id" IS '字典分类id';
COMMENT ON COLUMN "edt_track_event_attribute"."dic_category_code" IS '字典分类code';
COMMENT ON COLUMN "edt_track_event_attribute"."dic_category_name" IS '字典分类名字';
COMMENT ON COLUMN "edt_track_event_attribute"."dictionary_id" IS '字典ID';
COMMENT ON COLUMN "edt_track_event_attribute"."dictionary_name" IS '字典名称';
COMMENT ON COLUMN "edt_track_event_attribute"."dictionary_alias" IS '字典别名';
COMMENT ON TABLE "edt_track_event_attribute" IS '事件属性表';

DROP TABLE if EXISTS "edt_track_event_extended_attribute";
CREATE TABLE "edt_track_event_extended_attribute" (
"id" bigserial,
"event_id" int8 NOT NULL,
"event_attribute_id" int8 NOT NULL,
"required" int2 NOT NULL DEFAULT 0,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_track_event_extended_attribute_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_track_event_extended_attribute"."id" IS '主键id';
COMMENT ON COLUMN "edt_track_event_extended_attribute"."required" IS '是否必填,0=非必填,1=必填';
COMMENT ON COLUMN "edt_track_event_extended_attribute"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_track_event_extended_attribute"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_track_event_extended_attribute"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_track_event_extended_attribute"."del" IS '删除标识';
COMMENT ON TABLE "edt_track_event_extended_attribute" IS '扩展属性表';

DROP TABLE if EXISTS "edt_event_attribute_common";
CREATE TABLE "edt_event_attribute_common" (
"id" serial,
"platform" int2,
"platform_en" varchar(255),
"attribute_id" int8 NOT NULL,
"attribute_code" varchar(255),
"required" int2 NOT NULL DEFAULT 0,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
"is_privacy_attribute" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_event_attribute_common_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_event_attribute_common"."platform" IS '平台编码';
COMMENT ON COLUMN "edt_event_attribute_common"."platform_en" IS '平台英文名';
COMMENT ON COLUMN "edt_event_attribute_common"."attribute_id" IS '属性id';
COMMENT ON COLUMN "edt_event_attribute_common"."attribute_code" IS '属性code';
COMMENT ON COLUMN "edt_event_attribute_common"."required" IS '是否必填,0=非必填,1=必填';
COMMENT ON COLUMN "edt_event_attribute_common"."is_privacy_attribute" IS '是否是隐私字段,0=不是,1=是';
COMMENT ON COLUMN "edt_event_attribute_common"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_event_attribute_common"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_event_attribute_common"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_event_attribute_common"."del" IS '删除标识';
COMMENT ON TABLE "edt_event_attribute_common" IS '平台公共事件属性';

DROP TABLE if EXISTS "edt_event_attribute_special";
CREATE TABLE "edt_event_attribute_special" (
"id" serial,
"platform" int2,
"platform_en" varchar(255),
"event_type_id" int4 NOT NULL,
"attribute_id" int8 NOT NULL,
"attribute_code" varchar(255),
"required" int2 NOT NULL DEFAULT 0,
"remark" varchar(255),
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_event_attribute_special_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_event_attribute_special"."platform" IS '平台编码';
COMMENT ON COLUMN "edt_event_attribute_special"."platform_en" IS '平台英文名';
COMMENT ON COLUMN "edt_event_attribute_special"."event_type_id" IS '事件类型id';
COMMENT ON COLUMN "edt_event_attribute_special"."attribute_id" IS '属性id';
COMMENT ON COLUMN "edt_event_attribute_special"."attribute_code" IS '属性code';
COMMENT ON COLUMN "edt_event_attribute_special"."required" IS '是否必填,0=非必填,1=必填';
COMMENT ON COLUMN "edt_event_attribute_special"."remark" IS '备注';
COMMENT ON COLUMN "edt_event_attribute_special"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_event_attribute_special"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_event_attribute_special"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_event_attribute_special"."del" IS '删除标识';
COMMENT ON TABLE "edt_event_attribute_special" IS '平台特殊属性';

DROP TABLE if EXISTS "edt_event_type";
CREATE TABLE "edt_event_type" (
"id" serial,
"event_type_name" varchar(255) NOT NULL,
"event_type_name_en" varchar(255) NOT NULL,
"create_date" timestamp NOT NULL,
"update_date" timestamp NOT NULL,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_event_type_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_event_type"."id" IS 'id';
COMMENT ON COLUMN "edt_event_type"."event_type_name" IS '事件类型中文名称';
COMMENT ON COLUMN "edt_event_type"."event_type_name_en" IS '事件类型英文名称';
COMMENT ON COLUMN "edt_event_type"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_event_type"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_event_type"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_event_type"."del" IS '删除标识';

DROP TABLE if EXISTS "edt_platform_event_type";
CREATE TABLE "edt_platform_event_type" (
"id" serial,
"platform" int2,
"platform_en" varchar(255) COLLATE "pg_catalog"."default",
"event_type_id" int4 NOT NULL,
"required" int2 NOT NULL DEFAULT 0,1
"create_date" timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"update_date" timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"enterprise_id" int8 NOT NULL DEFAULT 1,
"del" int2 NOT NULL DEFAULT 0,
"sdk_type" varchar(255),
"remark" varchar(255),
CONSTRAINT "edt_platform_event_type_pkey" PRIMARY KEY ("id")
);

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."platform" IS '平台编码';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."platform_en" IS '平台英文名';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."event_type_id" IS '事件类型id';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."required" IS '是否必填,0=非必填,1=必填';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."create_date" IS '创建时间';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."update_date" IS '更新时间';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."enterprise_id" IS '租户id';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."del" IS '删除标识';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."sdk_type" IS 'sdk类型';

COMMENT ON COLUMN "nexus_edt"."edt_platform_event_type"."remark" IS '备注';

COMMENT ON TABLE "nexus_edt"."edt_platform_event_type" IS '平台事件类型表';

DROP TABLE if EXISTS "edt_black_ip";
CREATE TABLE "edt_black_ip" (
"id" serial,
"ip" varchar(255) NOT NULL,
"enable" int2 NOT NULL,
"create_date" timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"update_date" timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"enterprise_id" int8 NOT NULL DEFAULT 1,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_black_ip_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_black_ip"."id" IS '主键id';
COMMENT ON COLUMN "edt_black_ip"."ip" IS 'ip地址';
COMMENT ON COLUMN "edt_black_ip"."enable" IS '是否开启,0=不开启,1=开启';
COMMENT ON COLUMN "edt_black_ip"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_black_ip"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_black_ip"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_black_ip"."del" IS '删除标识';

DROP TABLE if EXISTS "edt_event_reported_app_version";
CREATE TABLE "edt_event_reported_app_version" (
"id" bigserial,
"event_id" int8 NOT NULL,
"app_version" varchar(255) NOT NULL,
"create_date" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
"update_date" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
"enterprise_id" int8 NOT NULL,
"del" int2 NOT NULL DEFAULT 0,
CONSTRAINT "edt_event_reported_app_version_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_event_reported_app_version"."id" IS '主键id';
COMMENT ON COLUMN "edt_event_reported_app_version"."event_id" IS '事件id';
COMMENT ON COLUMN "edt_event_reported_app_version"."app_version" IS 'app版本';
COMMENT ON COLUMN "edt_event_reported_app_version"."create_date" IS '创建时间';
COMMENT ON COLUMN "edt_event_reported_app_version"."update_date" IS '更新时间';
COMMENT ON COLUMN "edt_event_reported_app_version"."enterprise_id" IS '租户id';
COMMENT ON COLUMN "edt_event_reported_app_version"."del" IS '删除标识';

DROP TABLE if EXISTS "edt_option_administrative_division";
CREATE TABLE "edt_option_administrative_division" (
"id" bigserial,
"country" varchar(50) NOT NULL,
"code" varchar(50) NOT NULL,
"name" varchar(50) NOT NULL,
"province" varchar(50),
"city" varchar(50),
"county" varchar(50),
"depth" int2 DEFAULT 1,
"status" int2,
"create_time" timestamp DEFAULT CURRENT_TIMESTAMP,
"update_time" timestamp DEFAULT CURRENT_TIMESTAMP,
"max" int4,
CONSTRAINT "edt_option_administrative_division_pkey" PRIMARY KEY ("id")
);
COMMENT ON COLUMN "edt_option_administrative_division"."id" IS '主键id';
COMMENT ON COLUMN "edt_option_administrative_division"."country" IS '国家名称';
COMMENT ON COLUMN "edt_option_administrative_division"."code" IS '国家Code';
COMMENT ON COLUMN "edt_option_administrative_division"."name" IS '名称';
COMMENT ON COLUMN "edt_option_administrative_division"."province" IS '省份';
COMMENT ON COLUMN "edt_option_administrative_division"."city" IS '城市';
COMMENT ON COLUMN "edt_option_administrative_division"."county" IS '县区';
COMMENT ON COLUMN "edt_option_administrative_division"."depth" IS '层级';
COMMENT ON COLUMN "edt_option_administrative_division"."status" IS '状态';
COMMENT ON COLUMN "edt_option_administrative_division"."create_time" IS '创建时间';
COMMENT ON COLUMN "edt_option_administrative_division"."update_time" IS '更新时间';

INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (1, 'user_id', '账户id', 1, 1, 1, '登录前为匿名 ID,一般为设备 ID登录后为登录 ID,后续系统用此id来关联唯一用户,设备id+userid', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (2, 'ts', '事件触发时间', 0, 1, 6, '事件的实际发生时间,由SDK记录', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (3, 'Apex_id', '创略唯一ID', 1, 1, 1, '系统赋予的识别用户的唯一id。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (4, 'platform', '上报平台', 0, 1, 1, '事件上报的平台信息,根据后台配置和后台配置的平台相同', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (5, 'message_id', '消息类型编号', 0, 1, 1, '通过ME触发的消息,对应的消息ID', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (6, 'project_id', '项目id', 0, 1, 1, '创建项目的时候,赋予该上报项目项目ID,用于识别唯一项目。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (7, 'app_id', '产品id', 0, 1, 1, '对于产品的唯一id,识别上报的唯一产品', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (8, 'tenant_id', '租户id', 0, 1, 1, '对于租户的唯一标识,不同的租户id,不共享同一张事件表。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (9, 'event_code', '事件唯一代码', 0, 1, 1, '事件唯一的编码,只有用户定义的事件,或代码埋点事件/ 业务事件才有事件编码。用于识别唯一事件。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (10, 'event_name', '事件名称', 0, 1, 1, '事件名称', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (11, 'event_type', '事件类型', 0, 1, 1, '事件所属卡类型,', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (12, 'send_type', '事件上报方式', 0, 1, 1, '实时触点或离线上报(APEX特色)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (13, 'event_code_md5', 'event_code的md5值', 0, 1, 1, '前后端加密用于通信的事件编码', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (14, 'event_duration', '单次使用时长', 0, 1, 6, '使用结束的时候上传,整个使用时长(ms)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 0, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (15, 'browse_time', '事件浏览时长', 0, 1, 2, '浏览事件的时长,仅有浏览类的事件才有', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (16, 'device_id', '设备id', 1, 1, 1, 'Android:AndroidID,iOS:IDFA 广告标识 或 IDFV 应用开发商标识 -- 根据情况判断', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (17, 'device_model', '设备机型', 0, 1, 1, '设备型号', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (18, 'device_brand', '设备品牌', 0, 1, 1, '设备品牌', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (19, 'device_type', '设备类型', 0, 1, 1, '设备类型,pc,mobile 等', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (20, 'device_uuid', '通用唯一识别码', 1, 1, 1, '同 15', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (21, 'carriers', '网络运营商', 0, 1, 1, '手机网络运营商', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (22, 'network_type', '联网络类别', 0, 1, 1, '手机运营商网络类型 3G 4G 5G', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (23, 'android_id', '安卓设备标识-安卓', 1, 1, 1, '安卓标识', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (24, 'imei', '国际移动设备识别码- 安卓', 1, 1, 1, '安卓下载的渠道信息', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (25, 'mac', '设备mac地址', 1, 1, 1, '仅有APP可以获取,一般不是用', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (26, 'user_agent', '浏览器代理(User Agent)', 0, 1, 1, 'UserAgent,服务端解析获取, 客户端不上报。客户端为空。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (27, 'os', '操作系统', 0, 1, 1, '操作系统', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (28, 'idfa', 'iOS设备的广告标识符', 1, 1, 1, '加入到唯一识别中', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (29, 'idfv', '应用开发商标识', 1, 1, 1, '加入到唯一识别中', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (30, 'oaid', '信通院统一的第三方设备标识', 1, 1, 1, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (31, 'latitude', '纬度', 0, 1, 1, '来自于收集经纬度授权,安卓需要手动打开', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (32, 'longitude', '经度', 0, 1, 1, '来自于收集经纬度授权,安卓需要手动打开', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (33, 'wechat_open_id', '微信普通用户的标识', 1, 1, 1, '微信唯一用户标识(对当前开发者帐号唯一,一个openid对应一个公众号)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (34, 'wechat_union_id', '微信用户统一标识', 1, 1, 1, '微信公共用户表示(针对一个微信开放平台帐号下的应用,同一用户的unionid是唯一的)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (35, 'screen_width', '可视窗口的宽度', 0, 1, 3, '可视窗口的宽度,像素', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (36, 'screen_height', '可视窗口的高度', 0, 1, 3, '可视窗口的高度,像素', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (37, 'page_height', '可视窗口中页面的高度', 0, 1, 3, '可视窗口中页面的高度', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (38, 'page_width', '可视窗口中页面的宽度', 0, 1, 3, '可视窗口中页面的宽度', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (39, 'browser_version', '浏览器版本', 0, 1, 1, '浏览器类型,版本,如chrome1.1', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (40, 'session_id', '同一次会话ID', 0, 1, 1, '仅在web端会话中的浏览器sessionid,仅有web端', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (41, 'sdk_version', 'sdk版本号', 0, 1, 1, 'SDK自带版本号信息', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (42, 'sdk_type', 'sdk类型', 0, 1, 1, 'IOS/安卓', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 0, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (43, 'app_version', 'app版本号', 0, 1, 1, 'app的版本号', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (44, 'app_package_id', 'app包名', 0, 1, 1, '来源应用的包名', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (45, 'mini_program_scene', '小程序启动场景', 0, 1, 1, '打开小程序时的场景信息', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (46, 'market_name', 'APP下载渠道', 0, 1, 1, '下载APP 驱动', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (47, 'referrer_url', '站外地址', 0, 1, 1, 'web SDK获取的站外地址,DC独特', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (48, 'referrer_host', '站外域名', 0, 1, 1, '$referrer 中 host 部分', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (49, 'utm_matching_type', '广告渠道追踪匹配模式', 0, 1, 1, '模糊匹配、精准匹配', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (50, 'utm_source', '广告系列来源', 0, 1, 1, '最近一次广告系列来源', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (51, 'utm_medium', '广告系列媒介', 0, 1, 1, '最近一次广告系列媒介', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (52, 'utm_term', '广告系列字词', 0, 1, 1, '最近一次广告系列字词', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (53, 'utm_content', '广告系列内容', 0, 1, 1, '最近一次广告系列内容', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (54, 'utm_campaign', '广告系列名称', 0, 1, 1, '最近一次广告系列名称', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (55, 'ip', 'ip地址', 0, 1, 1, 'Nginx 解析的IP位置', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (56, 'province', '省', 0, 1, 1, '根据 IP 解析', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (57, 'city', '市', 0, 1, 1, '根据 IP 解析', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (58, 'county', '县区', 0, 1, 1, '根据 IP 解析', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (59, 'country', '国家', 0, 1, 1, '根据 IP 解析', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (60, 'page_type', '页面类型', 0, 1, 1, 'APP WEB ANDORID IOS', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (61, 'current_page_id', '当前页面page_id', 0, 1, 1, '用户自己定义的页面id,如:"source_page_id": "productDetail",', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (62, 'current_page_name', '当前页面名称', 0, 1, 1, '用户自定义的页面名称,如: "current_page_name": "商品详情页"', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (63, 'current_page_url', '当前页面完整链接', 0, 1, 1, '当前页面完整链接', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (64, 'time_since_last_operation', '距离上次操作的时间', 0, 1, 3, '距离上次操作的时间', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (65, 'current_page_host', '当前页面主机域名', 0, 1, 1, '域名中的主机域名部分', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (66, 'current_page_query', '当前页面参数', 0, 1, 1, '域名中的参数部分 “?”', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (67, 'current_page_path', '当前页面路径', 0, 1, 1, '例如:"current_page_path": "subpackage/pages/shopping/product/productDetail",', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (68, 'source_page_id', '上级来源页面page_id', 0, 1, 1, '上级页面的id', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (69, 'source_page_name', '来源页面名称', 0, 1, 1, '上级页面的名称', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (70, 'source_page_url', '上级来源页面完整链接', 0, 1, 1, '上级页面的链接', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (71, 'source_page_host', '上级来源页面主机域名', 0, 1, 1, '上级来源页面主机域名', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (72, 'source_page_query', '上级来源页面参数', 0, 1, 1, '上级来源页面参数', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (73, 'source_page_path', '上级来源页面路径', 0, 1, 1, '上级来源页面路径', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (74, 'page_X', '鼠标所处绝对坐标的X值', 0, 1, 1, '用于web端圈选,app端圈选热力图', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (75, 'page_Y', '鼠标所处绝对坐标的Y值', 0, 1, 1, '用于web端圈选,app端圈选热力图', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (76, 'client_X', '鼠标所处相对坐标的X值', 0, 1, 1, '用于web端圈选,app端圈选热力图', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (77, 'client_Y', '鼠标所处相对坐标的Y值', 0, 1, 1, '用于web端圈选,app端圈选热力图', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (78, 'element_id', '元素ID', 0, 1, 1, 'Android:控件 android:id', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (79, 'element_name', '元素名称', 0, 1, 1, '元素名称', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (80, 'element_target_url', '元素链接地址', 0, 1, 1, '元素链接地址', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (81, 'element_type', '元素类型', 0, 1, 1, '控件的类型', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (82, 'element_content', '元素内容', 0, 1, 1, '元素内容', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (83, 'element_selector', '元素选择器', 0, 1, 1, '元素的路径信息App 热力分析使用此属性进行匹配', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (84, 'element_position', '元素位置', 0, 1, 1, '全埋,被点击元素在列表控件内的位置', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (85, 'element_index', '元素所在位置索引', 0, 1, 1, '?', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (86, 'element_tag_name', '元素标签名', 0, 1, 1, '赋予元素的标签名称(人工定义)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (87, 'element_class', '元素样式名', 0, 1, 1, '元素样式名', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (88, 'element_path', '元素路径', 0, 1, 1, '元素链接地址', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (89, 'upload_time', '事件上报时间,接收到埋点事件上报数据的时间', 0, 1, 6, '接收到埋点事件上报数据的时间', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (90, 'write_log_time', '埋点事件数据写入到日志的时间', 0, 1, 2, '埋点事件数据写入到日志的时间', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (91, 'insert_db_time', '埋点事件数据写入到数据库的时间', 0, 1, 2, '埋点事件数据写入到数据库的时间', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (92, 'track_signup_original_id', '关联原始id', 1, 1, 1, '上报关联的原始用户user_ID 用于结合匿名数据', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (93, 'last_visit_time', '未次访问时间', 0, 1, 1, '末次用户访问时间,上报无需体现,系统自动计算。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (94, 'last_visit_time', '未次访问时间', 0, 1, 1, '首次用户访问时间,上报无需体现,系统自动计算。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10.412', 1, 'admin', '2024-01-31 11:24:10.412', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (95, 'is_first_time', '是否首次使用应用', 0, 1, 1, '【新增】在应用启动时,进行判定,后需要后端给到前端响应接口。历史上是否有此id。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-01-31 11:24:10', 1, 'admin', '2024-01-31 11:24:10', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "edt_track_event_attribute" ("id", "attribute_code", "attribute_name", "attribute_type", "prepared", "data_type", "remark", "reported", "master_type", "relation_master_table_id", "relation_master_table_name", "relation_master_table_alias", "relation_identifier_id", "relation_identifier_name", "relation_identifier_alias", "operate_mode", "relation_origin_table_id", "relation_origin_table_name", "relation_origin_table_alias", "relation_origin_table_column_id", "relation_origin_table_column_name", "relation_origin_table_column_alias", "enterprise_id", "del", "biz_workspace_id", "biz_workspace_name", "is_public", "create_by_id", "create_by", "create_date", "update_by_id", "update_by", "update_date", "dic_category_id", "dic_category_code", "dic_category_name", "dictionary_id", "dictionary_name", "dictionary_alias") VALUES (96, 'distinct_id', '去重唯一id', 0, 1, 1, '实时唯—id(distinct_id)1. 小程序匿名唯—id:ip+设备机型+浏览器类型md5。2. 网页匿名唯一id:ip+设备进行+浏览器类型 md5。3.app匿名唯一id:deviceid md。', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, 1, 1, 'admin', '2024-04-03 15:22:04', 1, 'admin', '2024-04-03 15:22:33', NULL, NULL, NULL, NULL, NULL, NULL);

INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (1, 0, 'IOS', 5, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'message_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (2, 0, 'IOS', 6, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'project_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (3, 0, 'IOS', 7, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (4, 0, 'IOS', 8, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'tenant_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (5, 0, 'IOS', 89, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'upload_time', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (6, 0, 'IOS', 3, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'Apex_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (7, 0, 'IOS', 43, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (8, 0, 'IOS', 44, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_package_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (9, 0, 'IOS', 21, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'carriers', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (10, 0, 'IOS', 22, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'network_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (11, 0, 'IOS', 41, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'sdk_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (12, 0, 'IOS', 42, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'sdk_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (13, 0, 'IOS', 43, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (14, 0, 'IOS', 16, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'device_id', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (15, 0, 'IOS', 17, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'device_model', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (16, 0, 'IOS', 18, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'device_brand', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (17, 0, 'IOS', 25, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'mac', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (18, 0, 'IOS', 27, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'os', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (19, 0, 'IOS', 28, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'idfa', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (20, 0, 'IOS', 29, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'idfv', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (21, 0, 'IOS', 30, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'oaid', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (22, 0, 'IOS', 35, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'screen_width', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (23, 0, 'IOS', 36, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'screen_height', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (24, 0, 'IOS', 9, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'event_code', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (25, 0, 'IOS', 10, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'event_name', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (26, 0, 'IOS', 11, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'event_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (27, 0, 'IOS', 12, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'send_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (28, 0, 'IOS', 60, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'page_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (29, 0, 'IOS', 1, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'user_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (30, 0, 'IOS', 55, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'ip', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (31, 0, 'IOS', 56, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'province', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (32, 0, 'IOS', 57, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'city', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (33, 0, 'IOS', 58, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'county', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (34, 0, 'IOS', 59, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'country', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (35, 0, 'IOS', 31, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'latitude', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (36, 0, 'IOS', 32, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'longitude', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (37, 0, 'IOS', 47, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'referrer_url', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (38, 0, 'IOS', 48, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'referrer_host', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (39, 0, 'IOS', 49, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_matching_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (40, 0, 'IOS', 50, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_source', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (41, 0, 'IOS', 51, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_medium', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (42, 0, 'IOS', 52, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_term', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (43, 0, 'IOS', 53, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_content', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (44, 0, 'IOS', 54, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_campaign', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (45, 1, 'ANDRIOD', 5, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'message_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (46, 1, 'ANDRIOD', 6, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'project_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (47, 1, 'ANDRIOD', 7, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (48, 1, 'ANDRIOD', 8, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'tenant_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (49, 1, 'ANDRIOD', 89, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'upload_time', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (50, 1, 'ANDRIOD', 3, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'Apex_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (51, 1, 'ANDRIOD', 43, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (52, 1, 'ANDRIOD', 44, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_package_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (53, 1, 'ANDRIOD', 21, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'carriers', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (54, 1, 'ANDRIOD', 22, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'network_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (55, 1, 'ANDRIOD', 41, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'sdk_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (56, 1, 'ANDRIOD', 43, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (57, 1, 'ANDRIOD', 16, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'device_id', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (58, 1, 'ANDRIOD', 17, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'device_model', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (59, 1, 'ANDRIOD', 18, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'device_brand', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (60, 1, 'ANDRIOD', 23, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'android_id', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (61, 1, 'ANDRIOD', 24, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'imei', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (62, 1, 'ANDRIOD', 25, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'mac', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (63, 1, 'ANDRIOD', 27, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'os', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (64, 1, 'ANDRIOD', 30, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'oaid', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (65, 1, 'ANDRIOD', 35, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'screen_width', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (66, 1, 'ANDRIOD', 36, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'screen_height', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (67, 1, 'ANDRIOD', 9, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'event_code', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (68, 1, 'ANDRIOD', 10, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'event_name', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (69, 1, 'ANDRIOD', 11, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'event_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (70, 1, 'ANDRIOD', 12, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'send_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (71, 1, 'ANDRIOD', 60, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'page_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (72, 1, 'ANDRIOD', 1, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'user_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (73, 1, 'ANDRIOD', 55, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'ip', 1);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (74, 1, 'ANDRIOD', 56, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'province', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (75, 1, 'ANDRIOD', 57, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'city', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (76, 1, 'ANDRIOD', 58, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'county', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (77, 1, 'ANDRIOD', 59, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'country', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (78, 1, 'ANDRIOD', 31, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'latitude', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (79, 1, 'ANDRIOD', 32, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'longitude', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (80, 1, 'ANDRIOD', 47, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'referrer_url', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (81, 1, 'ANDRIOD', 48, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'referrer_host', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (82, 1, 'ANDRIOD', 49, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_matching_type', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (83, 1, 'ANDRIOD', 50, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_source', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (84, 1, 'ANDRIOD', 51, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_medium', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (85, 1, 'ANDRIOD', 52, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_term', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (86, 1, 'ANDRIOD', 53, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_content', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (87, 1, 'ANDRIOD', 54, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'utm_campaign', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (88, 3, 'WEB', 5, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'message_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (89, 3, 'WEB', 6, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'project_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (90, 3, 'WEB', 7, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'app_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (91, 3, 'WEB', 8, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'tenant_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (92, 3, 'WEB', 89, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'upload_time', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (93, 3, 'WEB', 3, 1, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'Apex_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (94, 3, 'WEB', 40, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'session_id', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (95, 3, 'WEB', 41, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'sdk_version', 0);
INSERT INTO "edt_event_attribute_common" ("id", "platform", "platform_en", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "is_privacy_attribute") VALUES (96, 3, 'WEB', 42, 0, '0001-01-01 00:00:00', '2024-03-01 15:22:47.771907', 1, 0, 'sdk_type', 0);


INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (1, 0, 'IOS', 3, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (2, 0, 'IOS', 3, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (3, 0, 'IOS', 3, 95, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'is_first_time', '表示是否是首次启动 App,可参考文档新增用户及首日首次标记,历史上没有此字段需要加上。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (4, 0, 'IOS', 4, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (5, 0, 'IOS', 4, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (6, 0, 'IOS', 5, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (7, 0, 'IOS', 5, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (8, 0, 'IOS', 5, 14, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'event_duration', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (9, 0, 'IOS', 1, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (10, 0, 'IOS', 1, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (11, 0, 'IOS', 1, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (12, 0, 'IOS', 1, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (13, 0, 'IOS', 1, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (14, 0, 'IOS', 1, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (15, 0, 'IOS', 1, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (16, 0, 'IOS', 1, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (17, 0, 'IOS', 1, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (18, 0, 'IOS', 1, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (19, 0, 'IOS', 1, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (20, 0, 'IOS', 1, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (21, 0, 'IOS', 1, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (22, 0, 'IOS', 1, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (23, 0, 'IOS', 1, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (24, 0, 'IOS', 0, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (25, 0, 'IOS', 0, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (26, 0, 'IOS', 0, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (27, 0, 'IOS', 0, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (28, 0, 'IOS', 0, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (29, 0, 'IOS', 0, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (30, 0, 'IOS', 0, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (31, 0, 'IOS', 0, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (32, 0, 'IOS', 0, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (33, 0, 'IOS', 0, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (34, 0, 'IOS', 0, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (35, 0, 'IOS', 0, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (36, 0, 'IOS', 0, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (37, 0, 'IOS', 0, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (38, 0, 'IOS', 0, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (39, 0, 'IOS', 0, 74, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (40, 0, 'IOS', 0, 75, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (41, 0, 'IOS', 0, 76, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (42, 0, 'IOS', 0, 77, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (43, 0, 'IOS', 0, 78, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_id', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (44, 0, 'IOS', 0, 79, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_name', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (45, 0, 'IOS', 0, 80, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_target_url', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (46, 0, 'IOS', 0, 81, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_type', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (47, 0, 'IOS', 0, 82, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_content', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (48, 0, 'IOS', 0, 83, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_selector', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (49, 0, 'IOS', 0, 84, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_position', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (50, 0, 'IOS', 0, 85, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_index', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (51, 0, 'IOS', 0, 86, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_tag_name', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (52, 0, 'IOS', 0, 87, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_class', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (53, 0, 'IOS', 0, 88, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_path', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (54, 0, 'IOS', 2, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (55, 0, 'IOS', 2, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (56, 0, 'IOS', 2, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (57, 0, 'IOS', 2, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (58, 0, 'IOS', 2, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (59, 0, 'IOS', 2, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (60, 0, 'IOS', 2, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (61, 0, 'IOS', 2, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (62, 0, 'IOS', 2, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (63, 0, 'IOS', 2, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (64, 0, 'IOS', 2, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (65, 0, 'IOS', 2, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (66, 0, 'IOS', 2, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (67, 0, 'IOS', 2, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (68, 0, 'IOS', 2, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (69, 1, 'ANDROID', 3, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (70, 1, 'ANDROID', 3, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (71, 1, 'ANDROID', 3, 95, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'is_first_time', '表示是否是首次启动 App,可参考文档新增用户及首日首次标记,历史上没有此字段需要加上。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (72, 1, 'ANDROID', 4, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (73, 1, 'ANDROID', 4, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (74, 1, 'ANDROID', 5, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (75, 1, 'ANDROID', 5, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (76, 1, 'ANDROID', 5, 14, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'event_duration', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (77, 1, 'ANDROID', 1, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (78, 1, 'ANDROID', 1, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (79, 1, 'ANDROID', 1, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (80, 1, 'ANDROID', 1, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (81, 1, 'ANDROID', 1, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (82, 1, 'ANDROID', 1, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (83, 1, 'ANDROID', 1, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (84, 1, 'ANDROID', 1, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (85, 1, 'ANDROID', 1, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (86, 1, 'ANDROID', 1, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (87, 1, 'ANDROID', 1, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (88, 1, 'ANDROID', 1, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (89, 1, 'ANDROID', 1, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (90, 1, 'ANDROID', 1, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (91, 1, 'ANDROID', 1, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (92, 1, 'ANDROID', 0, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (93, 1, 'ANDROID', 0, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (94, 1, 'ANDROID', 0, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (95, 1, 'ANDROID', 0, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (96, 1, 'ANDROID', 0, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (97, 1, 'ANDROID', 0, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (98, 1, 'ANDROID', 0, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (99, 1, 'ANDROID', 0, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (100, 1, 'ANDROID', 0, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (101, 1, 'ANDROID', 0, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (102, 1, 'ANDROID', 0, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (103, 1, 'ANDROID', 0, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (104, 1, 'ANDROID', 0, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (105, 1, 'ANDROID', 0, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (106, 1, 'ANDROID', 0, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (107, 1, 'ANDROID', 0, 74, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (108, 1, 'ANDROID', 0, 75, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (109, 1, 'ANDROID', 0, 76, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (110, 1, 'ANDROID', 0, 77, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (111, 1, 'ANDROID', 0, 78, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (112, 1, 'ANDROID', 0, 79, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (113, 1, 'ANDROID', 0, 80, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (114, 1, 'ANDROID', 0, 81, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (115, 1, 'ANDROID', 0, 82, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (116, 1, 'ANDROID', 0, 83, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (117, 1, 'ANDROID', 0, 84, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (118, 1, 'ANDROID', 0, 85, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (119, 1, 'ANDROID', 0, 86, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (120, 1, 'ANDROID', 0, 87, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (121, 1, 'ANDROID', 0, 88, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (122, 1, 'ANDROID', 2, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (123, 1, 'ANDROID', 2, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (124, 1, 'ANDROID', 2, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (125, 1, 'ANDROID', 2, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (126, 1, 'ANDROID', 2, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (127, 1, 'ANDROID', 2, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (128, 1, 'ANDROID', 2, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (129, 1, 'ANDROID', 2, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (130, 1, 'ANDROID', 2, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (131, 1, 'ANDROID', 2, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (132, 1, 'ANDROID', 2, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (133, 1, 'ANDROID', 2, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (134, 1, 'ANDROID', 2, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (135, 1, 'ANDROID', 2, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (136, 1, 'ANDROID', 2, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (137, 2, 'WEB', 1, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (138, 2, 'WEB', 1, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (139, 2, 'WEB', 1, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (140, 2, 'WEB', 1, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (141, 2, 'WEB', 1, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (142, 2, 'WEB', 1, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (143, 2, 'WEB', 1, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (144, 2, 'WEB', 1, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (145, 2, 'WEB', 1, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (146, 2, 'WEB', 1, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (147, 2, 'WEB', 1, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (148, 2, 'WEB', 1, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (149, 2, 'WEB', 1, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (150, 2, 'WEB', 1, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (151, 2, 'WEB', 1, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (152, 2, 'WEB', 0, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (153, 2, 'WEB', 0, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (154, 2, 'WEB', 0, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (155, 2, 'WEB', 0, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (156, 2, 'WEB', 0, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (157, 2, 'WEB', 0, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (158, 2, 'WEB', 0, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (159, 2, 'WEB', 0, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (160, 2, 'WEB', 0, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (161, 2, 'WEB', 0, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (162, 2, 'WEB', 0, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (163, 2, 'WEB', 0, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (164, 2, 'WEB', 0, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (165, 2, 'WEB', 0, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (166, 2, 'WEB', 0, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (167, 2, 'WEB', 0, 74, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (168, 2, 'WEB', 0, 75, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (169, 2, 'WEB', 0, 76, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (170, 2, 'WEB', 0, 77, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (171, 2, 'WEB', 0, 78, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (172, 2, 'WEB', 0, 79, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (173, 2, 'WEB', 0, 80, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (174, 2, 'WEB', 0, 81, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (175, 2, 'WEB', 0, 82, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (176, 2, 'WEB', 0, 83, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (177, 2, 'WEB', 0, 84, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (178, 2, 'WEB', 0, 85, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (179, 2, 'WEB', 0, 86, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (180, 2, 'WEB', 0, 87, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (181, 2, 'WEB', 0, 88, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (182, 2, 'WEB', 2, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (183, 2, 'WEB', 2, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (184, 2, 'WEB', 2, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (185, 2, 'WEB', 2, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (186, 2, 'WEB', 2, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (187, 2, 'WEB', 2, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (188, 2, 'WEB', 2, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (189, 2, 'WEB', 2, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (190, 2, 'WEB', 2, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (191, 2, 'WEB', 2, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (192, 2, 'WEB', 2, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (193, 2, 'WEB', 2, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (194, 2, 'WEB', 2, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (195, 2, 'WEB', 2, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (196, 2, 'WEB', 2, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (197, 4, 'wechat', 3, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_id', '小程序实际上只有启动');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (198, 4, 'wechat', 3, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'current_page_name', '小程序实际上只有启动');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (199, 4, 'wechat', 3, 95, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'is_first_time', '小程序实际上只有启动');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (200, 4, 'wechat', 3, 45, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.664362', 1, 0, 'mini_program_scene', '小程序实际上只有启动,后续SKD统一改为启动');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (201, 4, 'wechat', 5, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (202, 4, 'wechat', 5, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (203, 4, 'wechat', 5, 14, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'event_duration', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (204, 4, 'wechat', 1, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (205, 4, 'wechat', 1, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (206, 4, 'wechat', 1, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (207, 4, 'wechat', 1, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (208, 4, 'wechat', 1, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (209, 4, 'wechat', 1, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (210, 4, 'wechat', 1, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (211, 4, 'wechat', 1, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (212, 4, 'wechat', 1, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (213, 4, 'wechat', 1, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (214, 4, 'wechat', 1, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (215, 4, 'wechat', 1, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (216, 4, 'wechat', 1, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (217, 4, 'wechat', 1, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (218, 4, 'wechat', 1, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (219, 4, 'wechat', 0, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (220, 4, 'wechat', 0, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (221, 4, 'wechat', 0, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (222, 4, 'wechat', 0, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (223, 4, 'wechat', 0, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (224, 4, 'wechat', 0, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (225, 4, 'wechat', 0, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (226, 4, 'wechat', 0, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (227, 4, 'wechat', 0, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (228, 4, 'wechat', 0, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (229, 4, 'wechat', 0, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (230, 4, 'wechat', 0, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (231, 4, 'wechat', 0, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (232, 4, 'wechat', 0, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (233, 4, 'wechat', 0, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (234, 4, 'wechat', 0, 74, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (235, 4, 'wechat', 0, 75, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (236, 4, 'wechat', 0, 76, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (237, 4, 'wechat', 0, 77, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (238, 4, 'wechat', 0, 78, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (239, 4, 'wechat', 0, 79, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (240, 4, 'wechat', 0, 80, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (241, 4, 'wechat', 0, 81, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (242, 4, 'wechat', 0, 82, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (243, 4, 'wechat', 0, 83, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (244, 4, 'wechat', 0, 84, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (245, 4, 'wechat', 0, 85, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (246, 4, 'wechat', 0, 86, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (247, 4, 'wechat', 0, 87, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (248, 4, 'wechat', 0, 88, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (249, 4, 'wechat', 2, 61, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (250, 4, 'wechat', 2, 62, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (251, 4, 'wechat', 2, 63, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (252, 4, 'wechat', 2, 64, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (253, 4, 'wechat', 2, 65, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (254, 4, 'wechat', 2, 66, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (255, 4, 'wechat', 2, 67, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (256, 4, 'wechat', 2, 68, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (257, 4, 'wechat', 2, 69, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (258, 4, 'wechat', 2, 70, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (259, 4, 'wechat', 2, 71, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (260, 4, 'wechat', 2, 72, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (261, 4, 'wechat', 2, 73, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (262, 4, 'wechat', 2, 37, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (263, 4, 'wechat', 2, 38, 0, '0001-01-01 00:00:00', '2024-03-01 15:36:12.687265', 1, 0, 'page_width', NULL);

INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (264, 0, 'IOS', 8, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (265, 1, 'ANDROID', 8, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (266, 1, 'ANDROID', 8, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (267, 1, 'ANDROID', 8, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (268, 2, 'WEB', 8, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (269, 2, 'WEB', 8, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (270, 4, 'wechat', 8, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (271, 4, 'wechat', 8, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (272, 4, 'wechat', 8, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (273, 0, 'IOS', 8, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (274, 0, 'IOS', 8, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (275, 0, 'IOS', 8, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (276, 0, 'IOS', 8, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (277, 0, 'IOS', 8, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (278, 0, 'IOS', 8, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (279, 0, 'IOS', 8, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (280, 0, 'IOS', 8, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (281, 0, 'IOS', 8, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (282, 0, 'IOS', 8, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (283, 0, 'IOS', 8, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (284, 0, 'IOS', 8, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (285, 0, 'IOS', 8, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (286, 0, 'IOS', 8, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (287, 0, 'IOS', 8, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (288, 0, 'IOS', 8, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (289, 0, 'IOS', 8, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (290, 0, 'IOS', 8, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (291, 0, 'IOS', 8, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_id', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (292, 0, 'IOS', 8, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_name', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (293, 0, 'IOS', 8, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_target_url', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (294, 0, 'IOS', 8, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_type', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (295, 0, 'IOS', 8, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_content', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (296, 0, 'IOS', 8, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_selector', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (297, 0, 'IOS', 8, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_position', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (298, 0, 'IOS', 8, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_index', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (299, 0, 'IOS', 8, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_tag_name', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (300, 0, 'IOS', 8, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_class', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (301, 0, 'IOS', 8, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_path', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (302, 1, 'ANDROID', 8, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (303, 1, 'ANDROID', 8, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (304, 1, 'ANDROID', 8, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (305, 1, 'ANDROID', 8, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (306, 1, 'ANDROID', 8, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (307, 1, 'ANDROID', 8, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (308, 1, 'ANDROID', 8, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (309, 1, 'ANDROID', 8, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (310, 1, 'ANDROID', 8, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (311, 1, 'ANDROID', 8, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (312, 1, 'ANDROID', 8, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (313, 1, 'ANDROID', 8, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (314, 1, 'ANDROID', 8, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (315, 1, 'ANDROID', 8, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (316, 1, 'ANDROID', 8, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (317, 1, 'ANDROID', 8, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (318, 1, 'ANDROID', 8, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (319, 1, 'ANDROID', 8, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (320, 1, 'ANDROID', 8, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (321, 1, 'ANDROID', 8, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (322, 1, 'ANDROID', 8, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (323, 1, 'ANDROID', 8, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (324, 1, 'ANDROID', 8, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (325, 1, 'ANDROID', 8, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (326, 1, 'ANDROID', 8, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (327, 1, 'ANDROID', 8, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (328, 1, 'ANDROID', 8, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (329, 2, 'WEB', 8, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (330, 2, 'WEB', 8, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (331, 2, 'WEB', 8, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (332, 2, 'WEB', 8, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (333, 2, 'WEB', 8, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (334, 2, 'WEB', 8, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (335, 2, 'WEB', 8, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (336, 2, 'WEB', 8, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (337, 2, 'WEB', 8, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (338, 2, 'WEB', 8, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (339, 2, 'WEB', 8, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (340, 2, 'WEB', 8, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (341, 2, 'WEB', 8, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (342, 2, 'WEB', 8, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (343, 2, 'WEB', 8, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (344, 2, 'WEB', 8, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (345, 2, 'WEB', 8, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (346, 2, 'WEB', 8, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (347, 2, 'WEB', 8, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (348, 2, 'WEB', 8, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (349, 2, 'WEB', 8, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (350, 2, 'WEB', 8, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (351, 2, 'WEB', 8, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (352, 2, 'WEB', 8, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (353, 2, 'WEB', 8, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (354, 2, 'WEB', 8, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (355, 2, 'WEB', 8, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (356, 2, 'WEB', 8, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (357, 4, 'wechat', 8, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (358, 4, 'wechat', 8, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (359, 4, 'wechat', 8, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (360, 4, 'wechat', 8, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (361, 4, 'wechat', 8, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (362, 4, 'wechat', 8, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (363, 4, 'wechat', 8, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (364, 4, 'wechat', 8, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (365, 4, 'wechat', 8, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (366, 4, 'wechat', 8, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (367, 4, 'wechat', 8, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (368, 4, 'wechat', 8, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (369, 4, 'wechat', 8, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (370, 4, 'wechat', 8, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (371, 4, 'wechat', 8, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (372, 4, 'wechat', 8, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (373, 4, 'wechat', 8, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (374, 4, 'wechat', 8, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (375, 4, 'wechat', 8, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (376, 4, 'wechat', 8, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (377, 4, 'wechat', 8, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (378, 4, 'wechat', 8, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (379, 4, 'wechat', 8, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (380, 4, 'wechat', 8, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (381, 4, 'wechat', 8, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (382, 4, 'wechat', 8, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (383, 4, 'wechat', 8, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (384, 0, 'IOS', 9, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (385, 1, 'ANDROID', 9, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (386, 1, 'ANDROID', 9, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (387, 1, 'ANDROID', 9, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (388, 2, 'WEB', 9, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (389, 2, 'WEB', 9, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (390, 4, 'wechat', 9, 62, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_name', 'Activity 的包名.类名(Android 端) / ViewController 的类名(iOS 端);可手动设置该属性的值');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (391, 4, 'wechat', 9, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (392, 4, 'wechat', 9, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_content', '控件代码内设置的元素内容,如果一个控件中没有设置元素内容,或者控件类型为图片,则该属性采集不到值,在神策事件分析页面展示为 「未知」。因此如果发现某个按钮的内容采集不到值,需要和客户的研发同学确认下这个按钮控件的类型,以及是否有在代码中设置元素内容。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (393, 0, 'IOS', 9, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (394, 0, 'IOS', 9, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (395, 0, 'IOS', 9, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (396, 0, 'IOS', 9, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (397, 0, 'IOS', 9, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (398, 0, 'IOS', 9, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (399, 0, 'IOS', 9, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (400, 0, 'IOS', 9, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (401, 0, 'IOS', 9, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (402, 0, 'IOS', 9, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (403, 0, 'IOS', 9, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (404, 0, 'IOS', 9, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (405, 0, 'IOS', 9, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (406, 0, 'IOS', 9, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (407, 0, 'IOS', 9, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (408, 0, 'IOS', 9, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (409, 0, 'IOS', 9, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (410, 0, 'IOS', 9, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (411, 0, 'IOS', 9, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_id', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (412, 0, 'IOS', 9, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_name', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (413, 0, 'IOS', 9, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_target_url', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (414, 0, 'IOS', 9, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_type', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (415, 0, 'IOS', 9, 82, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_content', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (416, 0, 'IOS', 9, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_selector', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (417, 0, 'IOS', 9, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_position', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (418, 0, 'IOS', 9, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_index', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (419, 0, 'IOS', 9, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_tag_name', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (420, 0, 'IOS', 9, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_class', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (421, 0, 'IOS', 9, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_path', 'IOS元素信息,需要和H5打通');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (422, 1, 'ANDROID', 9, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (423, 1, 'ANDROID', 9, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (424, 1, 'ANDROID', 9, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (425, 1, 'ANDROID', 9, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (426, 1, 'ANDROID', 9, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (427, 1, 'ANDROID', 9, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (428, 1, 'ANDROID', 9, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (429, 1, 'ANDROID', 9, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (430, 1, 'ANDROID', 9, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (431, 1, 'ANDROID', 9, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (432, 1, 'ANDROID', 9, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (433, 1, 'ANDROID', 9, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (434, 1, 'ANDROID', 9, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (435, 1, 'ANDROID', 9, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (436, 1, 'ANDROID', 9, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (437, 1, 'ANDROID', 9, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (438, 1, 'ANDROID', 9, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (439, 1, 'ANDROID', 9, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (440, 1, 'ANDROID', 9, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (441, 1, 'ANDROID', 9, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (442, 1, 'ANDROID', 9, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (443, 1, 'ANDROID', 9, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (444, 1, 'ANDROID', 9, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (445, 1, 'ANDROID', 9, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (446, 1, 'ANDROID', 9, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (447, 1, 'ANDROID', 9, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (448, 1, 'ANDROID', 9, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (449, 2, 'WEB', 9, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (450, 2, 'WEB', 9, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (451, 2, 'WEB', 9, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (452, 2, 'WEB', 9, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (453, 2, 'WEB', 9, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (454, 2, 'WEB', 9, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (455, 2, 'WEB', 9, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (456, 2, 'WEB', 9, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (457, 2, 'WEB', 9, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (458, 2, 'WEB', 9, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (459, 2, 'WEB', 9, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (460, 2, 'WEB', 9, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (461, 2, 'WEB', 9, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (462, 2, 'WEB', 9, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (463, 2, 'WEB', 9, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (464, 2, 'WEB', 9, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (465, 2, 'WEB', 9, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (466, 2, 'WEB', 9, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (467, 2, 'WEB', 9, 78, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_id', 'Android 端默认会获取;iOS 端每个控件一般不会设置 ID,因此 iOS 端默认会不获取。可手动设置');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (468, 2, 'WEB', 9, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (469, 2, 'WEB', 9, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (470, 2, 'WEB', 9, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (471, 2, 'WEB', 9, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (472, 2, 'WEB', 9, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (473, 2, 'WEB', 9, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (474, 2, 'WEB', 9, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (475, 2, 'WEB', 9, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (476, 2, 'WEB', 9, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.664362', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (477, 4, 'wechat', 9, 61, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (478, 4, 'wechat', 9, 63, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_url', '自动采集的版本 Android:3.2.8,iOS:1.11.5');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (479, 4, 'wechat', 9, 64, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'time_since_last_operation', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (480, 4, 'wechat', 9, 65, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (481, 4, 'wechat', 9, 66, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (482, 4, 'wechat', 9, 67, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'current_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (483, 4, 'wechat', 9, 68, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_id', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (484, 4, 'wechat', 9, 69, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (485, 4, 'wechat', 9, 70, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (486, 4, 'wechat', 9, 71, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_host', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (487, 4, 'wechat', 9, 72, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_query', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (488, 4, 'wechat', 9, 73, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'source_page_path', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (489, 4, 'wechat', 9, 37, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_height', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (490, 4, 'wechat', 9, 38, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_width', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (491, 4, 'wechat', 9, 74, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (492, 4, 'wechat', 9, 75, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'page_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (493, 4, 'wechat', 9, 76, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'client_X', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (494, 4, 'wechat', 9, 77, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'client_Y', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (495, 4, 'wechat', 9, 79, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (496, 4, 'wechat', 9, 80, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_target_url', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (497, 4, 'wechat', 9, 81, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_type', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (498, 4, 'wechat', 9, 83, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_selector', '该属性主要记录一个按钮在 APP 中的位置,神策的 App 点击图展示时会使用到此属性,业务人员无需关注此属性的取值逻辑。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (499, 4, 'wechat', 9, 84, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_position', '元素在模块中的位置,从 0 开始。只有特殊控件下,该属性才会采集到值(比如 iOS 端的 UITableView 和 UICollectionView 等,Android 端的 ListView 等。对于采集不到该属性值的控件,该属性值在神策分析页面展示为「未知」。');
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (500, 4, 'wechat', 9, 85, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_index', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (501, 4, 'wechat', 9, 86, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_tag_name', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (502, 4, 'wechat', 9, 87, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_class', NULL);
INSERT INTO "edt_event_attribute_special" ("id", "platform", "platform_en", "event_type_id", "attribute_id", "required", "create_date", "update_date", "enterprise_id", "del", "attribute_code", "remark") VALUES (503, 4, 'wechat', 9, 88, 0, '0001-01-01 15:36:12.664362', '0001-01-01 15:36:12.687265', 1, 0, 'element_path', '可视化全埋点功能会采集该属性的值,需要手动代码开启');



INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (0, '点击', 'click', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (1, '浏览', 'view_page', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (2, '自定义', 'custom', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (3, '冷启动', 'cold_start', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (4, '热启动', 'host_start', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (5, '使用结束', 'use_end', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (6, '业务事件', 'business_event', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (7, '微信事件', 'wx_event', '2024-03-01 16:08:04.865296', '2024-03-01 16:08:04.865296', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (8, '登录', 'login', '2024-04-19 10:43:09', '2024-04-19 10:43:11', 1, 0);
INSERT INTO "edt_event_type" ("id", "event_type_name", "event_type_name_en", "create_date", "update_date", "enterprise_id", "del") VALUES (9, '登出', 'logout', '2024-04-19 10:43:30', '2024-04-19 10:43:32', 1, 0);

INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (1, 0, 'IOS', 3, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '从关闭APP时候开启,通常有开启相关信息');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (2, 0, 'IOS', 4, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '热启动,当用户未关闭app时候,再次开启');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (3, 0, 'IOS', 5, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '结束使用事件,app 和小程序特有');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (4, 0, 'IOS', 1, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '浏览事件,带着浏览页面相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (5, 0, 'IOS', 0, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (6, 0, 'IOS', 2, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '自定义事件,可以在上报自行定义');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (7, 1, 'ANDROID', 3, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '从关闭小程序时候开启,通常有开启相关信息');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (8, 1, 'ANDROID', 4, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '热启动,当用户未关闭app时候,再次开启');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (9, 1, 'ANDROID', 5, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '结束使用事件,app 和小程序特有');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (10, 1, 'ANDROID', 1, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '浏览事件,带着浏览页面相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (11, 1, 'ANDROID', 0, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (12, 1, 'ANDROID', 2, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '自定义事件,可以在上报自行定义');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (13, 2, 'Web', 1, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '浏览事件,带着浏览页面相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (14, 2, 'Web', 0, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (15, 2, 'Web', 2, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '自定义事件,可以在上报自行定义');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (16, 4, 'Wechat', 3, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '启动,小程序不能区分冷热启动,所有的启动均为一样');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (17, 4, 'Wechat', 5, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '结束使用,退出小程序');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (18, 4, 'Wechat', 1, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '浏览事件,带着浏览页面相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (19, 4, 'Wechat', 0, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (20, 4, 'Wechat', 2, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '小程序上自定义事件');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (21, 5, 'BusinessSystem', 6, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '接口上报', '接口上报的业务事件,除了最基础的上报信息外,其他均为自定义的业务事件区分来源平台,不区分平台类型,因为都是后端埋点 ( 之前没有这个序号)');

INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (22, 0, 'IOS', 8, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (23, 1, 'ANDROID', 8, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (24, 2, 'Web', 8, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (25, 4, 'Wechat', 8, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');

INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (26, 0, 'IOS', 9, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, 'APP', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (27, 1, 'ANDROID', 9, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (28, 2, 'Web', 9, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');
INSERT INTO "edt_platform_event_type" ("id", "platform", "platform_en", "event_type_id", "create_date", "update_date", "enterprise_id", "del", "sdk_type", "remark") VALUES (29, 4, 'Wechat', 9, '2024-03-06 16:09:02.127484', '2024-03-06 16:09:02.127484', 1, 0, '前端埋点', '点击事件,除了浏览外,带着点击相关参数');



/*
ALTER TABLE "edt_page" ADD CONSTRAINT "fk_page_app_id" FOREIGN KEY ("project_id") REFERENCES "edt_product" ("id");
ALTER TABLE "edt_product" ADD CONSTRAINT "fk_app_project_id" FOREIGN KEY ("project_id") REFERENCES "edt_project" ("project_id");
ALTER TABLE "edt_product_config" ADD CONSTRAINT "fk_config_product_id" FOREIGN KEY ("product_id") REFERENCES "edt_product" ("id");
ALTER TABLE "edt_product_config_event_type" ADD CONSTRAINT "fk_cet_product_id" FOREIGN KEY ("product_id") REFERENCES "edt_product" ("id");
ALTER TABLE "edt_product_config_event_type" ADD CONSTRAINT "fk_cet_product_config_id" FOREIGN KEY ("product_config_id") REFERENCES "edt_product_config" ("id");
ALTER TABLE "edt_product_config_not_collected_attribute" ADD CONSTRAINT "fk_pcnca_product_id" FOREIGN KEY ("product_id") REFERENCES "edt_product" ("id");
ALTER TABLE "edt_product_config_not_collected_attribute" ADD CONSTRAINT "fk_pcnca_product_config_id" FOREIGN KEY ("product_config_id") REFERENCES "edt_product_config" ("id");
ALTER TABLE "edt_product_version" ADD CONSTRAINT "fk_version_app_id" FOREIGN KEY ("product_id") REFERENCES "edt_product" ("id");
ALTER TABLE "edt_product_version" ADD CONSTRAINT "fk_version_project_id" FOREIGN KEY ("project_id") REFERENCES "edt_project" ("project_id");
ALTER TABLE "edt_track_event" ADD CONSTRAINT "dc_event_project_id" FOREIGN KEY ("project_id") REFERENCES "edt_project" ("id");
ALTER TABLE "edt_track_event" ADD CONSTRAINT "dc_event_product_id" FOREIGN KEY ("product_id") REFERENCES "edt_product" ("id");
ALTER TABLE "edt_track_event_extended_attribute" ADD CONSTRAINT "fk_field_event_id" FOREIGN KEY ("event_id") REFERENCES "edt_track_event" ("id");
ALTER TABLE "edt_track_event_extended_attribute" ADD CONSTRAINT "fk_field_attribute_id" FOREIGN KEY ("event_attribute_id") REFERENCES "edt_track_event_attribute" ("id");
ALTER TABLE "edt_event_reported_app_version" ADD CONSTRAINT "fk_reported_app_version_event_id" FOREIGN KEY ("event_id") REFERENCES "edt_track_event" ("id");
ALTER TABLE "edt_track_event" ADD CONSTRAINT "dc_event_project_id" FOREIGN KEY ("project_id") REFERENCES "edt_project" ("id");
ALTER TABLE "edt_track_event" ADD CONSTRAINT "dc_event_product_id" FOREIGN KEY ("product_id") REFERENCES "edt_product" ("id");
*/

INSERT INTO edt_option_administrative_division VALUES (1, '中国', '110000', '北京市', '北京市', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2, '中国', '110101', '东城区', '北京市', '东城区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3, '中国', '110102', '西城区', '北京市', '西城区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (4, '中国', '110105', '朝阳区', '北京市', '朝阳区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (5, '中国', '110106', '丰台区', '北京市', '丰台区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (6, '中国', '110107', '石景山区', '北京市', '石景山区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (7, '中国', '110108', '海淀区', '北京市', '海淀区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (8, '中国', '110109', '门头沟区', '北京市', '门头沟区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (9, '中国', '110111', '房山区', '北京市', '房山区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (10, '中国', '110112', '通州区', '北京市', '通州区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (11, '中国', '110113', '顺义区', '北京市', '顺义区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (12, '中国', '110114', '昌平区', '北京市', '昌平区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (13, '中国', '110115', '大兴区', '北京市', '大兴区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (14, '中国', '110116', '怀柔区', '北京市', '怀柔区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (15, '中国', '110117', '平谷区', '北京市', '平谷区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (16, '中国', '110118', '密云区', '北京市', '密云区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (17, '中国', '110119', '延庆区', '北京市', '延庆区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (18, '中国', '120000', '天津市', '天津市', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (19, '中国', '120101', '和平区', '天津市', '和平区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (20, '中国', '120102', '河东区', '天津市', '河东区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (21, '中国', '120103', '河西区', '天津市', '河西区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (22, '中国', '120104', '南开区', '天津市', '南开区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (23, '中国', '120105', '河北区', '天津市', '河北区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (24, '中国', '120106', '红桥区', '天津市', '红桥区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (25, '中国', '120110', '东丽区', '天津市', '东丽区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (26, '中国', '120111', '西青区', '天津市', '西青区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (27, '中国', '120112', '津南区', '天津市', '津南区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (28, '中国', '120113', '北辰区', '天津市', '北辰区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (29, '中国', '120114', '武清区', '天津市', '武清区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (30, '中国', '120115', '宝坻区', '天津市', '宝坻区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (31, '中国', '120116', '滨海新区', '天津市', '滨海新区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (32, '中国', '120117', '宁河区', '天津市', '宁河区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (33, '中国', '120118', '静海区', '天津市', '静海区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (34, '中国', '120119', '蓟州区', '天津市', '蓟州区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (35, '中国', '130000', '河北省', '河北省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (36, '中国', '130100', '石家庄市', '河北省', '石家庄市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (37, '中国', '130102', '长安区', '河北省', '石家庄市', '长安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (38, '中国', '130104', '桥西区', '河北省', '石家庄市', '桥西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (39, '中国', '130105', '新华区', '河北省', '石家庄市', '新华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (40, '中国', '130107', '井陉矿区', '河北省', '石家庄市', '井陉矿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (41, '中国', '130108', '裕华区', '河北省', '石家庄市', '裕华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (42, '中国', '130109', '藁城区', '河北省', '石家庄市', '藁城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (43, '中国', '130110', '鹿泉区', '河北省', '石家庄市', '鹿泉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (44, '中国', '130111', '栾城区', '河北省', '石家庄市', '栾城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (45, '中国', '130121', '井陉县', '河北省', '石家庄市', '井陉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (46, '中国', '130123', '正定县', '河北省', '石家庄市', '正定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (47, '中国', '130125', '行唐县', '河北省', '石家庄市', '行唐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (48, '中国', '130126', '灵寿县', '河北省', '石家庄市', '灵寿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (49, '中国', '130127', '高邑县', '河北省', '石家庄市', '高邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (50, '中国', '130128', '深泽县', '河北省', '石家庄市', '深泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (51, '中国', '130129', '赞皇县', '河北省', '石家庄市', '赞皇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (52, '中国', '130130', '无极县', '河北省', '石家庄市', '无极县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (53, '中国', '130131', '平山县', '河北省', '石家庄市', '平山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (54, '中国', '130132', '元氏县', '河北省', '石家庄市', '元氏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (55, '中国', '130133', '赵县', '河北省', '石家庄市', '赵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (56, '中国', '130181', '辛集市', '河北省', '石家庄市', '辛集市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (57, '中国', '130184', '新乐市', '河北省', '石家庄市', '新乐市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (58, '中国', '130183', '晋州市', '河北省', '石家庄市', '晋州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (59, '中国', '130200', '唐山市', '河北省', '唐山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (60, '中国', '130202', '路南区', '河北省', '唐山市', '路南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (61, '中国', '130203', '路北区', '河北省', '唐山市', '路北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (62, '中国', '130204', '古冶区', '河北省', '唐山市', '古冶区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (63, '中国', '130205', '开平区', '河北省', '唐山市', '开平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (64, '中国', '130207', '丰南区', '河北省', '唐山市', '丰南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (65, '中国', '130208', '丰润区', '河北省', '唐山市', '丰润区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (66, '中国', '130209', '曹妃甸区', '河北省', '唐山市', '曹妃甸区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (67, '中国', '130224', '滦南县', '河北省', '唐山市', '滦南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (68, '中国', '130225', '乐亭县', '河北省', '唐山市', '乐亭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (69, '中国', '130227', '迁西县', '河北省', '唐山市', '迁西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (70, '中国', '130229', '玉田县', '河北省', '唐山市', '玉田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (71, '中国', '130281', '遵化市', '河北省', '唐山市', '遵化市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (72, '中国', '130283', '迁安市', '河北省', '唐山市', '迁安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (73, '中国', '130284', '滦州市', '河北省', '唐山市', '滦州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (74, '中国', '130300', '秦皇岛市', '河北省', '秦皇岛市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (75, '中国', '130302', '海港区', '河北省', '秦皇岛市', '海港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (76, '中国', '130303', '山海关区', '河北省', '秦皇岛市', '山海关区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (77, '中国', '130304', '北戴河区', '河北省', '秦皇岛市', '北戴河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (78, '中国', '130306', '抚宁区', '河北省', '秦皇岛市', '抚宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (79, '中国', '130321', '青龙满族自治县', '河北省', '秦皇岛市', '青龙满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (80, '中国', '130322', '昌黎县', '河北省', '秦皇岛市', '昌黎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (81, '中国', '130324', '卢龙县', '河北省', '秦皇岛市', '卢龙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (82, '中国', '130400', '邯郸市', '河北省', '邯郸市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (83, '中国', '130402', '邯山区', '河北省', '邯郸市', '邯山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (84, '中国', '130403', '丛台区', '河北省', '邯郸市', '丛台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (85, '中国', '130404', '复兴区', '河北省', '邯郸市', '复兴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (86, '中国', '130406', '峰峰矿区', '河北省', '邯郸市', '峰峰矿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (87, '中国', '130407', '肥乡区', '河北省', '邯郸市', '肥乡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (88, '中国', '130408', '永年区', '河北省', '邯郸市', '永年区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (89, '中国', '130423', '临漳县', '河北省', '邯郸市', '临漳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (90, '中国', '130424', '成安县', '河北省', '邯郸市', '成安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (91, '中国', '130425', '大名县', '河北省', '邯郸市', '大名县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (92, '中国', '130426', '涉县', '河北省', '邯郸市', '涉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (93, '中国', '130427', '磁县', '河北省', '邯郸市', '磁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (94, '中国', '130430', '邱县', '河北省', '邯郸市', '邱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (95, '中国', '130431', '鸡泽县', '河北省', '邯郸市', '鸡泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (96, '中国', '130432', '广平县', '河北省', '邯郸市', '广平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (97, '中国', '130433', '馆陶县', '河北省', '邯郸市', '馆陶县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (98, '中国', '130434', '魏县', '河北省', '邯郸市', '魏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (99, '中国', '130435', '曲周县', '河北省', '邯郸市', '曲周县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (100, '中国', '130481', '武安市', '河北省', '邯郸市', '武安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (101, '中国', '130500', '邢台市', '河北省', '邢台市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (102, '中国', '130502', '襄都区', '河北省', '邢台市', '襄都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (103, '中国', '130503', '信都区', '河北省', '邢台市', '信都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (104, '中国', '130505', '任泽区', '河北省', '邢台市', '任泽区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (105, '中国', '130506', '南和区', '河北省', '邢台市', '南和区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (106, '中国', '130522', '临城县', '河北省', '邢台市', '临城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (107, '中国', '130523', '内丘县', '河北省', '邢台市', '内丘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (108, '中国', '130524', '柏乡县', '河北省', '邢台市', '柏乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (109, '中国', '130525', '隆尧县', '河北省', '邢台市', '隆尧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (110, '中国', '130528', '宁晋县', '河北省', '邢台市', '宁晋县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (111, '中国', '130529', '巨鹿县', '河北省', '邢台市', '巨鹿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (112, '中国', '130530', '新河县', '河北省', '邢台市', '新河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (113, '中国', '130531', '广宗县', '河北省', '邢台市', '广宗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (114, '中国', '130532', '平乡县', '河北省', '邢台市', '平乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (115, '中国', '130533', '威县', '河北省', '邢台市', '威县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (116, '中国', '130534', '清河县', '河北省', '邢台市', '清河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (117, '中国', '130535', '临西县', '河北省', '邢台市', '临西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (118, '中国', '130581', '南宫市', '河北省', '邢台市', '南宫市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (119, '中国', '130582', '沙河市', '河北省', '邢台市', '沙河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (120, '中国', '130600', '保定市', '河北省', '保定市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (121, '中国', '130602', '竞秀区', '河北省', '保定市', '竞秀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (122, '中国', '130606', '莲池区', '河北省', '保定市', '莲池区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (123, '中国', '130607', '满城区', '河北省', '保定市', '满城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (124, '中国', '130608', '清苑区', '河北省', '保定市', '清苑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (125, '中国', '130609', '徐水区', '河北省', '保定市', '徐水区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (126, '中国', '130623', '涞水县', '河北省', '保定市', '涞水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (127, '中国', '130624', '阜平县', '河北省', '保定市', '阜平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (128, '中国', '130626', '定兴县', '河北省', '保定市', '定兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (129, '中国', '130627', '唐县', '河北省', '保定市', '唐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (130, '中国', '130628', '高阳县', '河北省', '保定市', '高阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (131, '中国', '130629', '容城县', '河北省', '保定市', '容城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (132, '中国', '130630', '涞源县', '河北省', '保定市', '涞源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (133, '中国', '130631', '望都县', '河北省', '保定市', '望都县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (134, '中国', '130632', '安新县', '河北省', '保定市', '安新县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (135, '中国', '130633', '易县', '河北省', '保定市', '易县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (136, '中国', '130634', '曲阳县', '河北省', '保定市', '曲阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (137, '中国', '130635', '蠡县', '河北省', '保定市', '蠡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (138, '中国', '130636', '顺平县', '河北省', '保定市', '顺平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (139, '中国', '130637', '博野县', '河北省', '保定市', '博野县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (140, '中国', '130638', '雄县', '河北省', '保定市', '雄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (141, '中国', '130681', '涿州市', '河北省', '保定市', '涿州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (142, '中国', '130682', '定州市', '河北省', '保定市', '定州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (143, '中国', '130683', '安国市', '河北省', '保定市', '安国市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (144, '中国', '130684', '高碑店市', '河北省', '保定市', '高碑店市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (145, '中国', '130700', '张家口市', '河北省', '张家口市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (146, '中国', '130702', '桥东区', '河北省', '张家口市', '桥东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (147, '中国', '130703', '桥西区', '河北省', '张家口市', '桥西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (148, '中国', '130705', '宣化区', '河北省', '张家口市', '宣化区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (149, '中国', '130706', '下花园区', '河北省', '张家口市', '下花园区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (150, '中国', '130708', '万全区', '河北省', '张家口市', '万全区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (151, '中国', '130709', '崇礼区', '河北省', '张家口市', '崇礼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (152, '中国', '130722', '张北县', '河北省', '张家口市', '张北县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (153, '中国', '130723', '康保县', '河北省', '张家口市', '康保县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (154, '中国', '130724', '沽源县', '河北省', '张家口市', '沽源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (155, '中国', '130725', '尚义县', '河北省', '张家口市', '尚义县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (156, '中国', '130726', '蔚县', '河北省', '张家口市', '蔚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (157, '中国', '130727', '阳原县', '河北省', '张家口市', '阳原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (158, '中国', '130728', '怀安县', '河北省', '张家口市', '怀安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (159, '中国', '130730', '怀来县', '河北省', '张家口市', '怀来县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (160, '中国', '130731', '涿鹿县', '河北省', '张家口市', '涿鹿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (161, '中国', '130732', '赤城县', '河北省', '张家口市', '赤城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (162, '中国', '130800', '承德市', '河北省', '承德市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (163, '中国', '130802', '双桥区', '河北省', '承德市', '双桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (164, '中国', '130803', '双滦区', '河北省', '承德市', '双滦区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (165, '中国', '130804', '鹰手营子矿区', '河北省', '承德市', '鹰手营子矿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (166, '中国', '130821', '承德县', '河北省', '承德市', '承德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (167, '中国', '130822', '兴隆县', '河北省', '承德市', '兴隆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (168, '中国', '130824', '滦平县', '河北省', '承德市', '滦平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (169, '中国', '130825', '隆化县', '河北省', '承德市', '隆化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (170, '中国', '130826', '丰宁满族自治县', '河北省', '承德市', '丰宁满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (171, '中国', '130827', '宽城满族自治县', '河北省', '承德市', '宽城满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (172, '中国', '130828', '围场满族蒙古族自治县', '河北省', '承德市', '围场满族蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (173, '中国', '130881', '平泉市', '河北省', '承德市', '平泉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (174, '中国', '130900', '沧州市', '河北省', '沧州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (175, '中国', '130902', '新华区', '河北省', '沧州市', '新华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (176, '中国', '130903', '运河区', '河北省', '沧州市', '运河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (177, '中国', '130921', '沧县', '河北省', '沧州市', '沧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (178, '中国', '130922', '青县', '河北省', '沧州市', '青县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (179, '中国', '130923', '东光县', '河北省', '沧州市', '东光县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (180, '中国', '130924', '海兴县', '河北省', '沧州市', '海兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (181, '中国', '130925', '盐山县', '河北省', '沧州市', '盐山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (182, '中国', '130926', '肃宁县', '河北省', '沧州市', '肃宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (183, '中国', '130927', '南皮县', '河北省', '沧州市', '南皮县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (184, '中国', '130928', '吴桥县', '河北省', '沧州市', '吴桥县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (185, '中国', '130929', '献县', '河北省', '沧州市', '献县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (186, '中国', '130930', '孟村回族自治县', '河北省', '沧州市', '孟村回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (187, '中国', '130981', '泊头市', '河北省', '沧州市', '泊头市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (188, '中国', '130982', '任丘市', '河北省', '沧州市', '任丘市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (189, '中国', '130983', '黄骅市', '河北省', '沧州市', '黄骅市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (190, '中国', '130984', '河间市', '河北省', '沧州市', '河间市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (191, '中国', '131000', '廊坊市', '河北省', '廊坊市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (192, '中国', '131002', '安次区', '河北省', '廊坊市', '安次区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (193, '中国', '131003', '广阳区', '河北省', '廊坊市', '广阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (194, '中国', '131022', '固安县', '河北省', '廊坊市', '固安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (195, '中国', '131023', '永清县', '河北省', '廊坊市', '永清县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (196, '中国', '131024', '香河县', '河北省', '廊坊市', '香河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (197, '中国', '131025', '大城县', '河北省', '廊坊市', '大城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (198, '中国', '131026', '文安县', '河北省', '廊坊市', '文安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (199, '中国', '131028', '大厂回族自治县', '河北省', '廊坊市', '大厂回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (200, '中国', '131081', '霸州市', '河北省', '廊坊市', '霸州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (201, '中国', '131082', '三河市', '河北省', '廊坊市', '三河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (202, '中国', '131100', '衡水市', '河北省', '衡水市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (203, '中国', '131102', '桃城区', '河北省', '衡水市', '桃城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (204, '中国', '131103', '冀州区', '河北省', '衡水市', '冀州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (205, '中国', '131121', '枣强县', '河北省', '衡水市', '枣强县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (206, '中国', '131122', '武邑县', '河北省', '衡水市', '武邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (207, '中国', '131123', '武强县', '河北省', '衡水市', '武强县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (208, '中国', '131124', '饶阳县', '河北省', '衡水市', '饶阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (209, '中国', '131125', '安平县', '河北省', '衡水市', '安平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (210, '中国', '131126', '故城县', '河北省', '衡水市', '故城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (211, '中国', '131127', '景县', '河北省', '衡水市', '景县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (212, '中国', '131128', '阜城县', '河北省', '衡水市', '阜城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (213, '中国', '131182', '深州市', '河北省', '衡水市', '深州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (214, '中国', '140000', '山西省', '山西省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (215, '中国', '140100', '太原市', '山西省', '太原市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (216, '中国', '140105', '小店区', '山西省', '太原市', '小店区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (217, '中国', '140106', '迎泽区', '山西省', '太原市', '迎泽区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (218, '中国', '140107', '杏花岭区', '山西省', '太原市', '杏花岭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (219, '中国', '140108', '尖草坪区', '山西省', '太原市', '尖草坪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (220, '中国', '140109', '万柏林区', '山西省', '太原市', '万柏林区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (221, '中国', '140110', '晋源区', '山西省', '太原市', '晋源区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (222, '中国', '140121', '清徐县', '山西省', '太原市', '清徐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (223, '中国', '140122', '阳曲县', '山西省', '太原市', '阳曲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (224, '中国', '140123', '娄烦县', '山西省', '太原市', '娄烦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (225, '中国', '140181', '古交市', '山西省', '太原市', '古交市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (226, '中国', '140200', '大同市', '山西省', '大同市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (227, '中国', '140212', '新荣区', '山西省', '大同市', '新荣区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (228, '中国', '140213', '平城区', '山西省', '大同市', '平城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (229, '中国', '140214', '云冈区', '山西省', '大同市', '云冈区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (230, '中国', '140215', '云州区', '山西省', '大同市', '云州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (231, '中国', '140221', '阳高县', '山西省', '大同市', '阳高县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (232, '中国', '140222', '天镇县', '山西省', '大同市', '天镇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (233, '中国', '140223', '广灵县', '山西省', '大同市', '广灵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (234, '中国', '140224', '灵丘县', '山西省', '大同市', '灵丘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (235, '中国', '140225', '浑源县', '山西省', '大同市', '浑源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (236, '中国', '140226', '左云县', '山西省', '大同市', '左云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (237, '中国', '140300', '阳泉市', '山西省', '阳泉市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (238, '中国', '140302', '城区', '山西省', '阳泉市', '城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (239, '中国', '140303', '矿区', '山西省', '阳泉市', '矿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (240, '中国', '140311', '郊区', '山西省', '阳泉市', '郊区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (241, '中国', '140321', '平定县', '山西省', '阳泉市', '平定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (242, '中国', '140322', '盂县', '山西省', '阳泉市', '盂县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (243, '中国', '140400', '长治市', '山西省', '长治市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (244, '中国', '140403', '潞州区', '山西省', '长治市', '潞州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (245, '中国', '140404', '上党区', '山西省', '长治市', '上党区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (246, '中国', '140405', '屯留区', '山西省', '长治市', '屯留区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (247, '中国', '140406', '潞城区', '山西省', '长治市', '潞城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (248, '中国', '140423', '襄垣县', '山西省', '长治市', '襄垣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (249, '中国', '140425', '平顺县', '山西省', '长治市', '平顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (250, '中国', '140426', '黎城县', '山西省', '长治市', '黎城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (251, '中国', '140427', '壶关县', '山西省', '长治市', '壶关县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (252, '中国', '140428', '长子县', '山西省', '长治市', '长子县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (253, '中国', '140429', '武乡县', '山西省', '长治市', '武乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (254, '中国', '140430', '沁县', '山西省', '长治市', '沁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (255, '中国', '140431', '沁源县', '山西省', '长治市', '沁源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (256, '中国', '140500', '晋城市', '山西省', '晋城市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (257, '中国', '140502', '城区', '山西省', '晋城市', '城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (258, '中国', '140521', '沁水县', '山西省', '晋城市', '沁水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (259, '中国', '140522', '阳城县', '山西省', '晋城市', '阳城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (260, '中国', '140524', '陵川县', '山西省', '晋城市', '陵川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (261, '中国', '140525', '泽州县', '山西省', '晋城市', '泽州县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (262, '中国', '140581', '高平市', '山西省', '晋城市', '高平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (263, '中国', '140600', '朔州市', '山西省', '朔州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (264, '中国', '140602', '朔城区', '山西省', '朔州市', '朔城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (265, '中国', '140603', '平鲁区', '山西省', '朔州市', '平鲁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (266, '中国', '140621', '山阴县', '山西省', '朔州市', '山阴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (267, '中国', '140622', '应县', '山西省', '朔州市', '应县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (268, '中国', '140623', '右玉县', '山西省', '朔州市', '右玉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (269, '中国', '140681', '怀仁市', '山西省', '朔州市', '怀仁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (270, '中国', '140700', '晋中市', '山西省', '晋中市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (271, '中国', '140702', '榆次区', '山西省', '晋中市', '榆次区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (272, '中国', '140703', '太谷区', '山西省', '晋中市', '太谷区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (273, '中国', '140721', '榆社县', '山西省', '晋中市', '榆社县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (274, '中国', '140722', '左权县', '山西省', '晋中市', '左权县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (275, '中国', '140723', '和顺县', '山西省', '晋中市', '和顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (276, '中国', '140724', '昔阳县', '山西省', '晋中市', '昔阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (277, '中国', '140725', '寿阳县', '山西省', '晋中市', '寿阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (278, '中国', '140727', '祁县', '山西省', '晋中市', '祁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (279, '中国', '140728', '平遥县', '山西省', '晋中市', '平遥县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (280, '中国', '140729', '灵石县', '山西省', '晋中市', '灵石县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (281, '中国', '140781', '介休市', '山西省', '晋中市', '介休市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (282, '中国', '140800', '运城市', '山西省', '运城市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (283, '中国', '140802', '盐湖区', '山西省', '运城市', '盐湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (284, '中国', '140821', '临猗县', '山西省', '运城市', '临猗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (285, '中国', '140822', '万荣县', '山西省', '运城市', '万荣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (286, '中国', '140823', '闻喜县', '山西省', '运城市', '闻喜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (287, '中国', '140824', '稷山县', '山西省', '运城市', '稷山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (288, '中国', '140825', '新绛县', '山西省', '运城市', '新绛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (289, '中国', '140826', '绛县', '山西省', '运城市', '绛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (290, '中国', '140827', '垣曲县', '山西省', '运城市', '垣曲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (291, '中国', '140828', '夏县', '山西省', '运城市', '夏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (292, '中国', '140829', '平陆县', '山西省', '运城市', '平陆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (293, '中国', '140830', '芮城县', '山西省', '运城市', '芮城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (294, '中国', '140881', '永济市', '山西省', '运城市', '永济市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (295, '中国', '140882', '河津市', '山西省', '运城市', '河津市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (296, '中国', '140900', '忻州市', '山西省', '忻州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (297, '中国', '140902', '忻府区', '山西省', '忻州市', '忻府区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (298, '中国', '140921', '定襄县', '山西省', '忻州市', '定襄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (299, '中国', '140922', '五台县', '山西省', '忻州市', '五台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (300, '中国', '140923', '代县', '山西省', '忻州市', '代县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (301, '中国', '140924', '繁峙县', '山西省', '忻州市', '繁峙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (302, '中国', '140925', '宁武县', '山西省', '忻州市', '宁武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (303, '中国', '140926', '静乐县', '山西省', '忻州市', '静乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (304, '中国', '140927', '神池县', '山西省', '忻州市', '神池县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (305, '中国', '140928', '五寨县', '山西省', '忻州市', '五寨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (306, '中国', '140929', '岢岚县', '山西省', '忻州市', '岢岚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (307, '中国', '140930', '河曲县', '山西省', '忻州市', '河曲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (308, '中国', '140931', '保德县', '山西省', '忻州市', '保德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (309, '中国', '140932', '偏关县', '山西省', '忻州市', '偏关县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (310, '中国', '140981', '原平市', '山西省', '忻州市', '原平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (311, '中国', '141000', '临汾市', '山西省', '临汾市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (312, '中国', '141002', '尧都区', '山西省', '临汾市', '尧都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (313, '中国', '141021', '曲沃县', '山西省', '临汾市', '曲沃县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (314, '中国', '141022', '翼城县', '山西省', '临汾市', '翼城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (315, '中国', '141023', '襄汾县', '山西省', '临汾市', '襄汾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (316, '中国', '141024', '洪洞县', '山西省', '临汾市', '洪洞县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (317, '中国', '141025', '古县', '山西省', '临汾市', '古县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (318, '中国', '141026', '安泽县', '山西省', '临汾市', '安泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (319, '中国', '141027', '浮山县', '山西省', '临汾市', '浮山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (320, '中国', '141028', '吉县', '山西省', '临汾市', '吉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (321, '中国', '141029', '乡宁县', '山西省', '临汾市', '乡宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (322, '中国', '141030', '大宁县', '山西省', '临汾市', '大宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (323, '中国', '141031', '隰县', '山西省', '临汾市', '隰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (324, '中国', '141032', '永和县', '山西省', '临汾市', '永和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (325, '中国', '141033', '蒲县', '山西省', '临汾市', '蒲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (326, '中国', '141034', '汾西县', '山西省', '临汾市', '汾西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (327, '中国', '141081', '侯马市', '山西省', '临汾市', '侯马市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (328, '中国', '141082', '霍州市', '山西省', '临汾市', '霍州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (329, '中国', '141100', '吕梁市', '山西省', '吕梁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (330, '中国', '141102', '离石区', '山西省', '吕梁市', '离石区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (331, '中国', '141121', '文水县', '山西省', '吕梁市', '文水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (332, '中国', '141122', '交城县', '山西省', '吕梁市', '交城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (333, '中国', '141123', '兴县', '山西省', '吕梁市', '兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (334, '中国', '141124', '临县', '山西省', '吕梁市', '临县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (335, '中国', '141125', '柳林县', '山西省', '吕梁市', '柳林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (336, '中国', '141126', '石楼县', '山西省', '吕梁市', '石楼县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (337, '中国', '141127', '岚县', '山西省', '吕梁市', '岚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (338, '中国', '141128', '方山县', '山西省', '吕梁市', '方山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (339, '中国', '141129', '中阳县', '山西省', '吕梁市', '中阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (340, '中国', '141130', '交口县', '山西省', '吕梁市', '交口县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (341, '中国', '141181', '孝义市', '山西省', '吕梁市', '孝义市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (342, '中国', '141182', '汾阳市', '山西省', '吕梁市', '汾阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (343, '中国', '150000', '内蒙古自治区', '内蒙古自治区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (344, '中国', '150100', '呼和浩特市', '内蒙古自治区', '呼和浩特市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (345, '中国', '150102', '新城区', '内蒙古自治区', '呼和浩特市', '新城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (346, '中国', '150103', '回民区', '内蒙古自治区', '呼和浩特市', '回民区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (347, '中国', '150104', '玉泉区', '内蒙古自治区', '呼和浩特市', '玉泉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (348, '中国', '150105', '赛罕区', '内蒙古自治区', '呼和浩特市', '赛罕区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (349, '中国', '150121', '土默特左旗', '内蒙古自治区', '呼和浩特市', '土默特左旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (350, '中国', '150122', '托克托县', '内蒙古自治区', '呼和浩特市', '托克托县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (351, '中国', '150123', '和林格尔县', '内蒙古自治区', '呼和浩特市', '和林格尔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (352, '中国', '150124', '清水河县', '内蒙古自治区', '呼和浩特市', '清水河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (353, '中国', '150125', '武川县', '内蒙古自治区', '呼和浩特市', '武川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (354, '中国', '150200', '包头市', '内蒙古自治区', '包头市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (355, '中国', '150202', '东河区', '内蒙古自治区', '包头市', '东河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (356, '中国', '150203', '昆都仑区', '内蒙古自治区', '包头市', '昆都仑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (357, '中国', '150204', '青山区', '内蒙古自治区', '包头市', '青山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (358, '中国', '150205', '石拐区', '内蒙古自治区', '包头市', '石拐区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (359, '中国', '150206', '白云鄂博矿区', '内蒙古自治区', '包头市', '白云鄂博矿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (360, '中国', '150207', '九原区', '内蒙古自治区', '包头市', '九原区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (361, '中国', '150221', '土默特右旗', '内蒙古自治区', '包头市', '土默特右旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (362, '中国', '150222', '固阳县', '内蒙古自治区', '包头市', '固阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (363, '中国', '150223', '达尔罕茂明安联合旗', '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (364, '中国', '150300', '乌海市', '内蒙古自治区', '乌海市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (365, '中国', '150302', '海勃湾区', '内蒙古自治区', '乌海市', '海勃湾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (366, '中国', '150303', '海南区', '内蒙古自治区', '乌海市', '海南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (367, '中国', '150304', '乌达区', '内蒙古自治区', '乌海市', '乌达区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (368, '中国', '150400', '赤峰市', '内蒙古自治区', '赤峰市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (369, '中国', '150402', '红山区', '内蒙古自治区', '赤峰市', '红山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (370, '中国', '150403', '元宝山区', '内蒙古自治区', '赤峰市', '元宝山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (371, '中国', '150404', '松山区', '内蒙古自治区', '赤峰市', '松山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (372, '中国', '150421', '阿鲁科尔沁旗', '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (373, '中国', '150422', '巴林左旗', '内蒙古自治区', '赤峰市', '巴林左旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (374, '中国', '150423', '巴林右旗', '内蒙古自治区', '赤峰市', '巴林右旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (375, '中国', '150424', '林西县', '内蒙古自治区', '赤峰市', '林西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (376, '中国', '150425', '克什克腾旗', '内蒙古自治区', '赤峰市', '克什克腾旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (377, '中国', '150426', '翁牛特旗', '内蒙古自治区', '赤峰市', '翁牛特旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (378, '中国', '150428', '喀喇沁旗', '内蒙古自治区', '赤峰市', '喀喇沁旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (379, '中国', '150429', '宁城县', '内蒙古自治区', '赤峰市', '宁城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (380, '中国', '150430', '敖汉旗', '内蒙古自治区', '赤峰市', '敖汉旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (381, '中国', '150500', '通辽市', '内蒙古自治区', '通辽市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (382, '中国', '150502', '科尔沁区', '内蒙古自治区', '通辽市', '科尔沁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (383, '中国', '150521', '科尔沁左翼中旗', '内蒙古自治区', '通辽市', '科尔沁左翼中旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (384, '中国', '150522', '科尔沁左翼后旗', '内蒙古自治区', '通辽市', '科尔沁左翼后旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (385, '中国', '150523', '开鲁县', '内蒙古自治区', '通辽市', '开鲁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (386, '中国', '150524', '库伦旗', '内蒙古自治区', '通辽市', '库伦旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (387, '中国', '150525', '奈曼旗', '内蒙古自治区', '通辽市', '奈曼旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (388, '中国', '150526', '扎鲁特旗', '内蒙古自治区', '通辽市', '扎鲁特旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (389, '中国', '150581', '霍林郭勒市', '内蒙古自治区', '通辽市', '霍林郭勒市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (390, '中国', '150600', '鄂尔多斯市', '内蒙古自治区', '鄂尔多斯市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (391, '中国', '150602', '东胜区', '内蒙古自治区', '鄂尔多斯市', '东胜区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (392, '中国', '150603', '康巴什区', '内蒙古自治区', '鄂尔多斯市', '康巴什区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (393, '中国', '150621', '达拉特旗', '内蒙古自治区', '鄂尔多斯市', '达拉特旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (394, '中国', '150622', '准格尔旗', '内蒙古自治区', '鄂尔多斯市', '准格尔旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (395, '中国', '150623', '鄂托克前旗', '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (396, '中国', '150624', '鄂托克旗', '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (397, '中国', '150625', '杭锦旗', '内蒙古自治区', '鄂尔多斯市', '杭锦旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (398, '中国', '150626', '乌审旗', '内蒙古自治区', '鄂尔多斯市', '乌审旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (399, '中国', '150627', '伊金霍洛旗', '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (400, '中国', '150700', '呼伦贝尔市', '内蒙古自治区', '呼伦贝尔市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (401, '中国', '150702', '海拉尔区', '内蒙古自治区', '呼伦贝尔市', '海拉尔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (402, '中国', '150703', '扎赉诺尔区', '内蒙古自治区', '呼伦贝尔市', '扎赉诺尔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (403, '中国', '150721', '阿荣旗', '内蒙古自治区', '呼伦贝尔市', '阿荣旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (404, '中国', '150722', '莫力达瓦达斡尔族自治旗', '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (405, '中国', '150723', '鄂伦春自治旗', '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (406, '中国', '150724', '鄂温克族自治旗', '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (407, '中国', '150725', '陈巴尔虎旗', '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (408, '中国', '150726', '新巴尔虎左旗', '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (409, '中国', '150727', '新巴尔虎右旗', '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (410, '中国', '150781', '满洲里市', '内蒙古自治区', '呼伦贝尔市', '满洲里市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (411, '中国', '150782', '牙克石市', '内蒙古自治区', '呼伦贝尔市', '牙克石市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (412, '中国', '150783', '扎兰屯市', '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (413, '中国', '150784', '额尔古纳市', '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (414, '中国', '150785', '根河市', '内蒙古自治区', '呼伦贝尔市', '根河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (415, '中国', '150800', '巴彦淖尔市', '内蒙古自治区', '巴彦淖尔市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (416, '中国', '150802', '临河区', '内蒙古自治区', '巴彦淖尔市', '临河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (417, '中国', '150821', '五原县', '内蒙古自治区', '巴彦淖尔市', '五原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (418, '中国', '150822', '磴口县', '内蒙古自治区', '巴彦淖尔市', '磴口县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (419, '中国', '150823', '乌拉特前旗', '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (420, '中国', '150824', '乌拉特中旗', '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (421, '中国', '150825', '乌拉特后旗', '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (422, '中国', '150826', '杭锦后旗', '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (423, '中国', '150900', '乌兰察布市', '内蒙古自治区', '乌兰察布市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (424, '中国', '150902', '集宁区', '内蒙古自治区', '乌兰察布市', '集宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (425, '中国', '150921', '卓资县', '内蒙古自治区', '乌兰察布市', '卓资县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (426, '中国', '150922', '化德县', '内蒙古自治区', '乌兰察布市', '化德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (427, '中国', '150923', '商都县', '内蒙古自治区', '乌兰察布市', '商都县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (428, '中国', '150924', '兴和县', '内蒙古自治区', '乌兰察布市', '兴和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (429, '中国', '150925', '凉城县', '内蒙古自治区', '乌兰察布市', '凉城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (430, '中国', '150926', '察哈尔右翼前旗', '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (431, '中国', '150927', '察哈尔右翼中旗', '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (432, '中国', '150928', '察哈尔右翼后旗', '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (433, '中国', '150929', '四子王旗', '内蒙古自治区', '乌兰察布市', '四子王旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (434, '中国', '150981', '丰镇市', '内蒙古自治区', '乌兰察布市', '丰镇市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (435, '中国', '152200', '兴安盟', '内蒙古自治区', '兴安盟', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (795, '中国', '310151', '崇明区', '上海市', '崇明区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (436, '中国', '152201', '乌兰浩特市', '内蒙古自治区', '兴安盟', '乌兰浩特市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (437, '中国', '152202', '阿尔山市', '内蒙古自治区', '兴安盟', '阿尔山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (438, '中国', '152221', '科尔沁右翼前旗', '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (439, '中国', '152222', '科尔沁右翼中旗', '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (440, '中国', '152223', '扎赉特旗', '内蒙古自治区', '兴安盟', '扎赉特旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (441, '中国', '152224', '突泉县', '内蒙古自治区', '兴安盟', '突泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (442, '中国', '152500', '锡林郭勒盟', '内蒙古自治区', '锡林郭勒盟', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (443, '中国', '152501', '二连浩特市', '内蒙古自治区', '锡林郭勒盟', '二连浩特市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (444, '中国', '152502', '锡林浩特市', '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (445, '中国', '152522', '阿巴嘎旗', '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (446, '中国', '152523', '苏尼特左旗', '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (447, '中国', '152524', '苏尼特右旗', '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (448, '中国', '152525', '东乌珠穆沁旗', '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (449, '中国', '152526', '西乌珠穆沁旗', '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (450, '中国', '152527', '太仆寺旗', '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (451, '中国', '152528', '镶黄旗', '内蒙古自治区', '锡林郭勒盟', '镶黄旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (452, '中国', '152529', '正镶白旗', '内蒙古自治区', '锡林郭勒盟', '正镶白旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (453, '中国', '152530', '正蓝旗', '内蒙古自治区', '锡林郭勒盟', '正蓝旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (454, '中国', '152531', '多伦县', '内蒙古自治区', '锡林郭勒盟', '多伦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (455, '中国', '152900', '阿拉善盟', '内蒙古自治区', '阿拉善盟', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (456, '中国', '152921', '阿拉善左旗', '内蒙古自治区', '阿拉善盟', '阿拉善左旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (457, '中国', '152922', '阿拉善右旗', '内蒙古自治区', '阿拉善盟', '阿拉善右旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (458, '中国', '152923', '额济纳旗', '内蒙古自治区', '阿拉善盟', '额济纳旗', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (459, '中国', '210000', '辽宁省', '辽宁省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (460, '中国', '210100', '沈阳市', '辽宁省', '沈阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (461, '中国', '210102', '和平区', '辽宁省', '沈阳市', '和平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (462, '中国', '210103', '沈河区', '辽宁省', '沈阳市', '沈河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (463, '中国', '210104', '大东区', '辽宁省', '沈阳市', '大东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (464, '中国', '210105', '皇姑区', '辽宁省', '沈阳市', '皇姑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (465, '中国', '210106', '铁西区', '辽宁省', '沈阳市', '铁西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (466, '中国', '210111', '苏家屯区', '辽宁省', '沈阳市', '苏家屯区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (467, '中国', '210112', '浑南区', '辽宁省', '沈阳市', '浑南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (468, '中国', '210113', '沈北新区', '辽宁省', '沈阳市', '沈北新区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (469, '中国', '210114', '于洪区', '辽宁省', '沈阳市', '于洪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (470, '中国', '210115', '辽中区', '辽宁省', '沈阳市', '辽中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (471, '中国', '210123', '康平县', '辽宁省', '沈阳市', '康平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (472, '中国', '210124', '法库县', '辽宁省', '沈阳市', '法库县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (473, '中国', '210181', '新民市', '辽宁省', '沈阳市', '新民市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (474, '中国', '210200', '大连市', '辽宁省', '大连市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (475, '中国', '210202', '中山区', '辽宁省', '大连市', '中山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (476, '中国', '210203', '西岗区', '辽宁省', '大连市', '西岗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (477, '中国', '210204', '沙河口区', '辽宁省', '大连市', '沙河口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (478, '中国', '210211', '甘井子区', '辽宁省', '大连市', '甘井子区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (479, '中国', '210212', '旅顺口区', '辽宁省', '大连市', '旅顺口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (480, '中国', '210213', '金州区', '辽宁省', '大连市', '金州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (481, '中国', '210214', '普兰店区', '辽宁省', '大连市', '普兰店区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (482, '中国', '210224', '长海县', '辽宁省', '大连市', '长海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (483, '中国', '210281', '瓦房店市', '辽宁省', '大连市', '瓦房店市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (484, '中国', '210283', '庄河市', '辽宁省', '大连市', '庄河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (485, '中国', '210300', '鞍山市', '辽宁省', '鞍山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (486, '中国', '210302', '铁东区', '辽宁省', '鞍山市', '铁东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (487, '中国', '210303', '铁西区', '辽宁省', '鞍山市', '铁西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (488, '中国', '210304', '立山区', '辽宁省', '鞍山市', '立山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (489, '中国', '210311', '千山区', '辽宁省', '鞍山市', '千山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (490, '中国', '210321', '台安县', '辽宁省', '鞍山市', '台安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (491, '中国', '210323', '岫岩满族自治县', '辽宁省', '鞍山市', '岫岩满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (492, '中国', '210381', '海城市', '辽宁省', '鞍山市', '海城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (493, '中国', '210400', '抚顺市', '辽宁省', '抚顺市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (494, '中国', '210402', '新抚区', '辽宁省', '抚顺市', '新抚区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (495, '中国', '210403', '东洲区', '辽宁省', '抚顺市', '东洲区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (496, '中国', '210404', '望花区', '辽宁省', '抚顺市', '望花区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (497, '中国', '210411', '顺城区', '辽宁省', '抚顺市', '顺城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (498, '中国', '210421', '抚顺县', '辽宁省', '抚顺市', '抚顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (499, '中国', '210422', '新宾满族自治县', '辽宁省', '抚顺市', '新宾满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (500, '中国', '210423', '清原满族自治县', '辽宁省', '抚顺市', '清原满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (501, '中国', '210500', '本溪市', '辽宁省', '本溪市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (502, '中国', '210502', '平山区', '辽宁省', '本溪市', '平山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (503, '中国', '210503', '溪湖区', '辽宁省', '本溪市', '溪湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (504, '中国', '210504', '明山区', '辽宁省', '本溪市', '明山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (505, '中国', '210505', '南芬区', '辽宁省', '本溪市', '南芬区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (506, '中国', '210521', '本溪满族自治县', '辽宁省', '本溪市', '本溪满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (507, '中国', '210522', '桓仁满族自治县', '辽宁省', '本溪市', '桓仁满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (508, '中国', '210600', '丹东市', '辽宁省', '丹东市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (509, '中国', '210602', '元宝区', '辽宁省', '丹东市', '元宝区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (510, '中国', '210603', '振兴区', '辽宁省', '丹东市', '振兴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (511, '中国', '210604', '振安区', '辽宁省', '丹东市', '振安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (512, '中国', '210624', '宽甸满族自治县', '辽宁省', '丹东市', '宽甸满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (513, '中国', '210681', '东港市', '辽宁省', '丹东市', '东港市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (514, '中国', '210682', '凤城市', '辽宁省', '丹东市', '凤城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (515, '中国', '210700', '锦州市', '辽宁省', '锦州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (516, '中国', '210702', '古塔区', '辽宁省', '锦州市', '古塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (517, '中国', '210703', '凌河区', '辽宁省', '锦州市', '凌河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (518, '中国', '210711', '太和区', '辽宁省', '锦州市', '太和区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (519, '中国', '210726', '黑山县', '辽宁省', '锦州市', '黑山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (520, '中国', '210727', '义县', '辽宁省', '锦州市', '义县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (521, '中国', '210781', '凌海市', '辽宁省', '锦州市', '凌海市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (522, '中国', '210782', '北镇市', '辽宁省', '锦州市', '北镇市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (523, '中国', '210800', '营口市', '辽宁省', '营口市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (524, '中国', '210802', '站前区', '辽宁省', '营口市', '站前区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (525, '中国', '210803', '西市区', '辽宁省', '营口市', '西市区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (526, '中国', '210804', '鲅鱼圈区', '辽宁省', '营口市', '鲅鱼圈区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (527, '中国', '210811', '老边区', '辽宁省', '营口市', '老边区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (528, '中国', '210881', '盖州市', '辽宁省', '营口市', '盖州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (529, '中国', '210882', '大石桥市', '辽宁省', '营口市', '大石桥市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (530, '中国', '210900', '阜新市', '辽宁省', '阜新市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (531, '中国', '210902', '海州区', '辽宁省', '阜新市', '海州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (532, '中国', '210903', '新邱区', '辽宁省', '阜新市', '新邱区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (533, '中国', '210904', '太平区', '辽宁省', '阜新市', '太平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (534, '中国', '210905', '清河门区', '辽宁省', '阜新市', '清河门区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (535, '中国', '210911', '细河区', '辽宁省', '阜新市', '细河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (536, '中国', '210921', '阜新蒙古族自治县', '辽宁省', '阜新市', '阜新蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (537, '中国', '210922', '彰武县', '辽宁省', '阜新市', '彰武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (538, '中国', '211000', '辽阳市', '辽宁省', '辽阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (539, '中国', '211002', '白塔区', '辽宁省', '辽阳市', '白塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (540, '中国', '211003', '文圣区', '辽宁省', '辽阳市', '文圣区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (541, '中国', '211004', '宏伟区', '辽宁省', '辽阳市', '宏伟区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (542, '中国', '211005', '弓长岭区', '辽宁省', '辽阳市', '弓长岭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (543, '中国', '211011', '太子河区', '辽宁省', '辽阳市', '太子河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (544, '中国', '211021', '辽阳县', '辽宁省', '辽阳市', '辽阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (545, '中国', '211081', '灯塔市', '辽宁省', '辽阳市', '灯塔市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (546, '中国', '211100', '盘锦市', '辽宁省', '盘锦市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (547, '中国', '211102', '双台子区', '辽宁省', '盘锦市', '双台子区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (548, '中国', '211103', '兴隆台区', '辽宁省', '盘锦市', '兴隆台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (549, '中国', '211104', '大洼区', '辽宁省', '盘锦市', '大洼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (550, '中国', '211122', '盘山县', '辽宁省', '盘锦市', '盘山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (551, '中国', '211200', '铁岭市', '辽宁省', '铁岭市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (552, '中国', '211202', '银州区', '辽宁省', '铁岭市', '银州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (553, '中国', '211204', '清河区', '辽宁省', '铁岭市', '清河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (554, '中国', '211221', '铁岭县', '辽宁省', '铁岭市', '铁岭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (555, '中国', '211223', '西丰县', '辽宁省', '铁岭市', '西丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (556, '中国', '211224', '昌图县', '辽宁省', '铁岭市', '昌图县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (557, '中国', '211281', '调兵山市', '辽宁省', '铁岭市', '调兵山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (558, '中国', '211282', '开原市', '辽宁省', '铁岭市', '开原市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (559, '中国', '211300', '朝阳市', '辽宁省', '朝阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (560, '中国', '211302', '双塔区', '辽宁省', '朝阳市', '双塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (561, '中国', '211303', '龙城区', '辽宁省', '朝阳市', '龙城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (562, '中国', '211321', '朝阳县', '辽宁省', '朝阳市', '朝阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (563, '中国', '211322', '建平县', '辽宁省', '朝阳市', '建平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (564, '中国', '211324', '喀喇沁左翼蒙古族自治县', '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (565, '中国', '211381', '北票市', '辽宁省', '朝阳市', '北票市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (566, '中国', '211382', '凌源市', '辽宁省', '朝阳市', '凌源市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (567, '中国', '211400', '葫芦岛市', '辽宁省', '葫芦岛市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (568, '中国', '211402', '连山区', '辽宁省', '葫芦岛市', '连山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (569, '中国', '211403', '龙港区', '辽宁省', '葫芦岛市', '龙港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (570, '中国', '211404', '南票区', '辽宁省', '葫芦岛市', '南票区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (571, '中国', '211421', '绥中县', '辽宁省', '葫芦岛市', '绥中县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (572, '中国', '211422', '建昌县', '辽宁省', '葫芦岛市', '建昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (573, '中国', '211481', '兴城市', '辽宁省', '葫芦岛市', '兴城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (574, '中国', '220000', '吉林省', '吉林省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (575, '中国', '220100', '长春市', '吉林省', '长春市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (576, '中国', '220102', '南关区', '吉林省', '长春市', '南关区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (577, '中国', '220103', '宽城区', '吉林省', '长春市', '宽城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (578, '中国', '220104', '朝阳区', '吉林省', '长春市', '朝阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (579, '中国', '220105', '二道区', '吉林省', '长春市', '二道区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (580, '中国', '220106', '绿园区', '吉林省', '长春市', '绿园区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (581, '中国', '220112', '双阳区', '吉林省', '长春市', '双阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (582, '中国', '220113', '九台区', '吉林省', '长春市', '九台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (583, '中国', '220122', '农安县', '吉林省', '长春市', '农安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (584, '中国', '220182', '榆树市', '吉林省', '长春市', '榆树市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (585, '中国', '220183', '德惠市', '吉林省', '长春市', '德惠市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (586, '中国', '220184', '公主岭市', '吉林省', '长春市', '公主岭市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (587, '中国', '220200', '吉林市', '吉林省', '吉林市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (588, '中国', '220202', '昌邑区', '吉林省', '吉林市', '昌邑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (589, '中国', '220203', '龙潭区', '吉林省', '吉林市', '龙潭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (590, '中国', '220204', '船营区', '吉林省', '吉林市', '船营区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (591, '中国', '220211', '丰满区', '吉林省', '吉林市', '丰满区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (592, '中国', '220221', '永吉县', '吉林省', '吉林市', '永吉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (593, '中国', '220281', '蛟河市', '吉林省', '吉林市', '蛟河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (594, '中国', '220282', '桦甸市', '吉林省', '吉林市', '桦甸市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (595, '中国', '220283', '舒兰市', '吉林省', '吉林市', '舒兰市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (596, '中国', '220284', '磐石市', '吉林省', '吉林市', '磐石市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (597, '中国', '220300', '四平市', '吉林省', '四平市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (598, '中国', '220302', '铁西区', '吉林省', '四平市', '铁西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (599, '中国', '220303', '铁东区', '吉林省', '四平市', '铁东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (600, '中国', '220322', '梨树县', '吉林省', '四平市', '梨树县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (601, '中国', '220323', '伊通满族自治县', '吉林省', '四平市', '伊通满族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (602, '中国', '220382', '双辽市', '吉林省', '四平市', '双辽市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (603, '中国', '220400', '辽源市', '吉林省', '辽源市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (604, '中国', '220402', '龙山区', '吉林省', '辽源市', '龙山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (605, '中国', '220403', '西安区', '吉林省', '辽源市', '西安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (606, '中国', '220421', '东丰县', '吉林省', '辽源市', '东丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (607, '中国', '220422', '东辽县', '吉林省', '辽源市', '东辽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (608, '中国', '220500', '通化市', '吉林省', '通化市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (609, '中国', '220502', '东昌区', '吉林省', '通化市', '东昌区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (610, '中国', '220503', '二道江区', '吉林省', '通化市', '二道江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (611, '中国', '220521', '通化县', '吉林省', '通化市', '通化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (612, '中国', '220523', '辉南县', '吉林省', '通化市', '辉南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (613, '中国', '220524', '柳河县', '吉林省', '通化市', '柳河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (614, '中国', '220581', '梅河口市', '吉林省', '通化市', '梅河口市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (615, '中国', '220582', '集安市', '吉林省', '通化市', '集安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (616, '中国', '220600', '白山市', '吉林省', '白山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (617, '中国', '220602', '浑江区', '吉林省', '白山市', '浑江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (618, '中国', '220605', '江源区', '吉林省', '白山市', '江源区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (619, '中国', '220621', '抚松县', '吉林省', '白山市', '抚松县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (620, '中国', '220622', '靖宇县', '吉林省', '白山市', '靖宇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (621, '中国', '220623', '长白朝鲜族自治县', '吉林省', '白山市', '长白朝鲜族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (622, '中国', '220681', '临江市', '吉林省', '白山市', '临江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (623, '中国', '220700', '松原市', '吉林省', '松原市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (624, '中国', '220702', '宁江区', '吉林省', '松原市', '宁江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (625, '中国', '220721', '前郭尔罗斯蒙古族自治县', '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (626, '中国', '220722', '长岭县', '吉林省', '松原市', '长岭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (627, '中国', '220723', '乾安县', '吉林省', '松原市', '乾安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (628, '中国', '220781', '扶余市', '吉林省', '松原市', '扶余市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (629, '中国', '220800', '白城市', '吉林省', '白城市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (630, '中国', '220802', '洮北区', '吉林省', '白城市', '洮北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (631, '中国', '220821', '镇赉县', '吉林省', '白城市', '镇赉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (632, '中国', '220822', '通榆县', '吉林省', '白城市', '通榆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (633, '中国', '220881', '洮南市', '吉林省', '白城市', '洮南市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (634, '中国', '220882', '大安市', '吉林省', '白城市', '大安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (635, '中国', '222400', '延边朝鲜族自治州', '吉林省', '延边朝鲜族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (636, '中国', '222401', '延吉市', '吉林省', '延边朝鲜族自治州', '延吉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (637, '中国', '222402', '图们市', '吉林省', '延边朝鲜族自治州', '图们市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (638, '中国', '222403', '敦化市', '吉林省', '延边朝鲜族自治州', '敦化市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (639, '中国', '222404', '珲春市', '吉林省', '延边朝鲜族自治州', '珲春市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (640, '中国', '222405', '龙井市', '吉林省', '延边朝鲜族自治州', '龙井市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (641, '中国', '222406', '和龙市', '吉林省', '延边朝鲜族自治州', '和龙市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (642, '中国', '222424', '汪清县', '吉林省', '延边朝鲜族自治州', '汪清县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (643, '中国', '222426', '安图县', '吉林省', '延边朝鲜族自治州', '安图县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (644, '中国', '230000', '黑龙江省', '黑龙江省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (645, '中国', '230100', '哈尔滨市', '黑龙江省', '哈尔滨市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (646, '中国', '230102', '道里区', '黑龙江省', '哈尔滨市', '道里区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (647, '中国', '230103', '南岗区', '黑龙江省', '哈尔滨市', '南岗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (648, '中国', '230104', '道外区', '黑龙江省', '哈尔滨市', '道外区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (649, '中国', '230108', '平房区', '黑龙江省', '哈尔滨市', '平房区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (650, '中国', '230109', '松北区', '黑龙江省', '哈尔滨市', '松北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (651, '中国', '230110', '香坊区', '黑龙江省', '哈尔滨市', '香坊区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (652, '中国', '230111', '呼兰区', '黑龙江省', '哈尔滨市', '呼兰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (653, '中国', '230112', '阿城区', '黑龙江省', '哈尔滨市', '阿城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (654, '中国', '230113', '双城区', '黑龙江省', '哈尔滨市', '双城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (655, '中国', '230123', '依兰县', '黑龙江省', '哈尔滨市', '依兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (656, '中国', '230124', '方正县', '黑龙江省', '哈尔滨市', '方正县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (657, '中国', '230125', '宾县', '黑龙江省', '哈尔滨市', '宾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (658, '中国', '230126', '巴彦县', '黑龙江省', '哈尔滨市', '巴彦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (659, '中国', '230127', '木兰县', '黑龙江省', '哈尔滨市', '木兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (660, '中国', '230128', '通河县', '黑龙江省', '哈尔滨市', '通河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (661, '中国', '230129', '延寿县', '黑龙江省', '哈尔滨市', '延寿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (662, '中国', '230183', '尚志市', '黑龙江省', '哈尔滨市', '尚志市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (663, '中国', '230184', '五常市', '黑龙江省', '哈尔滨市', '五常市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (664, '中国', '230200', '齐齐哈尔市', '黑龙江省', '齐齐哈尔市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (665, '中国', '230202', '龙沙区', '黑龙江省', '齐齐哈尔市', '龙沙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (666, '中国', '230203', '建华区', '黑龙江省', '齐齐哈尔市', '建华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (667, '中国', '230204', '铁锋区', '黑龙江省', '齐齐哈尔市', '铁锋区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (668, '中国', '230205', '昂昂溪区', '黑龙江省', '齐齐哈尔市', '昂昂溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (669, '中国', '230206', '富拉尔基区', '黑龙江省', '齐齐哈尔市', '富拉尔基区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (670, '中国', '230207', '碾子山区', '黑龙江省', '齐齐哈尔市', '碾子山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (671, '中国', '230208', '梅里斯达斡尔族区', '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (672, '中国', '230221', '龙江县', '黑龙江省', '齐齐哈尔市', '龙江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (673, '中国', '230223', '依安县', '黑龙江省', '齐齐哈尔市', '依安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (674, '中国', '230224', '泰来县', '黑龙江省', '齐齐哈尔市', '泰来县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (675, '中国', '230225', '甘南县', '黑龙江省', '齐齐哈尔市', '甘南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (676, '中国', '230227', '富裕县', '黑龙江省', '齐齐哈尔市', '富裕县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (677, '中国', '230229', '克山县', '黑龙江省', '齐齐哈尔市', '克山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (678, '中国', '230230', '克东县', '黑龙江省', '齐齐哈尔市', '克东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (679, '中国', '230231', '拜泉县', '黑龙江省', '齐齐哈尔市', '拜泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (680, '中国', '230281', '讷河市', '黑龙江省', '齐齐哈尔市', '讷河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (681, '中国', '230300', '鸡西市', '黑龙江省', '鸡西市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (682, '中国', '230302', '鸡冠区', '黑龙江省', '鸡西市', '鸡冠区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (683, '中国', '230303', '恒山区', '黑龙江省', '鸡西市', '恒山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (684, '中国', '230304', '滴道区', '黑龙江省', '鸡西市', '滴道区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (685, '中国', '230305', '梨树区', '黑龙江省', '鸡西市', '梨树区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (686, '中国', '230306', '城子河区', '黑龙江省', '鸡西市', '城子河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (687, '中国', '230307', '麻山区', '黑龙江省', '鸡西市', '麻山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (688, '中国', '230321', '鸡东县', '黑龙江省', '鸡西市', '鸡东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (689, '中国', '230381', '虎林市', '黑龙江省', '鸡西市', '虎林市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (690, '中国', '230382', '密山市', '黑龙江省', '鸡西市', '密山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (691, '中国', '230400', '鹤岗市', '黑龙江省', '鹤岗市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (692, '中国', '230402', '向阳区', '黑龙江省', '鹤岗市', '向阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (693, '中国', '230403', '工农区', '黑龙江省', '鹤岗市', '工农区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (694, '中国', '230404', '南山区', '黑龙江省', '鹤岗市', '南山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (695, '中国', '230405', '兴安区', '黑龙江省', '鹤岗市', '兴安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (696, '中国', '230406', '东山区', '黑龙江省', '鹤岗市', '东山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (697, '中国', '230407', '兴山区', '黑龙江省', '鹤岗市', '兴山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (698, '中国', '230421', '萝北县', '黑龙江省', '鹤岗市', '萝北县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (699, '中国', '230422', '绥滨县', '黑龙江省', '鹤岗市', '绥滨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (700, '中国', '230500', '双鸭山市', '黑龙江省', '双鸭山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (701, '中国', '230502', '尖山区', '黑龙江省', '双鸭山市', '尖山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (702, '中国', '230503', '岭东区', '黑龙江省', '双鸭山市', '岭东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (703, '中国', '230505', '四方台区', '黑龙江省', '双鸭山市', '四方台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (704, '中国', '230506', '宝山区', '黑龙江省', '双鸭山市', '宝山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (705, '中国', '230521', '集贤县', '黑龙江省', '双鸭山市', '集贤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (706, '中国', '230522', '友谊县', '黑龙江省', '双鸭山市', '友谊县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (707, '中国', '230523', '宝清县', '黑龙江省', '双鸭山市', '宝清县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (708, '中国', '230524', '饶河县', '黑龙江省', '双鸭山市', '饶河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (709, '中国', '230600', '大庆市', '黑龙江省', '大庆市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (710, '中国', '230602', '萨尔图区', '黑龙江省', '大庆市', '萨尔图区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (711, '中国', '230603', '龙凤区', '黑龙江省', '大庆市', '龙凤区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (712, '中国', '230604', '让胡路区', '黑龙江省', '大庆市', '让胡路区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (713, '中国', '230605', '红岗区', '黑龙江省', '大庆市', '红岗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (714, '中国', '230606', '大同区', '黑龙江省', '大庆市', '大同区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (715, '中国', '230621', '肇州县', '黑龙江省', '大庆市', '肇州县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (716, '中国', '230622', '肇源县', '黑龙江省', '大庆市', '肇源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (717, '中国', '230623', '林甸县', '黑龙江省', '大庆市', '林甸县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (718, '中国', '230624', '杜尔伯特蒙古族自治县', '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (719, '中国', '230700', '伊春市', '黑龙江省', '伊春市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (720, '中国', '230717', '伊美区', '黑龙江省', '伊春市', '伊美区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (721, '中国', '230718', '乌翠区', '黑龙江省', '伊春市', '乌翠区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (722, '中国', '230719', '友好区', '黑龙江省', '伊春市', '友好区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (723, '中国', '230722', '嘉荫县', '黑龙江省', '伊春市', '嘉荫县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (724, '中国', '230723', '汤旺县', '黑龙江省', '伊春市', '汤旺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (725, '中国', '230724', '丰林县', '黑龙江省', '伊春市', '丰林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (726, '中国', '230725', '大箐山县', '黑龙江省', '伊春市', '大箐山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (727, '中国', '230726', '南岔县', '黑龙江省', '伊春市', '南岔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (728, '中国', '230751', '金林区', '黑龙江省', '伊春市', '金林区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (729, '中国', '230781', '铁力市', '黑龙江省', '伊春市', '铁力市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (730, '中国', '230800', '佳木斯市', '黑龙江省', '佳木斯市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (731, '中国', '230803', '向阳区', '黑龙江省', '佳木斯市', '向阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (732, '中国', '230804', '前进区', '黑龙江省', '佳木斯市', '前进区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (733, '中国', '230805', '东风区', '黑龙江省', '佳木斯市', '东风区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (734, '中国', '230811', '郊区', '黑龙江省', '佳木斯市', '郊区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (735, '中国', '230822', '桦南县', '黑龙江省', '佳木斯市', '桦南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (736, '中国', '230826', '桦川县', '黑龙江省', '佳木斯市', '桦川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (737, '中国', '230828', '汤原县', '黑龙江省', '佳木斯市', '汤原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (738, '中国', '230881', '同江市', '黑龙江省', '佳木斯市', '同江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (739, '中国', '230882', '富锦市', '黑龙江省', '佳木斯市', '富锦市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (740, '中国', '230883', '抚远市', '黑龙江省', '佳木斯市', '抚远市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (741, '中国', '230900', '七台河市', '黑龙江省', '七台河市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (742, '中国', '230902', '新兴区', '黑龙江省', '七台河市', '新兴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (743, '中国', '230903', '桃山区', '黑龙江省', '七台河市', '桃山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (744, '中国', '230904', '茄子河区', '黑龙江省', '七台河市', '茄子河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (745, '中国', '230921', '勃利县', '黑龙江省', '七台河市', '勃利县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (746, '中国', '231000', '牡丹江市', '黑龙江省', '牡丹江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (747, '中国', '231002', '东安区', '黑龙江省', '牡丹江市', '东安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (748, '中国', '231003', '阳明区', '黑龙江省', '牡丹江市', '阳明区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (749, '中国', '231004', '爱民区', '黑龙江省', '牡丹江市', '爱民区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (750, '中国', '231005', '西安区', '黑龙江省', '牡丹江市', '西安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (751, '中国', '231025', '林口县', '黑龙江省', '牡丹江市', '林口县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (752, '中国', '231081', '绥芬河市', '黑龙江省', '牡丹江市', '绥芬河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (753, '中国', '231083', '海林市', '黑龙江省', '牡丹江市', '海林市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (754, '中国', '231084', '宁安市', '黑龙江省', '牡丹江市', '宁安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (755, '中国', '231085', '穆棱市', '黑龙江省', '牡丹江市', '穆棱市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (756, '中国', '231086', '东宁市', '黑龙江省', '牡丹江市', '东宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (757, '中国', '231100', '黑河市', '黑龙江省', '黑河市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (758, '中国', '231102', '爱辉区', '黑龙江省', '黑河市', '爱辉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (759, '中国', '231123', '逊克县', '黑龙江省', '黑河市', '逊克县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (760, '中国', '231124', '孙吴县', '黑龙江省', '黑河市', '孙吴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (761, '中国', '231181', '北安市', '黑龙江省', '黑河市', '北安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (762, '中国', '231182', '五大连池市', '黑龙江省', '黑河市', '五大连池市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (763, '中国', '231183', '嫩江市', '黑龙江省', '黑河市', '嫩江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (764, '中国', '231200', '绥化市', '黑龙江省', '绥化市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (765, '中国', '231202', '北林区', '黑龙江省', '绥化市', '北林区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (766, '中国', '231221', '望奎县', '黑龙江省', '绥化市', '望奎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (767, '中国', '231222', '兰西县', '黑龙江省', '绥化市', '兰西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (768, '中国', '231223', '青冈县', '黑龙江省', '绥化市', '青冈县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (769, '中国', '231224', '庆安县', '黑龙江省', '绥化市', '庆安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (770, '中国', '231225', '明水县', '黑龙江省', '绥化市', '明水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (771, '中国', '231226', '绥棱县', '黑龙江省', '绥化市', '绥棱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (772, '中国', '231281', '安达市', '黑龙江省', '绥化市', '安达市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (773, '中国', '231282', '肇东市', '黑龙江省', '绥化市', '肇东市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (774, '中国', '231283', '海伦市', '黑龙江省', '绥化市', '海伦市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (775, '中国', '232700', '大兴安岭地区', '黑龙江省', '大兴安岭地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (776, '中国', '232701', '漠河市', '黑龙江省', '大兴安岭地区', '漠河市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (777, '中国', '232721', '呼玛县', '黑龙江省', '大兴安岭地区', '呼玛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (778, '中国', '232722', '塔河县', '黑龙江省', '大兴安岭地区', '塔河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (779, '中国', '310000', '上海市', '上海市', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (780, '中国', '310101', '黄浦区', '上海市', '黄浦区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (781, '中国', '310104', '徐汇区', '上海市', '徐汇区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (782, '中国', '310105', '长宁区', '上海市', '长宁区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (783, '中国', '310106', '静安区', '上海市', '静安区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (784, '中国', '310107', '普陀区', '上海市', '普陀区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (785, '中国', '310109', '虹口区', '上海市', '虹口区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (786, '中国', '310110', '杨浦区', '上海市', '杨浦区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (787, '中国', '310112', '闵行区', '上海市', '闵行区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (788, '中国', '310113', '宝山区', '上海市', '宝山区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (789, '中国', '310114', '嘉定区', '上海市', '嘉定区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (790, '中国', '310115', '浦东新区', '上海市', '浦东新区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (791, '中国', '310116', '金山区', '上海市', '金山区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (792, '中国', '310117', '松江区', '上海市', '松江区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (793, '中国', '310118', '青浦区', '上海市', '青浦区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (794, '中国', '310120', '奉贤区', '上海市', '奉贤区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (796, '中国', '320000', '江苏省', '江苏省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (797, '中国', '320100', '南京市', '江苏省', '南京市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (798, '中国', '320102', '玄武区', '江苏省', '南京市', '玄武区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (799, '中国', '320104', '秦淮区', '江苏省', '南京市', '秦淮区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (800, '中国', '320105', '建邺区', '江苏省', '南京市', '建邺区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (801, '中国', '320106', '鼓楼区', '江苏省', '南京市', '鼓楼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (802, '中国', '320111', '浦口区', '江苏省', '南京市', '浦口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (803, '中国', '320113', '栖霞区', '江苏省', '南京市', '栖霞区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (804, '中国', '320114', '雨花台区', '江苏省', '南京市', '雨花台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (805, '中国', '320115', '江宁区', '江苏省', '南京市', '江宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (806, '中国', '320116', '六合区', '江苏省', '南京市', '六合区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (807, '中国', '320117', '溧水区', '江苏省', '南京市', '溧水区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (808, '中国', '320118', '高淳区', '江苏省', '南京市', '高淳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (809, '中国', '320200', '无锡市', '江苏省', '无锡市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (810, '中国', '320205', '锡山区', '江苏省', '无锡市', '锡山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (811, '中国', '320206', '惠山区', '江苏省', '无锡市', '惠山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (812, '中国', '320211', '滨湖区', '江苏省', '无锡市', '滨湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (813, '中国', '320213', '梁溪区', '江苏省', '无锡市', '梁溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (814, '中国', '320214', '新吴区', '江苏省', '无锡市', '新吴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (815, '中国', '320281', '江阴市', '江苏省', '无锡市', '江阴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (816, '中国', '320282', '宜兴市', '江苏省', '无锡市', '宜兴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (817, '中国', '320300', '徐州市', '江苏省', '徐州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (818, '中国', '320302', '鼓楼区', '江苏省', '徐州市', '鼓楼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (819, '中国', '320303', '云龙区', '江苏省', '徐州市', '云龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (820, '中国', '320305', '贾汪区', '江苏省', '徐州市', '贾汪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (821, '中国', '320311', '泉山区', '江苏省', '徐州市', '泉山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (822, '中国', '320312', '铜山区', '江苏省', '徐州市', '铜山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (823, '中国', '320321', '丰县', '江苏省', '徐州市', '丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (824, '中国', '320322', '沛县', '江苏省', '徐州市', '沛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (825, '中国', '320324', '睢宁县', '江苏省', '徐州市', '睢宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (826, '中国', '320381', '新沂市', '江苏省', '徐州市', '新沂市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (827, '中国', '320382', '邳州市', '江苏省', '徐州市', '邳州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (828, '中国', '320400', '常州市', '江苏省', '常州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (829, '中国', '320402', '天宁区', '江苏省', '常州市', '天宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (830, '中国', '320404', '钟楼区', '江苏省', '常州市', '钟楼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (831, '中国', '320411', '新北区', '江苏省', '常州市', '新北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (832, '中国', '320412', '武进区', '江苏省', '常州市', '武进区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (833, '中国', '320413', '金坛区', '江苏省', '常州市', '金坛区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (834, '中国', '320481', '溧阳市', '江苏省', '常州市', '溧阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (835, '中国', '320500', '苏州市', '江苏省', '苏州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (836, '中国', '320505', '虎丘区', '江苏省', '苏州市', '虎丘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (837, '中国', '320506', '吴中区', '江苏省', '苏州市', '吴中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (838, '中国', '320507', '相城区', '江苏省', '苏州市', '相城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (839, '中国', '320508', '姑苏区', '江苏省', '苏州市', '姑苏区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (840, '中国', '320509', '吴江区', '江苏省', '苏州市', '吴江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (841, '中国', '320581', '常熟市', '江苏省', '苏州市', '常熟市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (842, '中国', '320582', '张家港市', '江苏省', '苏州市', '张家港市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (843, '中国', '320583', '昆山市', '江苏省', '苏州市', '昆山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (844, '中国', '320585', '太仓市', '江苏省', '苏州市', '太仓市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (845, '中国', '320600', '南通市', '江苏省', '南通市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (846, '中国', '320612', '通州区', '江苏省', '南通市', '通州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (847, '中国', '320613', '崇川区', '江苏省', '南通市', '崇川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (848, '中国', '320614', '海门区', '江苏省', '南通市', '海门区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (849, '中国', '320623', '如东县', '江苏省', '南通市', '如东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (850, '中国', '320681', '启东市', '江苏省', '南通市', '启东市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (851, '中国', '320682', '如皋市', '江苏省', '南通市', '如皋市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (852, '中国', '320685', '海安市', '江苏省', '南通市', '海安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (853, '中国', '320700', '连云港市', '江苏省', '连云港市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (854, '中国', '320703', '连云区', '江苏省', '连云港市', '连云区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (855, '中国', '320706', '海州区', '江苏省', '连云港市', '海州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (856, '中国', '320707', '赣榆区', '江苏省', '连云港市', '赣榆区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (857, '中国', '320722', '东海县', '江苏省', '连云港市', '东海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (858, '中国', '320723', '灌云县', '江苏省', '连云港市', '灌云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (859, '中国', '320724', '灌南县', '江苏省', '连云港市', '灌南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (860, '中国', '320800', '淮安市', '江苏省', '淮安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (861, '中国', '320803', '淮安区', '江苏省', '淮安市', '淮安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (862, '中国', '320804', '淮阴区', '江苏省', '淮安市', '淮阴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (863, '中国', '320812', '清江浦区', '江苏省', '淮安市', '清江浦区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (864, '中国', '320813', '洪泽区', '江苏省', '淮安市', '洪泽区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (865, '中国', '320826', '涟水县', '江苏省', '淮安市', '涟水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (866, '中国', '320830', '盱眙县', '江苏省', '淮安市', '盱眙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (867, '中国', '320831', '金湖县', '江苏省', '淮安市', '金湖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (868, '中国', '320900', '盐城市', '江苏省', '盐城市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (869, '中国', '320902', '亭湖区', '江苏省', '盐城市', '亭湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (870, '中国', '320903', '盐都区', '江苏省', '盐城市', '盐都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (871, '中国', '320904', '大丰区', '江苏省', '盐城市', '大丰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (872, '中国', '320921', '响水县', '江苏省', '盐城市', '响水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (873, '中国', '320922', '滨海县', '江苏省', '盐城市', '滨海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (874, '中国', '320923', '阜宁县', '江苏省', '盐城市', '阜宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (875, '中国', '320924', '射阳县', '江苏省', '盐城市', '射阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (876, '中国', '320925', '建湖县', '江苏省', '盐城市', '建湖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (877, '中国', '320981', '东台市', '江苏省', '盐城市', '东台市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (878, '中国', '321000', '扬州市', '江苏省', '扬州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (879, '中国', '321002', '广陵区', '江苏省', '扬州市', '广陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (880, '中国', '321003', '邗江区', '江苏省', '扬州市', '邗江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (881, '中国', '321012', '江都区', '江苏省', '扬州市', '江都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (882, '中国', '321023', '宝应县', '江苏省', '扬州市', '宝应县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (883, '中国', '321081', '仪征市', '江苏省', '扬州市', '仪征市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (884, '中国', '321084', '高邮市', '江苏省', '扬州市', '高邮市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (885, '中国', '321100', '镇江市', '江苏省', '镇江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (886, '中国', '321102', '京口区', '江苏省', '镇江市', '京口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (887, '中国', '321111', '润州区', '江苏省', '镇江市', '润州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (888, '中国', '321112', '丹徒区', '江苏省', '镇江市', '丹徒区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (889, '中国', '321181', '丹阳市', '江苏省', '镇江市', '丹阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (890, '中国', '321182', '扬中市', '江苏省', '镇江市', '扬中市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (891, '中国', '321183', '句容市', '江苏省', '镇江市', '句容市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (892, '中国', '321200', '泰州市', '江苏省', '泰州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (893, '中国', '321202', '海陵区', '江苏省', '泰州市', '海陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (894, '中国', '321203', '高港区', '江苏省', '泰州市', '高港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (895, '中国', '321204', '姜堰区', '江苏省', '泰州市', '姜堰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (896, '中国', '321281', '兴化市', '江苏省', '泰州市', '兴化市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (897, '中国', '321282', '靖江市', '江苏省', '泰州市', '靖江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (898, '中国', '321283', '泰兴市', '江苏省', '泰州市', '泰兴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (899, '中国', '321300', '宿迁市', '江苏省', '宿迁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (900, '中国', '321302', '宿城区', '江苏省', '宿迁市', '宿城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (901, '中国', '321311', '宿豫区', '江苏省', '宿迁市', '宿豫区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (902, '中国', '321322', '沭阳县', '江苏省', '宿迁市', '沭阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (903, '中国', '321323', '泗阳县', '江苏省', '宿迁市', '泗阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (904, '中国', '321324', '泗洪县', '江苏省', '宿迁市', '泗洪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (905, '中国', '330000', '浙江省', '浙江省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (906, '中国', '330100', '杭州市', '浙江省', '杭州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (907, '中国', '330102', '上城区', '浙江省', '杭州市', '上城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (908, '中国', '330103', '下城区', '浙江省', '杭州市', '下城区', 3, 1, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (909, '中国', '330104', '江干区', '浙江省', '杭州市', '江干区', 3, 1, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (910, '中国', '330105', '拱墅区', '浙江省', '杭州市', '拱墅区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (911, '中国', '330106', '西湖区', '浙江省', '杭州市', '西湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (912, '中国', '330108', '滨江区', '浙江省', '杭州市', '滨江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (913, '中国', '330109', '萧山区', '浙江省', '杭州市', '萧山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (914, '中国', '330110', '余杭区', '浙江省', '杭州市', '余杭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (915, '中国', '330111', '富阳区', '浙江省', '杭州市', '富阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (916, '中国', '330112', '临安区', '浙江省', '杭州市', '临安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (917, '中国', '330122', '桐庐县', '浙江省', '杭州市', '桐庐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (918, '中国', '330127', '淳安县', '浙江省', '杭州市', '淳安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (919, '中国', '330182', '建德市', '浙江省', '杭州市', '建德市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (920, '中国', '', '临平区', '浙江省', '杭州市', '临平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (921, '中国', '', '钱塘区', '浙江省', '杭州市', '钱塘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (922, '中国', '330200', '宁波市', '浙江省', '宁波市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (923, '中国', '330203', '海曙区', '浙江省', '宁波市', '海曙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (924, '中国', '330205', '江北区', '浙江省', '宁波市', '江北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (925, '中国', '330206', '北仑区', '浙江省', '宁波市', '北仑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (926, '中国', '330211', '镇海区', '浙江省', '宁波市', '镇海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (927, '中国', '330212', '鄞州区', '浙江省', '宁波市', '鄞州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (928, '中国', '330213', '奉化区', '浙江省', '宁波市', '奉化区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (929, '中国', '330225', '象山县', '浙江省', '宁波市', '象山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (930, '中国', '330226', '宁海县', '浙江省', '宁波市', '宁海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (931, '中国', '330281', '余姚市', '浙江省', '宁波市', '余姚市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (932, '中国', '330282', '慈溪市', '浙江省', '宁波市', '慈溪市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (933, '中国', '330300', '温州市', '浙江省', '温州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (934, '中国', '330302', '鹿城区', '浙江省', '温州市', '鹿城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (935, '中国', '330303', '龙湾区', '浙江省', '温州市', '龙湾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (936, '中国', '330304', '瓯海区', '浙江省', '温州市', '瓯海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (937, '中国', '330305', '洞头区', '浙江省', '温州市', '洞头区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (938, '中国', '330324', '永嘉县', '浙江省', '温州市', '永嘉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (939, '中国', '330326', '平阳县', '浙江省', '温州市', '平阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (940, '中国', '330327', '苍南县', '浙江省', '温州市', '苍南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (941, '中国', '330328', '文成县', '浙江省', '温州市', '文成县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (942, '中国', '330329', '泰顺县', '浙江省', '温州市', '泰顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (943, '中国', '330381', '瑞安市', '浙江省', '温州市', '瑞安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (944, '中国', '330382', '乐清市', '浙江省', '温州市', '乐清市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (945, '中国', '330383', '龙港市', '浙江省', '温州市', '龙港市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (946, '中国', '330400', '嘉兴市', '浙江省', '嘉兴市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (947, '中国', '330402', '南湖区', '浙江省', '嘉兴市', '南湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (948, '中国', '330411', '秀洲区', '浙江省', '嘉兴市', '秀洲区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (949, '中国', '330421', '嘉善县', '浙江省', '嘉兴市', '嘉善县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (950, '中国', '330424', '海盐县', '浙江省', '嘉兴市', '海盐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (951, '中国', '330481', '海宁市', '浙江省', '嘉兴市', '海宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (952, '中国', '330482', '平湖市', '浙江省', '嘉兴市', '平湖市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (953, '中国', '330483', '桐乡市', '浙江省', '嘉兴市', '桐乡市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (954, '中国', '330500', '湖州市', '浙江省', '湖州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (955, '中国', '330502', '吴兴区', '浙江省', '湖州市', '吴兴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (956, '中国', '330503', '南浔区', '浙江省', '湖州市', '南浔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (957, '中国', '330521', '德清县', '浙江省', '湖州市', '德清县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (958, '中国', '330522', '长兴县', '浙江省', '湖州市', '长兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (959, '中国', '330523', '安吉县', '浙江省', '湖州市', '安吉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (960, '中国', '330600', '绍兴市', '浙江省', '绍兴市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (961, '中国', '330602', '越城区', '浙江省', '绍兴市', '越城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (962, '中国', '330603', '柯桥区', '浙江省', '绍兴市', '柯桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (963, '中国', '330604', '上虞区', '浙江省', '绍兴市', '上虞区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (964, '中国', '330624', '新昌县', '浙江省', '绍兴市', '新昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (965, '中国', '330681', '诸暨市', '浙江省', '绍兴市', '诸暨市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (966, '中国', '330683', '嵊州市', '浙江省', '绍兴市', '嵊州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (967, '中国', '330700', '金华市', '浙江省', '金华市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (968, '中国', '330702', '婺城区', '浙江省', '金华市', '婺城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (969, '中国', '330703', '金东区', '浙江省', '金华市', '金东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (970, '中国', '330723', '武义县', '浙江省', '金华市', '武义县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (971, '中国', '330726', '浦江县', '浙江省', '金华市', '浦江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (972, '中国', '330727', '磐安县', '浙江省', '金华市', '磐安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (973, '中国', '330781', '兰溪市', '浙江省', '金华市', '兰溪市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (974, '中国', '330782', '义乌市', '浙江省', '金华市', '义乌市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (975, '中国', '330783', '东阳市', '浙江省', '金华市', '东阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (976, '中国', '330784', '永康市', '浙江省', '金华市', '永康市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (977, '中国', '330800', '衢州市', '浙江省', '衢州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (978, '中国', '330802', '柯城区', '浙江省', '衢州市', '柯城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (979, '中国', '330803', '衢江区', '浙江省', '衢州市', '衢江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (980, '中国', '330822', '常山县', '浙江省', '衢州市', '常山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (981, '中国', '330824', '开化县', '浙江省', '衢州市', '开化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (982, '中国', '330825', '龙游县', '浙江省', '衢州市', '龙游县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (983, '中国', '330881', '江山市', '浙江省', '衢州市', '江山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (984, '中国', '330900', '舟山市', '浙江省', '舟山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (985, '中国', '330902', '定海区', '浙江省', '舟山市', '定海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (986, '中国', '330903', '普陀区', '浙江省', '舟山市', '普陀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (987, '中国', '330921', '岱山县', '浙江省', '舟山市', '岱山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (988, '中国', '330922', '嵊泗县', '浙江省', '舟山市', '嵊泗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (989, '中国', '331000', '台州市', '浙江省', '台州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (990, '中国', '331002', '椒江区', '浙江省', '台州市', '椒江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (991, '中国', '331003', '黄岩区', '浙江省', '台州市', '黄岩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (992, '中国', '331004', '路桥区', '浙江省', '台州市', '路桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (993, '中国', '331022', '三门县', '浙江省', '台州市', '三门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (994, '中国', '331023', '天台县', '浙江省', '台州市', '天台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (995, '中国', '331024', '仙居县', '浙江省', '台州市', '仙居县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (996, '中国', '331081', '温岭市', '浙江省', '台州市', '温岭市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (997, '中国', '331082', '临海市', '浙江省', '台州市', '临海市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (998, '中国', '331083', '玉环市', '浙江省', '台州市', '玉环市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (999, '中国', '331100', '丽水市', '浙江省', '丽水市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1000, '中国', '331102', '莲都区', '浙江省', '丽水市', '莲都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1001, '中国', '331121', '青田县', '浙江省', '丽水市', '青田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1002, '中国', '331122', '缙云县', '浙江省', '丽水市', '缙云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1003, '中国', '331123', '遂昌县', '浙江省', '丽水市', '遂昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1004, '中国', '331124', '松阳县', '浙江省', '丽水市', '松阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1005, '中国', '331125', '云和县', '浙江省', '丽水市', '云和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1006, '中国', '331126', '庆元县', '浙江省', '丽水市', '庆元县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1007, '中国', '331127', '景宁畲族自治县', '浙江省', '丽水市', '景宁畲族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1008, '中国', '331181', '龙泉市', '浙江省', '丽水市', '龙泉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1009, '中国', '340000', '安徽省', '安徽省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1010, '中国', '340100', '合肥市', '安徽省', '合肥市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1011, '中国', '340102', '瑶海区', '安徽省', '合肥市', '瑶海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1012, '中国', '340103', '庐阳区', '安徽省', '合肥市', '庐阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1013, '中国', '340104', '蜀山区', '安徽省', '合肥市', '蜀山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1014, '中国', '340111', '包河区', '安徽省', '合肥市', '包河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1015, '中国', '340121', '长丰县', '安徽省', '合肥市', '长丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1016, '中国', '340122', '肥东县', '安徽省', '合肥市', '肥东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1017, '中国', '340123', '肥西县', '安徽省', '合肥市', '肥西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1018, '中国', '340124', '庐江县', '安徽省', '合肥市', '庐江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1019, '中国', '340181', '巢湖市', '安徽省', '合肥市', '巢湖市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1020, '中国', '340200', '芜湖市', '安徽省', '芜湖市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1021, '中国', '340202', '镜湖区', '安徽省', '芜湖市', '镜湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1022, '中国', '340207', '鸠江区', '安徽省', '芜湖市', '鸠江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1023, '中国', '340209', '弋江区', '安徽省', '芜湖市', '弋江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1024, '中国', '340210', '湾沚区', '安徽省', '芜湖市', '湾沚区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1025, '中国', '340212', '繁昌区', '安徽省', '芜湖市', '繁昌区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1026, '中国', '340223', '南陵县', '安徽省', '芜湖市', '南陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1027, '中国', '340281', '无为市', '安徽省', '芜湖市', '无为市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1028, '中国', '340300', '蚌埠市', '安徽省', '蚌埠市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1029, '中国', '340302', '龙子湖区', '安徽省', '蚌埠市', '龙子湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1030, '中国', '340303', '蚌山区', '安徽省', '蚌埠市', '蚌山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1031, '中国', '340304', '禹会区', '安徽省', '蚌埠市', '禹会区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1032, '中国', '340311', '淮上区', '安徽省', '蚌埠市', '淮上区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1033, '中国', '340321', '怀远县', '安徽省', '蚌埠市', '怀远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1034, '中国', '340322', '五河县', '安徽省', '蚌埠市', '五河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1035, '中国', '340323', '固镇县', '安徽省', '蚌埠市', '固镇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1036, '中国', '340400', '淮南市', '安徽省', '淮南市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1037, '中国', '340402', '大通区', '安徽省', '淮南市', '大通区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1038, '中国', '340403', '田家庵区', '安徽省', '淮南市', '田家庵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1039, '中国', '340404', '谢家集区', '安徽省', '淮南市', '谢家集区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1040, '中国', '340405', '八公山区', '安徽省', '淮南市', '八公山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1041, '中国', '340406', '潘集区', '安徽省', '淮南市', '潘集区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1042, '中国', '340421', '凤台县', '安徽省', '淮南市', '凤台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1043, '中国', '340422', '寿县', '安徽省', '淮南市', '寿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1044, '中国', '340500', '马鞍山市', '安徽省', '马鞍山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1045, '中国', '340503', '花山区', '安徽省', '马鞍山市', '花山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1046, '中国', '340504', '雨山区', '安徽省', '马鞍山市', '雨山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1047, '中国', '340506', '博望区', '安徽省', '马鞍山市', '博望区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1048, '中国', '340521', '当涂县', '安徽省', '马鞍山市', '当涂县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1049, '中国', '340522', '含山县', '安徽省', '马鞍山市', '含山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1050, '中国', '340523', '和县', '安徽省', '马鞍山市', '和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1051, '中国', '340600', '淮北市', '安徽省', '淮北市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1052, '中国', '340602', '杜集区', '安徽省', '淮北市', '杜集区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1053, '中国', '340603', '相山区', '安徽省', '淮北市', '相山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1054, '中国', '340604', '烈山区', '安徽省', '淮北市', '烈山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1055, '中国', '340621', '濉溪县', '安徽省', '淮北市', '濉溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1056, '中国', '340700', '铜陵市', '安徽省', '铜陵市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1057, '中国', '340705', '铜官区', '安徽省', '铜陵市', '铜官区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1058, '中国', '340706', '义安区', '安徽省', '铜陵市', '义安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1059, '中国', '340711', '郊区', '安徽省', '铜陵市', '郊区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1060, '中国', '340722', '枞阳县', '安徽省', '铜陵市', '枞阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1061, '中国', '340800', '安庆市', '安徽省', '安庆市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1062, '中国', '340802', '迎江区', '安徽省', '安庆市', '迎江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1063, '中国', '340803', '大观区', '安徽省', '安庆市', '大观区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1064, '中国', '340811', '宜秀区', '安徽省', '安庆市', '宜秀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1065, '中国', '340822', '怀宁县', '安徽省', '安庆市', '怀宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1066, '中国', '340825', '太湖县', '安徽省', '安庆市', '太湖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1067, '中国', '340826', '宿松县', '安徽省', '安庆市', '宿松县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1068, '中国', '340827', '望江县', '安徽省', '安庆市', '望江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1069, '中国', '340828', '岳西县', '安徽省', '安庆市', '岳西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1070, '中国', '340881', '桐城市', '安徽省', '安庆市', '桐城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1071, '中国', '340882', '潜山市', '安徽省', '安庆市', '潜山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1072, '中国', '341000', '黄山市', '安徽省', '黄山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1073, '中国', '341002', '屯溪区', '安徽省', '黄山市', '屯溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1074, '中国', '341003', '黄山区', '安徽省', '黄山市', '黄山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1075, '中国', '341004', '徽州区', '安徽省', '黄山市', '徽州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1076, '中国', '341021', '歙县', '安徽省', '黄山市', '歙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1077, '中国', '341022', '休宁县', '安徽省', '黄山市', '休宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1078, '中国', '341023', '黟县', '安徽省', '黄山市', '黟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1079, '中国', '341024', '祁门县', '安徽省', '黄山市', '祁门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1080, '中国', '341100', '滁州市', '安徽省', '滁州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1081, '中国', '341102', '琅琊区', '安徽省', '滁州市', '琅琊区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1082, '中国', '341103', '南谯区', '安徽省', '滁州市', '南谯区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1083, '中国', '341122', '来安县', '安徽省', '滁州市', '来安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1084, '中国', '341124', '全椒县', '安徽省', '滁州市', '全椒县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1085, '中国', '341125', '定远县', '安徽省', '滁州市', '定远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1086, '中国', '341126', '凤阳县', '安徽省', '滁州市', '凤阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1087, '中国', '341181', '天长市', '安徽省', '滁州市', '天长市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1088, '中国', '341182', '明光市', '安徽省', '滁州市', '明光市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1089, '中国', '341200', '阜阳市', '安徽省', '阜阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1090, '中国', '341202', '颍州区', '安徽省', '阜阳市', '颍州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1091, '中国', '341203', '颍东区', '安徽省', '阜阳市', '颍东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1092, '中国', '341204', '颍泉区', '安徽省', '阜阳市', '颍泉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1093, '中国', '341221', '临泉县', '安徽省', '阜阳市', '临泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1094, '中国', '341222', '太和县', '安徽省', '阜阳市', '太和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1095, '中国', '341225', '阜南县', '安徽省', '阜阳市', '阜南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1096, '中国', '341226', '颍上县', '安徽省', '阜阳市', '颍上县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1097, '中国', '341282', '界首市', '安徽省', '阜阳市', '界首市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1098, '中国', '341300', '宿州市', '安徽省', '宿州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1099, '中国', '341302', '埇桥区', '安徽省', '宿州市', '埇桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1100, '中国', '341321', '砀山县', '安徽省', '宿州市', '砀山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1101, '中国', '341322', '萧县', '安徽省', '宿州市', '萧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1102, '中国', '341323', '灵璧县', '安徽省', '宿州市', '灵璧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1103, '中国', '341324', '泗县', '安徽省', '宿州市', '泗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1104, '中国', '341500', '六安市', '安徽省', '六安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1105, '中国', '341502', '金安区', '安徽省', '六安市', '金安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1106, '中国', '341503', '裕安区', '安徽省', '六安市', '裕安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1107, '中国', '341504', '叶集区', '安徽省', '六安市', '叶集区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1108, '中国', '341522', '霍邱县', '安徽省', '六安市', '霍邱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1109, '中国', '341523', '舒城县', '安徽省', '六安市', '舒城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1110, '中国', '341524', '金寨县', '安徽省', '六安市', '金寨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1111, '中国', '341525', '霍山县', '安徽省', '六安市', '霍山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1112, '中国', '341600', '亳州市', '安徽省', '亳州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1113, '中国', '341602', '谯城区', '安徽省', '亳州市', '谯城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1114, '中国', '341621', '涡阳县', '安徽省', '亳州市', '涡阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1115, '中国', '341622', '蒙城县', '安徽省', '亳州市', '蒙城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1116, '中国', '341623', '利辛县', '安徽省', '亳州市', '利辛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1117, '中国', '341700', '池州市', '安徽省', '池州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1118, '中国', '341702', '贵池区', '安徽省', '池州市', '贵池区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1119, '中国', '341721', '东至县', '安徽省', '池州市', '东至县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1120, '中国', '341722', '石台县', '安徽省', '池州市', '石台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1121, '中国', '341723', '青阳县', '安徽省', '池州市', '青阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1122, '中国', '341800', '宣城市', '安徽省', '宣城市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1123, '中国', '341802', '宣州区', '安徽省', '宣城市', '宣州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1124, '中国', '341821', '郎溪县', '安徽省', '宣城市', '郎溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1125, '中国', '341823', '泾县', '安徽省', '宣城市', '泾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1126, '中国', '341824', '绩溪县', '安徽省', '宣城市', '绩溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1127, '中国', '341825', '旌德县', '安徽省', '宣城市', '旌德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1128, '中国', '341881', '宁国市', '安徽省', '宣城市', '宁国市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1129, '中国', '341882', '广德市', '安徽省', '宣城市', '广德市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1130, '中国', '350000', '福建省', '福建省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1131, '中国', '350100', '福州市', '福建省', '福州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1132, '中国', '350102', '鼓楼区', '福建省', '福州市', '鼓楼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1133, '中国', '350103', '台江区', '福建省', '福州市', '台江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1134, '中国', '350104', '仓山区', '福建省', '福州市', '仓山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1135, '中国', '350105', '马尾区', '福建省', '福州市', '马尾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1136, '中国', '350111', '晋安区', '福建省', '福州市', '晋安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1137, '中国', '350112', '长乐区', '福建省', '福州市', '长乐区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1138, '中国', '350121', '闽侯县', '福建省', '福州市', '闽侯县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1139, '中国', '350122', '连江县', '福建省', '福州市', '连江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1140, '中国', '350123', '罗源县', '福建省', '福州市', '罗源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1141, '中国', '350124', '闽清县', '福建省', '福州市', '闽清县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1142, '中国', '350125', '永泰县', '福建省', '福州市', '永泰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1143, '中国', '350128', '平潭县', '福建省', '福州市', '平潭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1144, '中国', '350181', '福清市', '福建省', '福州市', '福清市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1145, '中国', '350200', '厦门市', '福建省', '厦门市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1146, '中国', '350203', '思明区', '福建省', '厦门市', '思明区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1147, '中国', '350205', '海沧区', '福建省', '厦门市', '海沧区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1148, '中国', '350206', '湖里区', '福建省', '厦门市', '湖里区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1149, '中国', '350211', '集美区', '福建省', '厦门市', '集美区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1150, '中国', '350212', '同安区', '福建省', '厦门市', '同安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1151, '中国', '350213', '翔安区', '福建省', '厦门市', '翔安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1152, '中国', '350300', '莆田市', '福建省', '莆田市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1153, '中国', '350302', '城厢区', '福建省', '莆田市', '城厢区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1154, '中国', '350303', '涵江区', '福建省', '莆田市', '涵江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1155, '中国', '350304', '荔城区', '福建省', '莆田市', '荔城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1156, '中国', '350305', '秀屿区', '福建省', '莆田市', '秀屿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1157, '中国', '350322', '仙游县', '福建省', '莆田市', '仙游县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1158, '中国', '350400', '三明市', '福建省', '三明市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1159, '中国', '350403', '三元区', '福建省', '三明市', '三元区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1160, '中国', '350421', '明溪县', '福建省', '三明市', '明溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1161, '中国', '350423', '清流县', '福建省', '三明市', '清流县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1162, '中国', '350424', '宁化县', '福建省', '三明市', '宁化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1163, '中国', '350425', '大田县', '福建省', '三明市', '大田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1164, '中国', '350426', '尤溪县', '福建省', '三明市', '尤溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1165, '中国', '350427', '沙县区', '福建省', '三明市', '沙县区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1166, '中国', '350428', '将乐县', '福建省', '三明市', '将乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1167, '中国', '350429', '泰宁县', '福建省', '三明市', '泰宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1168, '中国', '350430', '建宁县', '福建省', '三明市', '建宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1169, '中国', '350481', '永安市', '福建省', '三明市', '永安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1170, '中国', '350500', '泉州市', '福建省', '泉州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1171, '中国', '350502', '鲤城区', '福建省', '泉州市', '鲤城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1172, '中国', '350503', '丰泽区', '福建省', '泉州市', '丰泽区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1173, '中国', '350504', '洛江区', '福建省', '泉州市', '洛江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1174, '中国', '350505', '泉港区', '福建省', '泉州市', '泉港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1175, '中国', '350521', '惠安县', '福建省', '泉州市', '惠安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1176, '中国', '350524', '安溪县', '福建省', '泉州市', '安溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1177, '中国', '350525', '永春县', '福建省', '泉州市', '永春县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1178, '中国', '350526', '德化县', '福建省', '泉州市', '德化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1179, '中国', '350527', '金门县', '福建省', '泉州市', '金门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1180, '中国', '350581', '石狮市', '福建省', '泉州市', '石狮市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1181, '中国', '350582', '晋江市', '福建省', '泉州市', '晋江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1182, '中国', '350583', '南安市', '福建省', '泉州市', '南安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1183, '中国', '350600', '漳州市', '福建省', '漳州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1184, '中国', '350602', '芗城区', '福建省', '漳州市', '芗城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1185, '中国', '350603', '龙文区', '福建省', '漳州市', '龙文区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1186, '中国', '350622', '云霄县', '福建省', '漳州市', '云霄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1187, '中国', '350623', '漳浦县', '福建省', '漳州市', '漳浦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1188, '中国', '350624', '诏安县', '福建省', '漳州市', '诏安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1189, '中国', '350625', '长泰县', '福建省', '漳州市', '长泰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1190, '中国', '350626', '东山县', '福建省', '漳州市', '东山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1191, '中国', '350627', '南靖县', '福建省', '漳州市', '南靖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1192, '中国', '350628', '平和县', '福建省', '漳州市', '平和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1193, '中国', '350629', '华安县', '福建省', '漳州市', '华安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1194, '中国', '350681', '龙海市', '福建省', '漳州市', '龙海市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1195, '中国', '350700', '南平市', '福建省', '南平市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1196, '中国', '350702', '延平区', '福建省', '南平市', '延平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1197, '中国', '350703', '建阳区', '福建省', '南平市', '建阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1198, '中国', '350721', '顺昌县', '福建省', '南平市', '顺昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1199, '中国', '350722', '浦城县', '福建省', '南平市', '浦城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1200, '中国', '350723', '光泽县', '福建省', '南平市', '光泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1201, '中国', '350724', '松溪县', '福建省', '南平市', '松溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1202, '中国', '350725', '政和县', '福建省', '南平市', '政和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1203, '中国', '350781', '邵武市', '福建省', '南平市', '邵武市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1204, '中国', '350782', '武夷山市', '福建省', '南平市', '武夷山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1205, '中国', '350783', '建瓯市', '福建省', '南平市', '建瓯市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1206, '中国', '350800', '龙岩市', '福建省', '龙岩市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1207, '中国', '350802', '新罗区', '福建省', '龙岩市', '新罗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1208, '中国', '350803', '永定区', '福建省', '龙岩市', '永定区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1209, '中国', '350821', '长汀县', '福建省', '龙岩市', '长汀县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1210, '中国', '350823', '上杭县', '福建省', '龙岩市', '上杭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1211, '中国', '350824', '武平县', '福建省', '龙岩市', '武平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1212, '中国', '350825', '连城县', '福建省', '龙岩市', '连城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1213, '中国', '350881', '漳平市', '福建省', '龙岩市', '漳平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1214, '中国', '350900', '宁德市', '福建省', '宁德市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1215, '中国', '350902', '蕉城区', '福建省', '宁德市', '蕉城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1216, '中国', '350921', '霞浦县', '福建省', '宁德市', '霞浦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1217, '中国', '350922', '古田县', '福建省', '宁德市', '古田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1218, '中国', '350923', '屏南县', '福建省', '宁德市', '屏南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1219, '中国', '350924', '寿宁县', '福建省', '宁德市', '寿宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1220, '中国', '350925', '周宁县', '福建省', '宁德市', '周宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1221, '中国', '350926', '柘荣县', '福建省', '宁德市', '柘荣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1222, '中国', '350981', '福安市', '福建省', '宁德市', '福安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1223, '中国', '350982', '福鼎市', '福建省', '宁德市', '福鼎市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1224, '中国', '360000', '江西省', '江西省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1225, '中国', '360100', '南昌市', '江西省', '南昌市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1226, '中国', '360102', '东湖区', '江西省', '南昌市', '东湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1227, '中国', '360103', '西湖区', '江西省', '南昌市', '西湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1228, '中国', '360104', '青云谱区', '江西省', '南昌市', '青云谱区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1229, '中国', '360111', '青山湖区', '江西省', '南昌市', '青山湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1230, '中国', '360112', '新建区', '江西省', '南昌市', '新建区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1231, '中国', '360113', '红谷滩区', '江西省', '南昌市', '红谷滩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1232, '中国', '360121', '南昌县', '江西省', '南昌市', '南昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1233, '中国', '360123', '安义县', '江西省', '南昌市', '安义县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1234, '中国', '360124', '进贤县', '江西省', '南昌市', '进贤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1235, '中国', '360200', '景德镇市', '江西省', '景德镇市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1236, '中国', '360202', '昌江区', '江西省', '景德镇市', '昌江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1237, '中国', '360203', '珠山区', '江西省', '景德镇市', '珠山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1238, '中国', '360222', '浮梁县', '江西省', '景德镇市', '浮梁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1239, '中国', '360281', '乐平市', '江西省', '景德镇市', '乐平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1240, '中国', '360300', '萍乡市', '江西省', '萍乡市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1241, '中国', '360302', '安源区', '江西省', '萍乡市', '安源区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1242, '中国', '360313', '湘东区', '江西省', '萍乡市', '湘东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1243, '中国', '360321', '莲花县', '江西省', '萍乡市', '莲花县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1244, '中国', '360322', '上栗县', '江西省', '萍乡市', '上栗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1245, '中国', '360323', '芦溪县', '江西省', '萍乡市', '芦溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1246, '中国', '360400', '九江市', '江西省', '九江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1247, '中国', '360402', '濂溪区', '江西省', '九江市', '濂溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1248, '中国', '360403', '浔阳区', '江西省', '九江市', '浔阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1249, '中国', '360404', '柴桑区', '江西省', '九江市', '柴桑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1250, '中国', '360423', '武宁县', '江西省', '九江市', '武宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1251, '中国', '360424', '修水县', '江西省', '九江市', '修水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1252, '中国', '360425', '永修县', '江西省', '九江市', '永修县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1253, '中国', '360426', '德安县', '江西省', '九江市', '德安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1254, '中国', '360428', '都昌县', '江西省', '九江市', '都昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1255, '中国', '360429', '湖口县', '江西省', '九江市', '湖口县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1256, '中国', '360430', '彭泽县', '江西省', '九江市', '彭泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1257, '中国', '360481', '瑞昌市', '江西省', '九江市', '瑞昌市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1258, '中国', '360482', '共青城市', '江西省', '九江市', '共青城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1259, '中国', '360483', '庐山市', '江西省', '九江市', '庐山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1260, '中国', '360500', '新余市', '江西省', '新余市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1261, '中国', '360502', '渝水区', '江西省', '新余市', '渝水区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1262, '中国', '360521', '分宜县', '江西省', '新余市', '分宜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1263, '中国', '360600', '鹰潭市', '江西省', '鹰潭市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1264, '中国', '360602', '月湖区', '江西省', '鹰潭市', '月湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1265, '中国', '360603', '余江区', '江西省', '鹰潭市', '余江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1266, '中国', '360681', '贵溪市', '江西省', '鹰潭市', '贵溪市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1267, '中国', '360700', '赣州市', '江西省', '赣州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1268, '中国', '360702', '章贡区', '江西省', '赣州市', '章贡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1269, '中国', '360703', '南康区', '江西省', '赣州市', '南康区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1270, '中国', '360704', '赣县区', '江西省', '赣州市', '赣县区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1271, '中国', '360722', '信丰县', '江西省', '赣州市', '信丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1272, '中国', '360723', '大余县', '江西省', '赣州市', '大余县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1273, '中国', '360724', '上犹县', '江西省', '赣州市', '上犹县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1274, '中国', '360725', '崇义县', '江西省', '赣州市', '崇义县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1275, '中国', '360726', '安远县', '江西省', '赣州市', '安远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1276, '中国', '360728', '定南县', '江西省', '赣州市', '定南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1277, '中国', '360729', '全南县', '江西省', '赣州市', '全南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1278, '中国', '360730', '宁都县', '江西省', '赣州市', '宁都县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1279, '中国', '360731', '于都县', '江西省', '赣州市', '于都县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1280, '中国', '360732', '兴国县', '江西省', '赣州市', '兴国县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1281, '中国', '360733', '会昌县', '江西省', '赣州市', '会昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1282, '中国', '360734', '寻乌县', '江西省', '赣州市', '寻乌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1283, '中国', '360735', '石城县', '江西省', '赣州市', '石城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1284, '中国', '360781', '瑞金市', '江西省', '赣州市', '瑞金市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1285, '中国', '360783', '龙南市', '江西省', '赣州市', '龙南市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1286, '中国', '360800', '吉安市', '江西省', '吉安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1287, '中国', '360802', '吉州区', '江西省', '吉安市', '吉州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1288, '中国', '360803', '青原区', '江西省', '吉安市', '青原区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1289, '中国', '360821', '吉安县', '江西省', '吉安市', '吉安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1290, '中国', '360822', '吉水县', '江西省', '吉安市', '吉水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1291, '中国', '360823', '峡江县', '江西省', '吉安市', '峡江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1292, '中国', '360824', '新干县', '江西省', '吉安市', '新干县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1293, '中国', '360825', '永丰县', '江西省', '吉安市', '永丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1294, '中国', '360826', '泰和县', '江西省', '吉安市', '泰和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1295, '中国', '360827', '遂川县', '江西省', '吉安市', '遂川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1296, '中国', '360828', '万安县', '江西省', '吉安市', '万安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1297, '中国', '360829', '安福县', '江西省', '吉安市', '安福县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1298, '中国', '360830', '永新县', '江西省', '吉安市', '永新县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1299, '中国', '360881', '井冈山市', '江西省', '吉安市', '井冈山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1300, '中国', '360900', '宜春市', '江西省', '宜春市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1301, '中国', '360902', '袁州区', '江西省', '宜春市', '袁州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1302, '中国', '360921', '奉新县', '江西省', '宜春市', '奉新县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1303, '中国', '360922', '万载县', '江西省', '宜春市', '万载县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1304, '中国', '360923', '上高县', '江西省', '宜春市', '上高县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1305, '中国', '360924', '宜丰县', '江西省', '宜春市', '宜丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1306, '中国', '360925', '靖安县', '江西省', '宜春市', '靖安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1307, '中国', '360926', '铜鼓县', '江西省', '宜春市', '铜鼓县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1308, '中国', '360981', '丰城市', '江西省', '宜春市', '丰城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1309, '中国', '360982', '樟树市', '江西省', '宜春市', '樟树市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1310, '中国', '360983', '高安市', '江西省', '宜春市', '高安市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1311, '中国', '361000', '抚州市', '江西省', '抚州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1312, '中国', '361002', '临川区', '江西省', '抚州市', '临川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1313, '中国', '361003', '东乡区', '江西省', '抚州市', '东乡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1314, '中国', '361021', '南城县', '江西省', '抚州市', '南城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1315, '中国', '361022', '黎川县', '江西省', '抚州市', '黎川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1316, '中国', '361023', '南丰县', '江西省', '抚州市', '南丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1317, '中国', '361024', '崇仁县', '江西省', '抚州市', '崇仁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1318, '中国', '361025', '乐安县', '江西省', '抚州市', '乐安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1319, '中国', '361026', '宜黄县', '江西省', '抚州市', '宜黄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1320, '中国', '361027', '金溪县', '江西省', '抚州市', '金溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1321, '中国', '361028', '资溪县', '江西省', '抚州市', '资溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1322, '中国', '361030', '广昌县', '江西省', '抚州市', '广昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1323, '中国', '361100', '上饶市', '江西省', '上饶市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1324, '中国', '361102', '信州区', '江西省', '上饶市', '信州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1325, '中国', '361103', '广丰区', '江西省', '上饶市', '广丰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1326, '中国', '361104', '广信区', '江西省', '上饶市', '广信区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1327, '中国', '361123', '玉山县', '江西省', '上饶市', '玉山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1328, '中国', '361124', '铅山县', '江西省', '上饶市', '铅山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1329, '中国', '361125', '横峰县', '江西省', '上饶市', '横峰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1330, '中国', '361126', '弋阳县', '江西省', '上饶市', '弋阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1331, '中国', '361127', '余干县', '江西省', '上饶市', '余干县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1332, '中国', '361128', '鄱阳县', '江西省', '上饶市', '鄱阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1333, '中国', '361129', '万年县', '江西省', '上饶市', '万年县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1334, '中国', '361130', '婺源县', '江西省', '上饶市', '婺源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1335, '中国', '361181', '德兴市', '江西省', '上饶市', '德兴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1336, '中国', '370000', '山东省', '山东省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1337, '中国', '370100', '济南市', '山东省', '济南市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1338, '中国', '370102', '历下区', '山东省', '济南市', '历下区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1339, '中国', '370103', '市中区', '山东省', '济南市', '市中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1340, '中国', '370104', '槐荫区', '山东省', '济南市', '槐荫区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1341, '中国', '370105', '天桥区', '山东省', '济南市', '天桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1342, '中国', '370112', '历城区', '山东省', '济南市', '历城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1343, '中国', '370113', '长清区', '山东省', '济南市', '长清区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1344, '中国', '370114', '章丘区', '山东省', '济南市', '章丘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1345, '中国', '370115', '济阳区', '山东省', '济南市', '济阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1346, '中国', '370116', '莱芜区', '山东省', '济南市', '莱芜区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1347, '中国', '370117', '钢城区', '山东省', '济南市', '钢城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1348, '中国', '370124', '平阴县', '山东省', '济南市', '平阴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1349, '中国', '370126', '商河县', '山东省', '济南市', '商河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1350, '中国', '370200', '青岛市', '山东省', '青岛市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1351, '中国', '370202', '市南区', '山东省', '青岛市', '市南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1352, '中国', '370203', '市北区', '山东省', '青岛市', '市北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1353, '中国', '370211', '黄岛区', '山东省', '青岛市', '黄岛区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1354, '中国', '370212', '崂山区', '山东省', '青岛市', '崂山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1355, '中国', '370213', '李沧区', '山东省', '青岛市', '李沧区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1356, '中国', '370214', '城阳区', '山东省', '青岛市', '城阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1357, '中国', '370215', '即墨区', '山东省', '青岛市', '即墨区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1358, '中国', '370281', '胶州市', '山东省', '青岛市', '胶州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1359, '中国', '370283', '平度市', '山东省', '青岛市', '平度市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1360, '中国', '370285', '莱西市', '山东省', '青岛市', '莱西市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1361, '中国', '370300', '淄博市', '山东省', '淄博市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1362, '中国', '370302', '淄川区', '山东省', '淄博市', '淄川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1363, '中国', '370303', '张店区', '山东省', '淄博市', '张店区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1364, '中国', '370304', '博山区', '山东省', '淄博市', '博山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1365, '中国', '370305', '临淄区', '山东省', '淄博市', '临淄区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1366, '中国', '370306', '周村区', '山东省', '淄博市', '周村区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1367, '中国', '370321', '桓台县', '山东省', '淄博市', '桓台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1368, '中国', '370322', '高青县', '山东省', '淄博市', '高青县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1369, '中国', '370323', '沂源县', '山东省', '淄博市', '沂源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1370, '中国', '370400', '枣庄市', '山东省', '枣庄市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1371, '中国', '370402', '市中区', '山东省', '枣庄市', '市中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1372, '中国', '370403', '薛城区', '山东省', '枣庄市', '薛城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1373, '中国', '370404', '峄城区', '山东省', '枣庄市', '峄城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1374, '中国', '370405', '台儿庄区', '山东省', '枣庄市', '台儿庄区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1375, '中国', '370406', '山亭区', '山东省', '枣庄市', '山亭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1376, '中国', '370481', '滕州市', '山东省', '枣庄市', '滕州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1377, '中国', '370500', '东营市', '山东省', '东营市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1378, '中国', '370502', '东营区', '山东省', '东营市', '东营区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1379, '中国', '370503', '河口区', '山东省', '东营市', '河口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1380, '中国', '370505', '垦利区', '山东省', '东营市', '垦利区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1381, '中国', '370522', '利津县', '山东省', '东营市', '利津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1382, '中国', '370523', '广饶县', '山东省', '东营市', '广饶县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1383, '中国', '370600', '烟台市', '山东省', '烟台市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1384, '中国', '370602', '芝罘区', '山东省', '烟台市', '芝罘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1385, '中国', '370611', '福山区', '山东省', '烟台市', '福山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1386, '中国', '370612', '牟平区', '山东省', '烟台市', '牟平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1387, '中国', '370613', '莱山区', '山东省', '烟台市', '莱山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1388, '中国', '370614', '蓬莱区', '山东省', '烟台市', '蓬莱区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1389, '中国', '370681', '龙口市', '山东省', '烟台市', '龙口市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1390, '中国', '370682', '莱阳市', '山东省', '烟台市', '莱阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1391, '中国', '370683', '莱州市', '山东省', '烟台市', '莱州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1392, '中国', '370685', '招远市', '山东省', '烟台市', '招远市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1393, '中国', '370686', '栖霞市', '山东省', '烟台市', '栖霞市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1394, '中国', '370687', '海阳市', '山东省', '烟台市', '海阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1395, '中国', '370700', '潍坊市', '山东省', '潍坊市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1396, '中国', '370702', '潍城区', '山东省', '潍坊市', '潍城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1397, '中国', '370703', '寒亭区', '山东省', '潍坊市', '寒亭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1398, '中国', '370704', '坊子区', '山东省', '潍坊市', '坊子区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1399, '中国', '370705', '奎文区', '山东省', '潍坊市', '奎文区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1400, '中国', '370724', '临朐县', '山东省', '潍坊市', '临朐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1401, '中国', '370725', '昌乐县', '山东省', '潍坊市', '昌乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1402, '中国', '370781', '青州市', '山东省', '潍坊市', '青州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1403, '中国', '370782', '诸城市', '山东省', '潍坊市', '诸城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1404, '中国', '370783', '寿光市', '山东省', '潍坊市', '寿光市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1405, '中国', '370784', '安丘市', '山东省', '潍坊市', '安丘市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1406, '中国', '370785', '高密市', '山东省', '潍坊市', '高密市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1407, '中国', '370786', '昌邑市', '山东省', '潍坊市', '昌邑市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1408, '中国', '370800', '济宁市', '山东省', '济宁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1409, '中国', '370811', '任城区', '山东省', '济宁市', '任城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1410, '中国', '370812', '兖州区', '山东省', '济宁市', '兖州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1411, '中国', '370826', '微山县', '山东省', '济宁市', '微山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1412, '中国', '370827', '鱼台县', '山东省', '济宁市', '鱼台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1413, '中国', '370828', '金乡县', '山东省', '济宁市', '金乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1414, '中国', '370829', '嘉祥县', '山东省', '济宁市', '嘉祥县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1415, '中国', '370830', '汶上县', '山东省', '济宁市', '汶上县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1416, '中国', '370831', '泗水县', '山东省', '济宁市', '泗水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1417, '中国', '370832', '梁山县', '山东省', '济宁市', '梁山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1418, '中国', '370881', '曲阜市', '山东省', '济宁市', '曲阜市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1419, '中国', '370883', '邹城市', '山东省', '济宁市', '邹城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1420, '中国', '370900', '泰安市', '山东省', '泰安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1421, '中国', '370902', '泰山区', '山东省', '泰安市', '泰山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1422, '中国', '370911', '岱岳区', '山东省', '泰安市', '岱岳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1423, '中国', '370921', '宁阳县', '山东省', '泰安市', '宁阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1424, '中国', '370923', '东平县', '山东省', '泰安市', '东平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1425, '中国', '370982', '新泰市', '山东省', '泰安市', '新泰市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1426, '中国', '370983', '肥城市', '山东省', '泰安市', '肥城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1427, '中国', '371000', '威海市', '山东省', '威海市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1428, '中国', '371002', '环翠区', '山东省', '威海市', '环翠区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1429, '中国', '371003', '文登区', '山东省', '威海市', '文登区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1430, '中国', '371082', '荣成市', '山东省', '威海市', '荣成市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1431, '中国', '371083', '乳山市', '山东省', '威海市', '乳山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1432, '中国', '371100', '日照市', '山东省', '日照市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1433, '中国', '371102', '东港区', '山东省', '日照市', '东港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1434, '中国', '371103', '岚山区', '山东省', '日照市', '岚山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1435, '中国', '371121', '五莲县', '山东省', '日照市', '五莲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1436, '中国', '371122', '莒县', '山东省', '日照市', '莒县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1437, '中国', '371300', '临沂市', '山东省', '临沂市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1438, '中国', '371302', '兰山区', '山东省', '临沂市', '兰山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1439, '中国', '371311', '罗庄区', '山东省', '临沂市', '罗庄区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1440, '中国', '371312', '河东区', '山东省', '临沂市', '河东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1441, '中国', '371321', '沂南县', '山东省', '临沂市', '沂南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1442, '中国', '371322', '郯城县', '山东省', '临沂市', '郯城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1443, '中国', '371323', '沂水县', '山东省', '临沂市', '沂水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1444, '中国', '371324', '兰陵县', '山东省', '临沂市', '兰陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1445, '中国', '371325', '费县', '山东省', '临沂市', '费县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1446, '中国', '371326', '平邑县', '山东省', '临沂市', '平邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1447, '中国', '371327', '莒南县', '山东省', '临沂市', '莒南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1448, '中国', '371328', '蒙阴县', '山东省', '临沂市', '蒙阴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1449, '中国', '371329', '临沭县', '山东省', '临沂市', '临沭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1450, '中国', '371400', '德州市', '山东省', '德州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1451, '中国', '371402', '德城区', '山东省', '德州市', '德城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1452, '中国', '371403', '陵城区', '山东省', '德州市', '陵城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1453, '中国', '371422', '宁津县', '山东省', '德州市', '宁津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1454, '中国', '371423', '庆云县', '山东省', '德州市', '庆云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1455, '中国', '371424', '临邑县', '山东省', '德州市', '临邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1456, '中国', '371425', '齐河县', '山东省', '德州市', '齐河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1457, '中国', '371426', '平原县', '山东省', '德州市', '平原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1458, '中国', '371427', '夏津县', '山东省', '德州市', '夏津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1459, '中国', '371428', '武城县', '山东省', '德州市', '武城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1460, '中国', '371481', '乐陵市', '山东省', '德州市', '乐陵市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1461, '中国', '371482', '禹城市', '山东省', '德州市', '禹城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1462, '中国', '371500', '聊城市', '山东省', '聊城市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1463, '中国', '371502', '东昌府区', '山东省', '聊城市', '东昌府区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1464, '中国', '371503', '茌平区', '山东省', '聊城市', '茌平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1465, '中国', '371521', '阳谷县', '山东省', '聊城市', '阳谷县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1466, '中国', '371522', '莘县', '山东省', '聊城市', '莘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1467, '中国', '371524', '东阿县', '山东省', '聊城市', '东阿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1468, '中国', '371525', '冠县', '山东省', '聊城市', '冠县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1469, '中国', '371526', '高唐县', '山东省', '聊城市', '高唐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1470, '中国', '371581', '临清市', '山东省', '聊城市', '临清市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1471, '中国', '371600', '滨州市', '山东省', '滨州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1472, '中国', '371602', '滨城区', '山东省', '滨州市', '滨城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1473, '中国', '371603', '沾化区', '山东省', '滨州市', '沾化区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1474, '中国', '371621', '惠民县', '山东省', '滨州市', '惠民县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1475, '中国', '371622', '阳信县', '山东省', '滨州市', '阳信县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1476, '中国', '371623', '无棣县', '山东省', '滨州市', '无棣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1477, '中国', '371625', '博兴县', '山东省', '滨州市', '博兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1478, '中国', '371681', '邹平市', '山东省', '滨州市', '邹平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1479, '中国', '371700', '菏泽市', '山东省', '菏泽市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1480, '中国', '371702', '牡丹区', '山东省', '菏泽市', '牡丹区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1481, '中国', '371703', '定陶区', '山东省', '菏泽市', '定陶区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1482, '中国', '371721', '曹县', '山东省', '菏泽市', '曹县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1483, '中国', '371722', '单县', '山东省', '菏泽市', '单县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1484, '中国', '371723', '成武县', '山东省', '菏泽市', '成武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1485, '中国', '371724', '巨野县', '山东省', '菏泽市', '巨野县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1486, '中国', '371725', '郓城县', '山东省', '菏泽市', '郓城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1487, '中国', '371726', '鄄城县', '山东省', '菏泽市', '鄄城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1488, '中国', '371728', '东明县', '山东省', '菏泽市', '东明县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1489, '中国', '410000', '河南省', '河南省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1490, '中国', '410100', '郑州市', '河南省', '郑州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1491, '中国', '410102', '中原区', '河南省', '郑州市', '中原区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1492, '中国', '410103', '二七区', '河南省', '郑州市', '二七区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1493, '中国', '410104', '管城回族区', '河南省', '郑州市', '管城回族区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1494, '中国', '410105', '金水区', '河南省', '郑州市', '金水区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1495, '中国', '410106', '上街区', '河南省', '郑州市', '上街区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1496, '中国', '410108', '惠济区', '河南省', '郑州市', '惠济区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1497, '中国', '410122', '中牟县', '河南省', '郑州市', '中牟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1498, '中国', '410181', '巩义市', '河南省', '郑州市', '巩义市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1499, '中国', '410182', '荥阳市', '河南省', '郑州市', '荥阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1500, '中国', '410183', '新密市', '河南省', '郑州市', '新密市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1501, '中国', '410184', '新郑市', '河南省', '郑州市', '新郑市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1502, '中国', '410185', '登封市', '河南省', '郑州市', '登封市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1503, '中国', '410200', '开封市', '河南省', '开封市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1504, '中国', '410202', '龙亭区', '河南省', '开封市', '龙亭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1505, '中国', '410203', '顺河回族区', '河南省', '开封市', '顺河回族区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1506, '中国', '410204', '鼓楼区', '河南省', '开封市', '鼓楼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1507, '中国', '410205', '禹王台区', '河南省', '开封市', '禹王台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1508, '中国', '410212', '祥符区', '河南省', '开封市', '祥符区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1509, '中国', '410221', '杞县', '河南省', '开封市', '杞县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1510, '中国', '410222', '通许县', '河南省', '开封市', '通许县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1511, '中国', '410223', '尉氏县', '河南省', '开封市', '尉氏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1512, '中国', '410225', '兰考县', '河南省', '开封市', '兰考县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1513, '中国', '410300', '洛阳市', '河南省', '洛阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1514, '中国', '410302', '老城区', '河南省', '洛阳市', '老城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1515, '中国', '410303', '西工区', '河南省', '洛阳市', '西工区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1516, '中国', '410304', '瀍河回族区', '河南省', '洛阳市', '瀍河回族区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1517, '中国', '410305', '涧西区', '河南省', '洛阳市', '涧西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1518, '中国', '410306', '吉利区', '河南省', '洛阳市', '吉利区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1519, '中国', '410311', '洛龙区', '河南省', '洛阳市', '洛龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1520, '中国', '410322', '孟津县', '河南省', '洛阳市', '孟津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1521, '中国', '410323', '新安县', '河南省', '洛阳市', '新安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1522, '中国', '410324', '栾川县', '河南省', '洛阳市', '栾川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1523, '中国', '410325', '嵩县', '河南省', '洛阳市', '嵩县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1524, '中国', '410326', '汝阳县', '河南省', '洛阳市', '汝阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1525, '中国', '410327', '宜阳县', '河南省', '洛阳市', '宜阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1526, '中国', '410328', '洛宁县', '河南省', '洛阳市', '洛宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1527, '中国', '410329', '伊川县', '河南省', '洛阳市', '伊川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1528, '中国', '410381', '偃师市', '河南省', '洛阳市', '偃师市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1529, '中国', '410400', '平顶山市', '河南省', '平顶山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1530, '中国', '410402', '新华区', '河南省', '平顶山市', '新华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1531, '中国', '410403', '卫东区', '河南省', '平顶山市', '卫东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1532, '中国', '410404', '石龙区', '河南省', '平顶山市', '石龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1533, '中国', '410411', '湛河区', '河南省', '平顶山市', '湛河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1534, '中国', '410421', '宝丰县', '河南省', '平顶山市', '宝丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1535, '中国', '410422', '叶县', '河南省', '平顶山市', '叶县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1536, '中国', '410423', '鲁山县', '河南省', '平顶山市', '鲁山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1537, '中国', '410425', '郏县', '河南省', '平顶山市', '郏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1538, '中国', '410481', '舞钢市', '河南省', '平顶山市', '舞钢市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1539, '中国', '410482', '汝州市', '河南省', '平顶山市', '汝州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1540, '中国', '410500', '安阳市', '河南省', '安阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1541, '中国', '410502', '文峰区', '河南省', '安阳市', '文峰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1542, '中国', '410503', '北关区', '河南省', '安阳市', '北关区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1543, '中国', '410505', '殷都区', '河南省', '安阳市', '殷都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1544, '中国', '410506', '龙安区', '河南省', '安阳市', '龙安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1545, '中国', '410522', '安阳县', '河南省', '安阳市', '安阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1546, '中国', '410523', '汤阴县', '河南省', '安阳市', '汤阴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1547, '中国', '410526', '滑县', '河南省', '安阳市', '滑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1548, '中国', '410527', '内黄县', '河南省', '安阳市', '内黄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1549, '中国', '410581', '林州市', '河南省', '安阳市', '林州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1550, '中国', '410600', '鹤壁市', '河南省', '鹤壁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1551, '中国', '410602', '鹤山区', '河南省', '鹤壁市', '鹤山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1552, '中国', '410603', '山城区', '河南省', '鹤壁市', '山城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1553, '中国', '410611', '淇滨区', '河南省', '鹤壁市', '淇滨区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1554, '中国', '410621', '浚县', '河南省', '鹤壁市', '浚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1555, '中国', '410622', '淇县', '河南省', '鹤壁市', '淇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1556, '中国', '410700', '新乡市', '河南省', '新乡市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1557, '中国', '410702', '红旗区', '河南省', '新乡市', '红旗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1558, '中国', '410703', '卫滨区', '河南省', '新乡市', '卫滨区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1559, '中国', '410704', '凤泉区', '河南省', '新乡市', '凤泉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1560, '中国', '410711', '牧野区', '河南省', '新乡市', '牧野区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1561, '中国', '410721', '新乡县', '河南省', '新乡市', '新乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1562, '中国', '410724', '获嘉县', '河南省', '新乡市', '获嘉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1563, '中国', '410725', '原阳县', '河南省', '新乡市', '原阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1564, '中国', '410726', '延津县', '河南省', '新乡市', '延津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1565, '中国', '410727', '封丘县', '河南省', '新乡市', '封丘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1566, '中国', '410781', '卫辉市', '河南省', '新乡市', '卫辉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1567, '中国', '410782', '辉县市', '河南省', '新乡市', '辉县市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1568, '中国', '410783', '长垣市', '河南省', '新乡市', '长垣市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1569, '中国', '410800', '焦作市', '河南省', '焦作市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1570, '中国', '410802', '解放区', '河南省', '焦作市', '解放区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1571, '中国', '410803', '中站区', '河南省', '焦作市', '中站区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1572, '中国', '410804', '马村区', '河南省', '焦作市', '马村区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1573, '中国', '410811', '山阳区', '河南省', '焦作市', '山阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1574, '中国', '410821', '修武县', '河南省', '焦作市', '修武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1575, '中国', '410822', '博爱县', '河南省', '焦作市', '博爱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1576, '中国', '410823', '武陟县', '河南省', '焦作市', '武陟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1577, '中国', '410825', '温县', '河南省', '焦作市', '温县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1578, '中国', '410882', '沁阳市', '河南省', '焦作市', '沁阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1579, '中国', '410883', '孟州市', '河南省', '焦作市', '孟州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1580, '中国', '410900', '濮阳市', '河南省', '濮阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1581, '中国', '410902', '华龙区', '河南省', '濮阳市', '华龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1582, '中国', '410922', '清丰县', '河南省', '濮阳市', '清丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1583, '中国', '410923', '南乐县', '河南省', '濮阳市', '南乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1584, '中国', '410926', '范县', '河南省', '濮阳市', '范县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1585, '中国', '410927', '台前县', '河南省', '濮阳市', '台前县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1586, '中国', '410928', '濮阳县', '河南省', '濮阳市', '濮阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1587, '中国', '411000', '许昌市', '河南省', '许昌市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1588, '中国', '411002', '魏都区', '河南省', '许昌市', '魏都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1589, '中国', '411003', '建安区', '河南省', '许昌市', '建安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1590, '中国', '411024', '鄢陵县', '河南省', '许昌市', '鄢陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1591, '中国', '411025', '襄城县', '河南省', '许昌市', '襄城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1592, '中国', '411081', '禹州市', '河南省', '许昌市', '禹州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1593, '中国', '411082', '长葛市', '河南省', '许昌市', '长葛市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1594, '中国', '411100', '漯河市', '河南省', '漯河市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1595, '中国', '411102', '源汇区', '河南省', '漯河市', '源汇区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1596, '中国', '411103', '郾城区', '河南省', '漯河市', '郾城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1597, '中国', '411104', '召陵区', '河南省', '漯河市', '召陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1598, '中国', '411121', '舞阳县', '河南省', '漯河市', '舞阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1599, '中国', '411122', '临颍县', '河南省', '漯河市', '临颍县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1600, '中国', '411200', '三门峡市', '河南省', '三门峡市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1601, '中国', '411202', '湖滨区', '河南省', '三门峡市', '湖滨区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1602, '中国', '411203', '陕州区', '河南省', '三门峡市', '陕州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1603, '中国', '411221', '渑池县', '河南省', '三门峡市', '渑池县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1604, '中国', '411224', '卢氏县', '河南省', '三门峡市', '卢氏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1605, '中国', '411281', '义马市', '河南省', '三门峡市', '义马市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1606, '中国', '411282', '灵宝市', '河南省', '三门峡市', '灵宝市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1607, '中国', '411300', '南阳市', '河南省', '南阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1608, '中国', '411302', '宛城区', '河南省', '南阳市', '宛城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1609, '中国', '411303', '卧龙区', '河南省', '南阳市', '卧龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1610, '中国', '411321', '南召县', '河南省', '南阳市', '南召县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1611, '中国', '411322', '方城县', '河南省', '南阳市', '方城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1612, '中国', '411323', '西峡县', '河南省', '南阳市', '西峡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1613, '中国', '411324', '镇平县', '河南省', '南阳市', '镇平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1614, '中国', '411325', '内乡县', '河南省', '南阳市', '内乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1615, '中国', '411326', '淅川县', '河南省', '南阳市', '淅川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1616, '中国', '411327', '社旗县', '河南省', '南阳市', '社旗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1617, '中国', '411328', '唐河县', '河南省', '南阳市', '唐河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1618, '中国', '411329', '新野县', '河南省', '南阳市', '新野县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1619, '中国', '411330', '桐柏县', '河南省', '南阳市', '桐柏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1620, '中国', '411381', '邓州市', '河南省', '南阳市', '邓州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1621, '中国', '411400', '商丘市', '河南省', '商丘市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1622, '中国', '411402', '梁园区', '河南省', '商丘市', '梁园区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1623, '中国', '411403', '睢阳区', '河南省', '商丘市', '睢阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1624, '中国', '411421', '民权县', '河南省', '商丘市', '民权县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1625, '中国', '411422', '睢县', '河南省', '商丘市', '睢县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1626, '中国', '411423', '宁陵县', '河南省', '商丘市', '宁陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1627, '中国', '411424', '柘城县', '河南省', '商丘市', '柘城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1628, '中国', '411425', '虞城县', '河南省', '商丘市', '虞城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1629, '中国', '411426', '夏邑县', '河南省', '商丘市', '夏邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1630, '中国', '411481', '永城市', '河南省', '商丘市', '永城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1631, '中国', '411500', '信阳市', '河南省', '信阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1632, '中国', '411502', '浉河区', '河南省', '信阳市', '浉河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1633, '中国', '411503', '平桥区', '河南省', '信阳市', '平桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1634, '中国', '411521', '罗山县', '河南省', '信阳市', '罗山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1635, '中国', '411522', '光山县', '河南省', '信阳市', '光山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1636, '中国', '411523', '新县', '河南省', '信阳市', '新县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1637, '中国', '411524', '商城县', '河南省', '信阳市', '商城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1638, '中国', '411525', '固始县', '河南省', '信阳市', '固始县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1639, '中国', '411526', '潢川县', '河南省', '信阳市', '潢川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1640, '中国', '411527', '淮滨县', '河南省', '信阳市', '淮滨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1641, '中国', '411528', '息县', '河南省', '信阳市', '息县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1642, '中国', '411600', '周口市', '河南省', '周口市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1643, '中国', '411602', '川汇区', '河南省', '周口市', '川汇区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1644, '中国', '411603', '淮阳区', '河南省', '周口市', '淮阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1645, '中国', '411621', '扶沟县', '河南省', '周口市', '扶沟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1646, '中国', '411622', '西华县', '河南省', '周口市', '西华县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1647, '中国', '411623', '商水县', '河南省', '周口市', '商水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1648, '中国', '411624', '沈丘县', '河南省', '周口市', '沈丘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1649, '中国', '411625', '郸城县', '河南省', '周口市', '郸城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1650, '中国', '411627', '太康县', '河南省', '周口市', '太康县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1651, '中国', '411628', '鹿邑县', '河南省', '周口市', '鹿邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1652, '中国', '411681', '项城市', '河南省', '周口市', '项城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1653, '中国', '411700', '驻马店市', '河南省', '驻马店市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1654, '中国', '411702', '驿城区', '河南省', '驻马店市', '驿城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1655, '中国', '411721', '西平县', '河南省', '驻马店市', '西平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1656, '中国', '411722', '上蔡县', '河南省', '驻马店市', '上蔡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1657, '中国', '411723', '平舆县', '河南省', '驻马店市', '平舆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1658, '中国', '411724', '正阳县', '河南省', '驻马店市', '正阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1659, '中国', '411725', '确山县', '河南省', '驻马店市', '确山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1660, '中国', '411726', '泌阳县', '河南省', '驻马店市', '泌阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1661, '中国', '411727', '汝南县', '河南省', '驻马店市', '汝南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1662, '中国', '411728', '遂平县', '河南省', '驻马店市', '遂平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1663, '中国', '411729', '新蔡县', '河南省', '驻马店市', '新蔡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1665, '中国', '420000', '湖北省', '湖北省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1666, '中国', '420100', '武汉市', '湖北省', '武汉市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1667, '中国', '420102', '江岸区', '湖北省', '武汉市', '江岸区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1668, '中国', '420103', '江汉区', '湖北省', '武汉市', '江汉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1669, '中国', '420104', '硚口区', '湖北省', '武汉市', '硚口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1670, '中国', '420105', '汉阳区', '湖北省', '武汉市', '汉阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1671, '中国', '420106', '武昌区', '湖北省', '武汉市', '武昌区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1672, '中国', '420107', '青山区', '湖北省', '武汉市', '青山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1673, '中国', '420111', '洪山区', '湖北省', '武汉市', '洪山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1674, '中国', '420112', '东西湖区', '湖北省', '武汉市', '东西湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1675, '中国', '420113', '汉南区', '湖北省', '武汉市', '汉南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1676, '中国', '420114', '蔡甸区', '湖北省', '武汉市', '蔡甸区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1677, '中国', '420115', '江夏区', '湖北省', '武汉市', '江夏区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1678, '中国', '420116', '黄陂区', '湖北省', '武汉市', '黄陂区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1679, '中国', '420117', '新洲区', '湖北省', '武汉市', '新洲区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1680, '中国', '420200', '黄石市', '湖北省', '黄石市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1681, '中国', '420202', '黄石港区', '湖北省', '黄石市', '黄石港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1682, '中国', '420203', '西塞山区', '湖北省', '黄石市', '西塞山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1683, '中国', '420204', '下陆区', '湖北省', '黄石市', '下陆区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1684, '中国', '420205', '铁山区', '湖北省', '黄石市', '铁山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1685, '中国', '420222', '阳新县', '湖北省', '黄石市', '阳新县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1686, '中国', '420281', '大冶市', '湖北省', '黄石市', '大冶市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1687, '中国', '420300', '十堰市', '湖北省', '十堰市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1688, '中国', '420302', '茅箭区', '湖北省', '十堰市', '茅箭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1689, '中国', '420303', '张湾区', '湖北省', '十堰市', '张湾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1690, '中国', '420304', '郧阳区', '湖北省', '十堰市', '郧阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1691, '中国', '420322', '郧西县', '湖北省', '十堰市', '郧西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1692, '中国', '420323', '竹山县', '湖北省', '十堰市', '竹山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1693, '中国', '420324', '竹溪县', '湖北省', '十堰市', '竹溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1694, '中国', '420325', '房县', '湖北省', '十堰市', '房县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1695, '中国', '420381', '丹江口市', '湖北省', '十堰市', '丹江口市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1696, '中国', '420500', '宜昌市', '湖北省', '宜昌市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1697, '中国', '420502', '西陵区', '湖北省', '宜昌市', '西陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1698, '中国', '420503', '伍家岗区', '湖北省', '宜昌市', '伍家岗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1699, '中国', '420504', '点军区', '湖北省', '宜昌市', '点军区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1700, '中国', '420505', '猇亭区', '湖北省', '宜昌市', '猇亭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1701, '中国', '420506', '夷陵区', '湖北省', '宜昌市', '夷陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1702, '中国', '420525', '远安县', '湖北省', '宜昌市', '远安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1703, '中国', '420526', '兴山县', '湖北省', '宜昌市', '兴山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1704, '中国', '420527', '秭归县', '湖北省', '宜昌市', '秭归县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1705, '中国', '420528', '长阳土家族自治县', '湖北省', '宜昌市', '长阳土家族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1706, '中国', '420529', '五峰土家族自治县', '湖北省', '宜昌市', '五峰土家族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1707, '中国', '420581', '宜都市', '湖北省', '宜昌市', '宜都市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1708, '中国', '420582', '当阳市', '湖北省', '宜昌市', '当阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1709, '中国', '420583', '枝江市', '湖北省', '宜昌市', '枝江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1710, '中国', '420600', '襄阳市', '湖北省', '襄阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1711, '中国', '420602', '襄城区', '湖北省', '襄阳市', '襄城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1712, '中国', '420606', '樊城区', '湖北省', '襄阳市', '樊城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1713, '中国', '420607', '襄州区', '湖北省', '襄阳市', '襄州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1714, '中国', '420624', '南漳县', '湖北省', '襄阳市', '南漳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1715, '中国', '420625', '谷城县', '湖北省', '襄阳市', '谷城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1716, '中国', '420626', '保康县', '湖北省', '襄阳市', '保康县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1717, '中国', '420682', '老河口市', '湖北省', '襄阳市', '老河口市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1718, '中国', '420683', '枣阳市', '湖北省', '襄阳市', '枣阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1719, '中国', '420684', '宜城市', '湖北省', '襄阳市', '宜城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1720, '中国', '420700', '鄂州市', '湖北省', '鄂州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1721, '中国', '420702', '梁子湖区', '湖北省', '鄂州市', '梁子湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1722, '中国', '420703', '华容区', '湖北省', '鄂州市', '华容区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1723, '中国', '420704', '鄂城区', '湖北省', '鄂州市', '鄂城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1724, '中国', '420800', '荆门市', '湖北省', '荆门市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1725, '中国', '420802', '东宝区', '湖北省', '荆门市', '东宝区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1726, '中国', '420804', '掇刀区', '湖北省', '荆门市', '掇刀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1727, '中国', '420822', '沙洋县', '湖北省', '荆门市', '沙洋县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1728, '中国', '420881', '钟祥市', '湖北省', '荆门市', '钟祥市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1729, '中国', '420882', '京山市', '湖北省', '荆门市', '京山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1730, '中国', '420900', '孝感市', '湖北省', '孝感市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1731, '中国', '420902', '孝南区', '湖北省', '孝感市', '孝南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1732, '中国', '420921', '孝昌县', '湖北省', '孝感市', '孝昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1733, '中国', '420922', '大悟县', '湖北省', '孝感市', '大悟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1734, '中国', '420923', '云梦县', '湖北省', '孝感市', '云梦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1735, '中国', '420981', '应城市', '湖北省', '孝感市', '应城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1736, '中国', '420982', '安陆市', '湖北省', '孝感市', '安陆市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1737, '中国', '420984', '汉川市', '湖北省', '孝感市', '汉川市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1738, '中国', '421000', '荆州市', '湖北省', '荆州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1739, '中国', '421002', '沙市区', '湖北省', '荆州市', '沙市区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1740, '中国', '421003', '荆州区', '湖北省', '荆州市', '荆州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1741, '中国', '421022', '公安县', '湖北省', '荆州市', '公安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1742, '中国', '421024', '江陵县', '湖北省', '荆州市', '江陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1743, '中国', '421081', '石首市', '湖北省', '荆州市', '石首市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1744, '中国', '421083', '洪湖市', '湖北省', '荆州市', '洪湖市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1745, '中国', '421087', '松滋市', '湖北省', '荆州市', '松滋市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1746, '中国', '421088', '监利市', '湖北省', '荆州市', '监利市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1747, '中国', '421100', '黄冈市', '湖北省', '黄冈市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1748, '中国', '421102', '黄州区', '湖北省', '黄冈市', '黄州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1749, '中国', '421121', '团风县', '湖北省', '黄冈市', '团风县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1750, '中国', '421122', '红安县', '湖北省', '黄冈市', '红安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1751, '中国', '421123', '罗田县', '湖北省', '黄冈市', '罗田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1752, '中国', '421124', '英山县', '湖北省', '黄冈市', '英山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1753, '中国', '421125', '浠水县', '湖北省', '黄冈市', '浠水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1754, '中国', '421126', '蕲春县', '湖北省', '黄冈市', '蕲春县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1755, '中国', '421127', '黄梅县', '湖北省', '黄冈市', '黄梅县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1756, '中国', '421181', '麻城市', '湖北省', '黄冈市', '麻城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1757, '中国', '421182', '武穴市', '湖北省', '黄冈市', '武穴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1758, '中国', '421200', '咸宁市', '湖北省', '咸宁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1759, '中国', '421202', '咸安区', '湖北省', '咸宁市', '咸安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1760, '中国', '421221', '嘉鱼县', '湖北省', '咸宁市', '嘉鱼县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1761, '中国', '421222', '通城县', '湖北省', '咸宁市', '通城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1762, '中国', '421223', '崇阳县', '湖北省', '咸宁市', '崇阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1763, '中国', '421224', '通山县', '湖北省', '咸宁市', '通山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1764, '中国', '421281', '赤壁市', '湖北省', '咸宁市', '赤壁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1765, '中国', '421300', '随州市', '湖北省', '随州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1766, '中国', '421303', '曾都区', '湖北省', '随州市', '曾都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1767, '中国', '421321', '随县', '湖北省', '随州市', '随县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1768, '中国', '421381', '广水市', '湖北省', '随州市', '广水市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1769, '中国', '422800', '恩施土家族苗族自治州', '湖北省', '恩施土家族苗族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1770, '中国', '422801', '恩施市', '湖北省', '恩施土家族苗族自治州', '恩施市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1771, '中国', '422802', '利川市', '湖北省', '恩施土家族苗族自治州', '利川市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1772, '中国', '422822', '建始县', '湖北省', '恩施土家族苗族自治州', '建始县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1773, '中国', '422823', '巴东县', '湖北省', '恩施土家族苗族自治州', '巴东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1774, '中国', '422825', '宣恩县', '湖北省', '恩施土家族苗族自治州', '宣恩县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1775, '中国', '422826', '咸丰县', '湖北省', '恩施土家族苗族自治州', '咸丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1776, '中国', '422827', '来凤县', '湖北省', '恩施土家族苗族自治州', '来凤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1777, '中国', '422828', '鹤峰县', '湖北省', '恩施土家族苗族自治州', '鹤峰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1782, '中国', '430000', '湖南省', '湖南省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1783, '中国', '430100', '长沙市', '湖南省', '长沙市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1784, '中国', '430102', '芙蓉区', '湖南省', '长沙市', '芙蓉区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1785, '中国', '430103', '天心区', '湖南省', '长沙市', '天心区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1786, '中国', '430104', '岳麓区', '湖南省', '长沙市', '岳麓区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1787, '中国', '430105', '开福区', '湖南省', '长沙市', '开福区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1788, '中国', '430111', '雨花区', '湖南省', '长沙市', '雨花区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1789, '中国', '430112', '望城区', '湖南省', '长沙市', '望城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1790, '中国', '430121', '长沙县', '湖南省', '长沙市', '长沙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1791, '中国', '430181', '浏阳市', '湖南省', '长沙市', '浏阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1792, '中国', '430182', '宁乡市', '湖南省', '长沙市', '宁乡市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1793, '中国', '430200', '株洲市', '湖南省', '株洲市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1794, '中国', '430202', '荷塘区', '湖南省', '株洲市', '荷塘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1795, '中国', '430203', '芦淞区', '湖南省', '株洲市', '芦淞区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1796, '中国', '430204', '石峰区', '湖南省', '株洲市', '石峰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1797, '中国', '430211', '天元区', '湖南省', '株洲市', '天元区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1798, '中国', '430212', '渌口区', '湖南省', '株洲市', '渌口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1799, '中国', '430223', '攸县', '湖南省', '株洲市', '攸县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1800, '中国', '430224', '茶陵县', '湖南省', '株洲市', '茶陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1801, '中国', '430225', '炎陵县', '湖南省', '株洲市', '炎陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1802, '中国', '430281', '醴陵市', '湖南省', '株洲市', '醴陵市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1803, '中国', '430300', '湘潭市', '湖南省', '湘潭市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1804, '中国', '430302', '雨湖区', '湖南省', '湘潭市', '雨湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1805, '中国', '430304', '岳塘区', '湖南省', '湘潭市', '岳塘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1806, '中国', '430321', '湘潭县', '湖南省', '湘潭市', '湘潭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1807, '中国', '430381', '湘乡市', '湖南省', '湘潭市', '湘乡市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1808, '中国', '430382', '韶山市', '湖南省', '湘潭市', '韶山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1809, '中国', '430400', '衡阳市', '湖南省', '衡阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1810, '中国', '430405', '珠晖区', '湖南省', '衡阳市', '珠晖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1811, '中国', '430406', '雁峰区', '湖南省', '衡阳市', '雁峰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1812, '中国', '430407', '石鼓区', '湖南省', '衡阳市', '石鼓区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1813, '中国', '430408', '蒸湘区', '湖南省', '衡阳市', '蒸湘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1814, '中国', '430412', '南岳区', '湖南省', '衡阳市', '南岳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1815, '中国', '430421', '衡阳县', '湖南省', '衡阳市', '衡阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1816, '中国', '430422', '衡南县', '湖南省', '衡阳市', '衡南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1817, '中国', '430423', '衡山县', '湖南省', '衡阳市', '衡山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1818, '中国', '430424', '衡东县', '湖南省', '衡阳市', '衡东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1819, '中国', '430426', '祁东县', '湖南省', '衡阳市', '祁东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1820, '中国', '430481', '耒阳市', '湖南省', '衡阳市', '耒阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1821, '中国', '430482', '常宁市', '湖南省', '衡阳市', '常宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1822, '中国', '430500', '邵阳市', '湖南省', '邵阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1823, '中国', '430502', '双清区', '湖南省', '邵阳市', '双清区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1824, '中国', '430503', '大祥区', '湖南省', '邵阳市', '大祥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1825, '中国', '430511', '北塔区', '湖南省', '邵阳市', '北塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1826, '中国', '430522', '新邵县', '湖南省', '邵阳市', '新邵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1827, '中国', '430523', '邵阳县', '湖南省', '邵阳市', '邵阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1828, '中国', '430524', '隆回县', '湖南省', '邵阳市', '隆回县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1829, '中国', '430525', '洞口县', '湖南省', '邵阳市', '洞口县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1830, '中国', '430527', '绥宁县', '湖南省', '邵阳市', '绥宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1831, '中国', '430528', '新宁县', '湖南省', '邵阳市', '新宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1832, '中国', '430529', '城步苗族自治县', '湖南省', '邵阳市', '城步苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1833, '中国', '430581', '武冈市', '湖南省', '邵阳市', '武冈市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1834, '中国', '430582', '邵东市', '湖南省', '邵阳市', '邵东市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1835, '中国', '430600', '岳阳市', '湖南省', '岳阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1836, '中国', '430602', '岳阳楼区', '湖南省', '岳阳市', '岳阳楼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1837, '中国', '430603', '云溪区', '湖南省', '岳阳市', '云溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1838, '中国', '430611', '君山区', '湖南省', '岳阳市', '君山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1839, '中国', '430621', '岳阳县', '湖南省', '岳阳市', '岳阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1840, '中国', '430623', '华容县', '湖南省', '岳阳市', '华容县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1841, '中国', '430624', '湘阴县', '湖南省', '岳阳市', '湘阴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1842, '中国', '430626', '平江县', '湖南省', '岳阳市', '平江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1843, '中国', '430681', '汨罗市', '湖南省', '岳阳市', '汨罗市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1844, '中国', '430682', '临湘市', '湖南省', '岳阳市', '临湘市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1845, '中国', '430700', '常德市', '湖南省', '常德市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1846, '中国', '430702', '武陵区', '湖南省', '常德市', '武陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1847, '中国', '430703', '鼎城区', '湖南省', '常德市', '鼎城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1848, '中国', '430721', '安乡县', '湖南省', '常德市', '安乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1849, '中国', '430722', '汉寿县', '湖南省', '常德市', '汉寿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1850, '中国', '430723', '澧县', '湖南省', '常德市', '澧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1851, '中国', '430724', '临澧县', '湖南省', '常德市', '临澧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1852, '中国', '430725', '桃源县', '湖南省', '常德市', '桃源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1853, '中国', '430726', '石门县', '湖南省', '常德市', '石门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1854, '中国', '430781', '津市市', '湖南省', '常德市', '津市市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1855, '中国', '430800', '张家界市', '湖南省', '张家界市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2004, '中国', '441300', '惠州市', '广东省', '惠州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1856, '中国', '430802', '永定区', '湖南省', '张家界市', '永定区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1857, '中国', '430811', '武陵源区', '湖南省', '张家界市', '武陵源区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1858, '中国', '430821', '慈利县', '湖南省', '张家界市', '慈利县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1859, '中国', '430822', '桑植县', '湖南省', '张家界市', '桑植县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1860, '中国', '430900', '益阳市', '湖南省', '益阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1861, '中国', '430902', '资阳区', '湖南省', '益阳市', '资阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1862, '中国', '430903', '赫山区', '湖南省', '益阳市', '赫山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1863, '中国', '430921', '南县', '湖南省', '益阳市', '南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1864, '中国', '430922', '桃江县', '湖南省', '益阳市', '桃江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1865, '中国', '430923', '安化县', '湖南省', '益阳市', '安化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1866, '中国', '430981', '沅江市', '湖南省', '益阳市', '沅江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1867, '中国', '431000', '郴州市', '湖南省', '郴州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1868, '中国', '431002', '北湖区', '湖南省', '郴州市', '北湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1869, '中国', '431003', '苏仙区', '湖南省', '郴州市', '苏仙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1870, '中国', '431021', '桂阳县', '湖南省', '郴州市', '桂阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1871, '中国', '431022', '宜章县', '湖南省', '郴州市', '宜章县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1872, '中国', '431023', '永兴县', '湖南省', '郴州市', '永兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1873, '中国', '431024', '嘉禾县', '湖南省', '郴州市', '嘉禾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1874, '中国', '431025', '临武县', '湖南省', '郴州市', '临武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1875, '中国', '431026', '汝城县', '湖南省', '郴州市', '汝城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1876, '中国', '431027', '桂东县', '湖南省', '郴州市', '桂东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1877, '中国', '431028', '安仁县', '湖南省', '郴州市', '安仁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1878, '中国', '431081', '资兴市', '湖南省', '郴州市', '资兴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1879, '中国', '431100', '永州市', '湖南省', '永州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1880, '中国', '431102', '零陵区', '湖南省', '永州市', '零陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1881, '中国', '431103', '冷水滩区', '湖南省', '永州市', '冷水滩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1882, '中国', '431121', '祁阳县', '湖南省', '永州市', '祁阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1883, '中国', '431122', '东安县', '湖南省', '永州市', '东安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1884, '中国', '431123', '双牌县', '湖南省', '永州市', '双牌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1885, '中国', '431124', '道县', '湖南省', '永州市', '道县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1886, '中国', '431125', '江永县', '湖南省', '永州市', '江永县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1887, '中国', '431126', '宁远县', '湖南省', '永州市', '宁远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1888, '中国', '431127', '蓝山县', '湖南省', '永州市', '蓝山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1889, '中国', '431128', '新田县', '湖南省', '永州市', '新田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1890, '中国', '431129', '江华瑶族自治县', '湖南省', '永州市', '江华瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1891, '中国', '431200', '怀化市', '湖南省', '怀化市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1892, '中国', '431202', '鹤城区', '湖南省', '怀化市', '鹤城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1893, '中国', '431221', '中方县', '湖南省', '怀化市', '中方县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1894, '中国', '431222', '沅陵县', '湖南省', '怀化市', '沅陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1895, '中国', '431223', '辰溪县', '湖南省', '怀化市', '辰溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1896, '中国', '431224', '溆浦县', '湖南省', '怀化市', '溆浦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1897, '中国', '431225', '会同县', '湖南省', '怀化市', '会同县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1898, '中国', '431226', '麻阳苗族自治县', '湖南省', '怀化市', '麻阳苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1899, '中国', '431227', '新晃侗族自治县', '湖南省', '怀化市', '新晃侗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1900, '中国', '431228', '芷江侗族自治县', '湖南省', '怀化市', '芷江侗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1901, '中国', '431229', '靖州苗族侗族自治县', '湖南省', '怀化市', '靖州苗族侗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1902, '中国', '431230', '通道侗族自治县', '湖南省', '怀化市', '通道侗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1903, '中国', '431281', '洪江市', '湖南省', '怀化市', '洪江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1904, '中国', '431300', '娄底市', '湖南省', '娄底市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1905, '中国', '431302', '娄星区', '湖南省', '娄底市', '娄星区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1906, '中国', '431321', '双峰县', '湖南省', '娄底市', '双峰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1907, '中国', '431322', '新化县', '湖南省', '娄底市', '新化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1908, '中国', '431381', '冷水江市', '湖南省', '娄底市', '冷水江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1909, '中国', '431382', '涟源市', '湖南省', '娄底市', '涟源市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1910, '中国', '433100', '湘西土家族苗族自治州', '湖南省', '湘西土家族苗族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1911, '中国', '433101', '吉首市', '湖南省', '湘西土家族苗族自治州', '吉首市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1912, '中国', '433122', '泸溪县', '湖南省', '湘西土家族苗族自治州', '泸溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1913, '中国', '433123', '凤凰县', '湖南省', '湘西土家族苗族自治州', '凤凰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1914, '中国', '433124', '花垣县', '湖南省', '湘西土家族苗族自治州', '花垣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1915, '中国', '441202', '端州区', '广东省', '肇庆市', '端州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1916, '中国', '433125', '保靖县', '湖南省', '湘西土家族苗族自治州', '保靖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1917, '中国', '433126', '古丈县', '湖南省', '湘西土家族苗族自治州', '古丈县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1918, '中国', '433127', '永顺县', '湖南省', '湘西土家族苗族自治州', '永顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1919, '中国', '433130', '龙山县', '湖南省', '湘西土家族苗族自治州', '龙山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1920, '中国', '440000', '广东省', '广东省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1921, '中国', '440100', '广州市', '广东省', '广州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1922, '中国', '440103', '荔湾区', '广东省', '广州市', '荔湾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1923, '中国', '440104', '越秀区', '广东省', '广州市', '越秀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1924, '中国', '440105', '海珠区', '广东省', '广州市', '海珠区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1925, '中国', '440106', '天河区', '广东省', '广州市', '天河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1926, '中国', '440111', '白云区', '广东省', '广州市', '白云区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1927, '中国', '440112', '黄埔区', '广东省', '广州市', '黄埔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1928, '中国', '440113', '番禺区', '广东省', '广州市', '番禺区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1929, '中国', '440114', '花都区', '广东省', '广州市', '花都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1930, '中国', '440115', '南沙区', '广东省', '广州市', '南沙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1931, '中国', '440117', '从化区', '广东省', '广州市', '从化区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1932, '中国', '440118', '增城区', '广东省', '广州市', '增城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1933, '中国', '440200', '韶关市', '广东省', '韶关市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1934, '中国', '440203', '武江区', '广东省', '韶关市', '武江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1935, '中国', '440204', '浈江区', '广东省', '韶关市', '浈江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1936, '中国', '440205', '曲江区', '广东省', '韶关市', '曲江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1937, '中国', '440222', '始兴县', '广东省', '韶关市', '始兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1938, '中国', '440224', '仁化县', '广东省', '韶关市', '仁化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1939, '中国', '440229', '翁源县', '广东省', '韶关市', '翁源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1940, '中国', '440232', '乳源瑶族自治县', '广东省', '韶关市', '乳源瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1941, '中国', '440233', '新丰县', '广东省', '韶关市', '新丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1942, '中国', '440281', '乐昌市', '广东省', '韶关市', '乐昌市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1943, '中国', '440282', '南雄市', '广东省', '韶关市', '南雄市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1944, '中国', '440300', '深圳市', '广东省', '深圳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1945, '中国', '440303', '罗湖区', '广东省', '深圳市', '罗湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1946, '中国', '440304', '福田区', '广东省', '深圳市', '福田区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1947, '中国', '440305', '南山区', '广东省', '深圳市', '南山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1948, '中国', '440306', '宝安区', '广东省', '深圳市', '宝安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1949, '中国', '440307', '龙岗区', '广东省', '深圳市', '龙岗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1950, '中国', '440308', '盐田区', '广东省', '深圳市', '盐田区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1951, '中国', '440309', '龙华区', '广东省', '深圳市', '龙华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1952, '中国', '440310', '坪山区', '广东省', '深圳市', '坪山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1953, '中国', '440311', '光明区', '广东省', '深圳市', '光明区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1954, '中国', '440400', '珠海市', '广东省', '珠海市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1955, '中国', '440402', '香洲区', '广东省', '珠海市', '香洲区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1956, '中国', '440403', '斗门区', '广东省', '珠海市', '斗门区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1957, '中国', '440404', '金湾区', '广东省', '珠海市', '金湾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1958, '中国', '440500', '汕头市', '广东省', '汕头市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1959, '中国', '440507', '龙湖区', '广东省', '汕头市', '龙湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1960, '中国', '440511', '金平区', '广东省', '汕头市', '金平区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1961, '中国', '440512', '濠江区', '广东省', '汕头市', '濠江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1962, '中国', '440513', '潮阳区', '广东省', '汕头市', '潮阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1963, '中国', '440514', '潮南区', '广东省', '汕头市', '潮南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1964, '中国', '440515', '澄海区', '广东省', '汕头市', '澄海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1965, '中国', '440523', '南澳县', '广东省', '汕头市', '南澳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1966, '中国', '440600', '佛山市', '广东省', '佛山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1967, '中国', '440604', '禅城区', '广东省', '佛山市', '禅城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1968, '中国', '440605', '南海区', '广东省', '佛山市', '南海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1969, '中国', '440606', '顺德区', '广东省', '佛山市', '顺德区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1970, '中国', '440607', '三水区', '广东省', '佛山市', '三水区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1971, '中国', '440608', '高明区', '广东省', '佛山市', '高明区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1972, '中国', '440700', '江门市', '广东省', '江门市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1973, '中国', '440703', '蓬江区', '广东省', '江门市', '蓬江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1974, '中国', '440704', '江海区', '广东省', '江门市', '江海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1975, '中国', '440705', '新会区', '广东省', '江门市', '新会区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1976, '中国', '440781', '台山市', '广东省', '江门市', '台山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1977, '中国', '440783', '开平市', '广东省', '江门市', '开平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1978, '中国', '440784', '鹤山市', '广东省', '江门市', '鹤山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1979, '中国', '440785', '恩平市', '广东省', '江门市', '恩平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1980, '中国', '440800', '湛江市', '广东省', '湛江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1981, '中国', '440802', '赤坎区', '广东省', '湛江市', '赤坎区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1982, '中国', '440803', '霞山区', '广东省', '湛江市', '霞山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1983, '中国', '440804', '坡头区', '广东省', '湛江市', '坡头区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1984, '中国', '440811', '麻章区', '广东省', '湛江市', '麻章区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1985, '中国', '440823', '遂溪县', '广东省', '湛江市', '遂溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1986, '中国', '440825', '徐闻县', '广东省', '湛江市', '徐闻县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1987, '中国', '440881', '廉江市', '广东省', '湛江市', '廉江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1988, '中国', '440882', '雷州市', '广东省', '湛江市', '雷州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1989, '中国', '440883', '吴川市', '广东省', '湛江市', '吴川市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1990, '中国', '440900', '茂名市', '广东省', '茂名市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1991, '中国', '440902', '茂南区', '广东省', '茂名市', '茂南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1992, '中国', '440904', '电白区', '广东省', '茂名市', '电白区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1993, '中国', '440981', '高州市', '广东省', '茂名市', '高州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1994, '中国', '440982', '化州市', '广东省', '茂名市', '化州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1995, '中国', '440983', '信宜市', '广东省', '茂名市', '信宜市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1996, '中国', '441200', '肇庆市', '广东省', '肇庆市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1997, '中国', '441203', '鼎湖区', '广东省', '肇庆市', '鼎湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1998, '中国', '441204', '高要区', '广东省', '肇庆市', '高要区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1999, '中国', '441223', '广宁县', '广东省', '肇庆市', '广宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2000, '中国', '441224', '怀集县', '广东省', '肇庆市', '怀集县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2001, '中国', '441225', '封开县', '广东省', '肇庆市', '封开县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2002, '中国', '441226', '德庆县', '广东省', '肇庆市', '德庆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2003, '中国', '441284', '四会市', '广东省', '肇庆市', '四会市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2005, '中国', '441302', '惠城区', '广东省', '惠州市', '惠城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2006, '中国', '441303', '惠阳区', '广东省', '惠州市', '惠阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2007, '中国', '441322', '博罗县', '广东省', '惠州市', '博罗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2008, '中国', '441323', '惠东县', '广东省', '惠州市', '惠东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2009, '中国', '441324', '龙门县', '广东省', '惠州市', '龙门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2010, '中国', '441400', '梅州市', '广东省', '梅州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2011, '中国', '441402', '梅江区', '广东省', '梅州市', '梅江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2012, '中国', '441403', '梅县区', '广东省', '梅州市', '梅县区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2013, '中国', '441422', '大埔县', '广东省', '梅州市', '大埔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2014, '中国', '441423', '丰顺县', '广东省', '梅州市', '丰顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2015, '中国', '441424', '五华县', '广东省', '梅州市', '五华县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2016, '中国', '441426', '平远县', '广东省', '梅州市', '平远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2017, '中国', '441427', '蕉岭县', '广东省', '梅州市', '蕉岭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2018, '中国', '441481', '兴宁市', '广东省', '梅州市', '兴宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2019, '中国', '441500', '汕尾市', '广东省', '汕尾市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2020, '中国', '441502', '城区', '广东省', '汕尾市', '城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2021, '中国', '441521', '海丰县', '广东省', '汕尾市', '海丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2022, '中国', '441523', '陆河县', '广东省', '汕尾市', '陆河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2023, '中国', '441581', '陆丰市', '广东省', '汕尾市', '陆丰市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2024, '中国', '441600', '河源市', '广东省', '河源市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2025, '中国', '441602', '源城区', '广东省', '河源市', '源城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2026, '中国', '441621', '紫金县', '广东省', '河源市', '紫金县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2027, '中国', '441622', '龙川县', '广东省', '河源市', '龙川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2028, '中国', '441623', '连平县', '广东省', '河源市', '连平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2029, '中国', '441624', '和平县', '广东省', '河源市', '和平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2030, '中国', '441625', '东源县', '广东省', '河源市', '东源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2031, '中国', '441700', '阳江市', '广东省', '阳江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2032, '中国', '441702', '江城区', '广东省', '阳江市', '江城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2033, '中国', '441704', '阳东区', '广东省', '阳江市', '阳东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2034, '中国', '441721', '阳西县', '广东省', '阳江市', '阳西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2035, '中国', '441781', '阳春市', '广东省', '阳江市', '阳春市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2036, '中国', '441800', '清远市', '广东省', '清远市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2037, '中国', '441802', '清城区', '广东省', '清远市', '清城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2038, '中国', '441803', '清新区', '广东省', '清远市', '清新区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2039, '中国', '441821', '佛冈县', '广东省', '清远市', '佛冈县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2040, '中国', '441823', '阳山县', '广东省', '清远市', '阳山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2041, '中国', '441825', '连山壮族瑶族自治县', '广东省', '清远市', '连山壮族瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2042, '中国', '441826', '连南瑶族自治县', '广东省', '清远市', '连南瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2043, '中国', '441881', '英德市', '广东省', '清远市', '英德市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2044, '中国', '441882', '连州市', '广东省', '清远市', '连州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2045, '中国', '441900', '东莞市', '广东省', '东莞市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2046, '中国', '442000', '中山市', '广东省', '中山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2047, '中国', '445100', '潮州市', '广东省', '潮州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2048, '中国', '445102', '湘桥区', '广东省', '潮州市', '湘桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2049, '中国', '445103', '潮安区', '广东省', '潮州市', '潮安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2050, '中国', '445122', '饶平县', '广东省', '潮州市', '饶平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2051, '中国', '445200', '揭阳市', '广东省', '揭阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2052, '中国', '445202', '榕城区', '广东省', '揭阳市', '榕城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2053, '中国', '445203', '揭东区', '广东省', '揭阳市', '揭东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2054, '中国', '445222', '揭西县', '广东省', '揭阳市', '揭西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2055, '中国', '445224', '惠来县', '广东省', '揭阳市', '惠来县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2056, '中国', '445281', '普宁市', '广东省', '揭阳市', '普宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2057, '中国', '445300', '云浮市', '广东省', '云浮市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2058, '中国', '445302', '云城区', '广东省', '云浮市', '云城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2059, '中国', '445303', '云安区', '广东省', '云浮市', '云安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2060, '中国', '445321', '新兴县', '广东省', '云浮市', '新兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2061, '中国', '445322', '郁南县', '广东省', '云浮市', '郁南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2062, '中国', '445381', '罗定市', '广东省', '云浮市', '罗定市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2063, '中国', '450000', '广西壮族自治区', '广西壮族自治区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2064, '中国', '450100', '南宁市', '广西壮族自治区', '南宁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2065, '中国', '450102', '兴宁区', '广西壮族自治区', '南宁市', '兴宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2066, '中国', '450103', '青秀区', '广西壮族自治区', '南宁市', '青秀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2067, '中国', '450105', '江南区', '广西壮族自治区', '南宁市', '江南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2068, '中国', '450107', '西乡塘区', '广西壮族自治区', '南宁市', '西乡塘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2069, '中国', '450108', '良庆区', '广西壮族自治区', '南宁市', '良庆区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2070, '中国', '450109', '邕宁区', '广西壮族自治区', '南宁市', '邕宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2071, '中国', '450110', '武鸣区', '广西壮族自治区', '南宁市', '武鸣区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2072, '中国', '450123', '隆安县', '广西壮族自治区', '南宁市', '隆安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2073, '中国', '450124', '马山县', '广西壮族自治区', '南宁市', '马山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2074, '中国', '450125', '上林县', '广西壮族自治区', '南宁市', '上林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2075, '中国', '450126', '宾阳县', '广西壮族自治区', '南宁市', '宾阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2076, '中国', '450127', '横县', '广西壮族自治区', '南宁市', '横县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2077, '中国', '450200', '柳州市', '广西壮族自治区', '柳州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2078, '中国', '450202', '城中区', '广西壮族自治区', '柳州市', '城中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2079, '中国', '450203', '鱼峰区', '广西壮族自治区', '柳州市', '鱼峰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2080, '中国', '450204', '柳南区', '广西壮族自治区', '柳州市', '柳南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2081, '中国', '450205', '柳北区', '广西壮族自治区', '柳州市', '柳北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2082, '中国', '450206', '柳江区', '广西壮族自治区', '柳州市', '柳江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2083, '中国', '450222', '柳城县', '广西壮族自治区', '柳州市', '柳城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2084, '中国', '450223', '鹿寨县', '广西壮族自治区', '柳州市', '鹿寨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2085, '中国', '450224', '融安县', '广西壮族自治区', '柳州市', '融安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2086, '中国', '450225', '融水苗族自治县', '广西壮族自治区', '柳州市', '融水苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2087, '中国', '450226', '三江侗族自治县', '广西壮族自治区', '柳州市', '三江侗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2088, '中国', '450300', '桂林市', '广西壮族自治区', '桂林市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2089, '中国', '450302', '秀峰区', '广西壮族自治区', '桂林市', '秀峰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2090, '中国', '450303', '叠彩区', '广西壮族自治区', '桂林市', '叠彩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2091, '中国', '450304', '象山区', '广西壮族自治区', '桂林市', '象山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2092, '中国', '450305', '七星区', '广西壮族自治区', '桂林市', '七星区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2093, '中国', '450311', '雁山区', '广西壮族自治区', '桂林市', '雁山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2094, '中国', '450312', '临桂区', '广西壮族自治区', '桂林市', '临桂区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2095, '中国', '450321', '阳朔县', '广西壮族自治区', '桂林市', '阳朔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2096, '中国', '450323', '灵川县', '广西壮族自治区', '桂林市', '灵川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2097, '中国', '450324', '全州县', '广西壮族自治区', '桂林市', '全州县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2098, '中国', '450325', '兴安县', '广西壮族自治区', '桂林市', '兴安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2099, '中国', '450326', '永福县', '广西壮族自治区', '桂林市', '永福县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2100, '中国', '450327', '灌阳县', '广西壮族自治区', '桂林市', '灌阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2101, '中国', '450328', '龙胜各族自治县', '广西壮族自治区', '桂林市', '龙胜各族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2102, '中国', '450329', '资源县', '广西壮族自治区', '桂林市', '资源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2103, '中国', '450330', '平乐县', '广西壮族自治区', '桂林市', '平乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2104, '中国', '450332', '恭城瑶族自治县', '广西壮族自治区', '桂林市', '恭城瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2105, '中国', '450381', '荔浦市', '广西壮族自治区', '桂林市', '荔浦市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2106, '中国', '450400', '梧州市', '广西壮族自治区', '梧州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2107, '中国', '450403', '万秀区', '广西壮族自治区', '梧州市', '万秀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2108, '中国', '450405', '长洲区', '广西壮族自治区', '梧州市', '长洲区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2109, '中国', '450406', '龙圩区', '广西壮族自治区', '梧州市', '龙圩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2110, '中国', '450421', '苍梧县', '广西壮族自治区', '梧州市', '苍梧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2111, '中国', '450422', '藤县', '广西壮族自治区', '梧州市', '藤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2112, '中国', '450423', '蒙山县', '广西壮族自治区', '梧州市', '蒙山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2113, '中国', '450481', '岑溪市', '广西壮族自治区', '梧州市', '岑溪市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2114, '中国', '450500', '北海市', '广西壮族自治区', '北海市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2115, '中国', '450502', '海城区', '广西壮族自治区', '北海市', '海城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2116, '中国', '450503', '银海区', '广西壮族自治区', '北海市', '银海区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2117, '中国', '450512', '铁山港区', '广西壮族自治区', '北海市', '铁山港区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2118, '中国', '450521', '合浦县', '广西壮族自治区', '北海市', '合浦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2119, '中国', '450600', '防城港市', '广西壮族自治区', '防城港市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2120, '中国', '450602', '港口区', '广西壮族自治区', '防城港市', '港口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2121, '中国', '450603', '防城区', '广西壮族自治区', '防城港市', '防城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2122, '中国', '450621', '上思县', '广西壮族自治区', '防城港市', '上思县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2123, '中国', '450681', '东兴市', '广西壮族自治区', '防城港市', '东兴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2124, '中国', '450700', '钦州市', '广西壮族自治区', '钦州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2125, '中国', '450702', '钦南区', '广西壮族自治区', '钦州市', '钦南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2126, '中国', '450703', '钦北区', '广西壮族自治区', '钦州市', '钦北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2127, '中国', '450721', '灵山县', '广西壮族自治区', '钦州市', '灵山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2128, '中国', '450722', '浦北县', '广西壮族自治区', '钦州市', '浦北县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2129, '中国', '450800', '贵港市', '广西壮族自治区', '贵港市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2130, '中国', '450802', '港北区', '广西壮族自治区', '贵港市', '港北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2131, '中国', '450803', '港南区', '广西壮族自治区', '贵港市', '港南区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2132, '中国', '450804', '覃塘区', '广西壮族自治区', '贵港市', '覃塘区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2133, '中国', '450821', '平南县', '广西壮族自治区', '贵港市', '平南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2134, '中国', '450881', '桂平市', '广西壮族自治区', '贵港市', '桂平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2135, '中国', '450900', '玉林市', '广西壮族自治区', '玉林市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2136, '中国', '450902', '玉州区', '广西壮族自治区', '玉林市', '玉州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2137, '中国', '450903', '福绵区', '广西壮族自治区', '玉林市', '福绵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2138, '中国', '450921', '容县', '广西壮族自治区', '玉林市', '容县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2139, '中国', '450922', '陆川县', '广西壮族自治区', '玉林市', '陆川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2140, '中国', '450923', '博白县', '广西壮族自治区', '玉林市', '博白县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2141, '中国', '450924', '兴业县', '广西壮族自治区', '玉林市', '兴业县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2142, '中国', '450981', '北流市', '广西壮族自治区', '玉林市', '北流市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2143, '中国', '451000', '百色市', '广西壮族自治区', '百色市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2144, '中国', '451002', '右江区', '广西壮族自治区', '百色市', '右江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2145, '中国', '451003', '田阳区', '广西壮族自治区', '百色市', '田阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2146, '中国', '451022', '田东县', '广西壮族自治区', '百色市', '田东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2147, '中国', '451024', '德保县', '广西壮族自治区', '百色市', '德保县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2148, '中国', '451026', '那坡县', '广西壮族自治区', '百色市', '那坡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2149, '中国', '451027', '凌云县', '广西壮族自治区', '百色市', '凌云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2150, '中国', '451028', '乐业县', '广西壮族自治区', '百色市', '乐业县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2151, '中国', '451029', '田林县', '广西壮族自治区', '百色市', '田林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2152, '中国', '451030', '西林县', '广西壮族自治区', '百色市', '西林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2153, '中国', '451031', '隆林各族自治县', '广西壮族自治区', '百色市', '隆林各族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2154, '中国', '451081', '靖西市', '广西壮族自治区', '百色市', '靖西市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2155, '中国', '451082', '平果市', '广西壮族自治区', '百色市', '平果市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2156, '中国', '451100', '贺州市', '广西壮族自治区', '贺州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2157, '中国', '451102', '八步区', '广西壮族自治区', '贺州市', '八步区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2158, '中国', '451103', '平桂区', '广西壮族自治区', '贺州市', '平桂区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2159, '中国', '451121', '昭平县', '广西壮族自治区', '贺州市', '昭平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2160, '中国', '451122', '钟山县', '广西壮族自治区', '贺州市', '钟山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2161, '中国', '451123', '富川瑶族自治县', '广西壮族自治区', '贺州市', '富川瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2162, '中国', '451200', '河池市', '广西壮族自治区', '河池市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2163, '中国', '451202', '金城江区', '广西壮族自治区', '河池市', '金城江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2164, '中国', '451203', '宜州区', '广西壮族自治区', '河池市', '宜州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2165, '中国', '451221', '南丹县', '广西壮族自治区', '河池市', '南丹县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2166, '中国', '451222', '天峨县', '广西壮族自治区', '河池市', '天峨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2167, '中国', '451223', '凤山县', '广西壮族自治区', '河池市', '凤山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2168, '中国', '451224', '东兰县', '广西壮族自治区', '河池市', '东兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2169, '中国', '451225', '罗城仫佬族自治县', '广西壮族自治区', '河池市', '罗城仫佬族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2170, '中国', '451226', '环江毛南族自治县', '广西壮族自治区', '河池市', '环江毛南族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2171, '中国', '451227', '巴马瑶族自治县', '广西壮族自治区', '河池市', '巴马瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2172, '中国', '451228', '都安瑶族自治县', '广西壮族自治区', '河池市', '都安瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2173, '中国', '451229', '大化瑶族自治县', '广西壮族自治区', '河池市', '大化瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2174, '中国', '451300', '来宾市', '广西壮族自治区', '来宾市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2175, '中国', '451302', '兴宾区', '广西壮族自治区', '来宾市', '兴宾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2176, '中国', '451321', '忻城县', '广西壮族自治区', '来宾市', '忻城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2177, '中国', '451322', '象州县', '广西壮族自治区', '来宾市', '象州县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2178, '中国', '451323', '武宣县', '广西壮族自治区', '来宾市', '武宣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2179, '中国', '451324', '金秀瑶族自治县', '广西壮族自治区', '来宾市', '金秀瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2180, '中国', '451381', '合山市', '广西壮族自治区', '来宾市', '合山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2181, '中国', '451400', '崇左市', '广西壮族自治区', '崇左市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2182, '中国', '451402', '江州区', '广西壮族自治区', '崇左市', '江州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2183, '中国', '451421', '扶绥县', '广西壮族自治区', '崇左市', '扶绥县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2184, '中国', '451422', '宁明县', '广西壮族自治区', '崇左市', '宁明县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2185, '中国', '451423', '龙州县', '广西壮族自治区', '崇左市', '龙州县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2186, '中国', '451424', '大新县', '广西壮族自治区', '崇左市', '大新县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2187, '中国', '451425', '天等县', '广西壮族自治区', '崇左市', '天等县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2188, '中国', '451481', '凭祥市', '广西壮族自治区', '崇左市', '凭祥市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2189, '中国', '460000', '海南省', '海南省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2190, '中国', '460100', '海口市', '海南省', '海口市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2191, '中国', '460105', '秀英区', '海南省', '海口市', '秀英区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2192, '中国', '460106', '龙华区', '海南省', '海口市', '龙华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2193, '中国', '460107', '琼山区', '海南省', '海口市', '琼山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2194, '中国', '460108', '美兰区', '海南省', '海口市', '美兰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2195, '中国', '460200', '三亚市', '海南省', '三亚市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2196, '中国', '460202', '海棠区', '海南省', '三亚市', '海棠区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2197, '中国', '460203', '吉阳区', '海南省', '三亚市', '吉阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2198, '中国', '460204', '天涯区', '海南省', '三亚市', '天涯区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2199, '中国', '460205', '崖州区', '海南省', '三亚市', '崖州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2200, '中国', '460300', '三沙市', '海南省', '三沙市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2201, '中国', '', '西沙区', '海南省', '三沙市', '西沙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2202, '中国', '', '南沙区', '海南省', '三沙市', '南沙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2203, '中国', '460400', '儋州市', '海南省', '儋州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2219, '中国', '500000', '重庆市', '重庆市', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2220, '中国', '500101', '万州区', '重庆市', '万州区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2221, '中国', '500102', '涪陵区', '重庆市', '涪陵区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2222, '中国', '500103', '渝中区', '重庆市', '渝中区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2223, '中国', '500104', '大渡口区', '重庆市', '大渡口区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2224, '中国', '500105', '江北区', '重庆市', '江北区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2225, '中国', '500106', '沙坪坝区', '重庆市', '沙坪坝区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2226, '中国', '500107', '九龙坡区', '重庆市', '九龙坡区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2227, '中国', '500108', '南岸区', '重庆市', '南岸区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2228, '中国', '500109', '北碚区', '重庆市', '北碚区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2229, '中国', '500110', '綦江区', '重庆市', '綦江区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2230, '中国', '500111', '大足区', '重庆市', '大足区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2231, '中国', '500112', '渝北区', '重庆市', '渝北区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2232, '中国', '500113', '巴南区', '重庆市', '巴南区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2233, '中国', '500114', '黔江区', '重庆市', '黔江区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2234, '中国', '500115', '长寿区', '重庆市', '长寿区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2235, '中国', '500116', '江津区', '重庆市', '江津区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2236, '中国', '500117', '合川区', '重庆市', '合川区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2237, '中国', '500118', '永川区', '重庆市', '永川区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2238, '中国', '500119', '南川区', '重庆市', '南川区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2239, '中国', '500120', '璧山区', '重庆市', '璧山区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2240, '中国', '500151', '铜梁区', '重庆市', '铜梁区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2241, '中国', '500152', '潼南区', '重庆市', '潼南区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2242, '中国', '500153', '荣昌区', '重庆市', '荣昌区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2243, '中国', '500154', '开州区', '重庆市', '开州区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2244, '中国', '500155', '梁平区', '重庆市', '梁平区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2245, '中国', '500156', '武隆区', '重庆市', '武隆区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2246, '中国', '500229', '城口县', '重庆市', '城口县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2247, '中国', '500230', '丰都县', '重庆市', '丰都县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2248, '中国', '500231', '垫江县', '重庆市', '垫江县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2249, '中国', '500233', '忠县', '重庆市', '忠县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2250, '中国', '500235', '云阳县', '重庆市', '云阳县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2251, '中国', '500236', '奉节县', '重庆市', '奉节县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2252, '中国', '500237', '巫山县', '重庆市', '巫山县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2253, '中国', '500238', '巫溪县', '重庆市', '巫溪县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2254, '中国', '500240', '石柱土家族自治县', '重庆市', '石柱土家族自治县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2255, '中国', '500241', '秀山土家族苗族自治县', '重庆市', '秀山土家族苗族自治县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2256, '中国', '500242', '酉阳土家族苗族自治县', '重庆市', '酉阳土家族苗族自治县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2257, '中国', '500243', '彭水苗族土家族自治县', '重庆市', '彭水苗族土家族自治县', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2258, '中国', '510000', '四川省', '四川省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2259, '中国', '510100', '成都市', '四川省', '成都市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2260, '中国', '510104', '锦江区', '四川省', '成都市', '锦江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2261, '中国', '510105', '青羊区', '四川省', '成都市', '青羊区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2262, '中国', '510106', '金牛区', '四川省', '成都市', '金牛区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2263, '中国', '510107', '武侯区', '四川省', '成都市', '武侯区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2264, '中国', '510108', '成华区', '四川省', '成都市', '成华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2265, '中国', '510112', '龙泉驿区', '四川省', '成都市', '龙泉驿区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2266, '中国', '510113', '青白江区', '四川省', '成都市', '青白江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2267, '中国', '510114', '新都区', '四川省', '成都市', '新都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2268, '中国', '510115', '温江区', '四川省', '成都市', '温江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2269, '中国', '510116', '双流区', '四川省', '成都市', '双流区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2270, '中国', '510117', '郫都区', '四川省', '成都市', '郫都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2271, '中国', '510118', '新津区', '四川省', '成都市', '新津区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2272, '中国', '510121', '金堂县', '四川省', '成都市', '金堂县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2273, '中国', '510129', '大邑县', '四川省', '成都市', '大邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2274, '中国', '510131', '蒲江县', '四川省', '成都市', '蒲江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2275, '中国', '510181', '都江堰市', '四川省', '成都市', '都江堰市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2276, '中国', '510182', '彭州市', '四川省', '成都市', '彭州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2277, '中国', '510183', '邛崃市', '四川省', '成都市', '邛崃市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2278, '中国', '510184', '崇州市', '四川省', '成都市', '崇州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2279, '中国', '510185', '简阳市', '四川省', '成都市', '简阳市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2280, '中国', '510300', '自贡市', '四川省', '自贡市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2281, '中国', '510302', '自流井区', '四川省', '自贡市', '自流井区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2282, '中国', '510303', '贡井区', '四川省', '自贡市', '贡井区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2283, '中国', '510304', '大安区', '四川省', '自贡市', '大安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2284, '中国', '510311', '沿滩区', '四川省', '自贡市', '沿滩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2285, '中国', '510321', '荣县', '四川省', '自贡市', '荣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2286, '中国', '510322', '富顺县', '四川省', '自贡市', '富顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2287, '中国', '510400', '攀枝花市', '四川省', '攀枝花市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2288, '中国', '510402', '东区', '四川省', '攀枝花市', '东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2289, '中国', '510403', '西区', '四川省', '攀枝花市', '西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2290, '中国', '510411', '仁和区', '四川省', '攀枝花市', '仁和区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2291, '中国', '510421', '米易县', '四川省', '攀枝花市', '米易县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2292, '中国', '510422', '盐边县', '四川省', '攀枝花市', '盐边县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2293, '中国', '510500', '泸州市', '四川省', '泸州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2294, '中国', '510502', '江阳区', '四川省', '泸州市', '江阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2295, '中国', '510503', '纳溪区', '四川省', '泸州市', '纳溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2296, '中国', '510504', '龙马潭区', '四川省', '泸州市', '龙马潭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2297, '中国', '510521', '泸县', '四川省', '泸州市', '泸县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2298, '中国', '510522', '合江县', '四川省', '泸州市', '合江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2299, '中国', '510524', '叙永县', '四川省', '泸州市', '叙永县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2300, '中国', '510525', '古蔺县', '四川省', '泸州市', '古蔺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2301, '中国', '510600', '德阳市', '四川省', '德阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2302, '中国', '510603', '旌阳区', '四川省', '德阳市', '旌阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2303, '中国', '510604', '罗江区', '四川省', '德阳市', '罗江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2304, '中国', '510623', '中江县', '四川省', '德阳市', '中江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2305, '中国', '510681', '广汉市', '四川省', '德阳市', '广汉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2306, '中国', '510682', '什邡市', '四川省', '德阳市', '什邡市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2307, '中国', '510683', '绵竹市', '四川省', '德阳市', '绵竹市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2308, '中国', '510700', '绵阳市', '四川省', '绵阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2309, '中国', '510703', '涪城区', '四川省', '绵阳市', '涪城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2310, '中国', '510704', '游仙区', '四川省', '绵阳市', '游仙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2311, '中国', '510705', '安州区', '四川省', '绵阳市', '安州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2312, '中国', '510722', '三台县', '四川省', '绵阳市', '三台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2313, '中国', '510723', '盐亭县', '四川省', '绵阳市', '盐亭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2314, '中国', '510725', '梓潼县', '四川省', '绵阳市', '梓潼县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2315, '中国', '510726', '北川羌族自治县', '四川省', '绵阳市', '北川羌族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2316, '中国', '510727', '平武县', '四川省', '绵阳市', '平武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2317, '中国', '510781', '江油市', '四川省', '绵阳市', '江油市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2318, '中国', '510800', '广元市', '四川省', '广元市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2319, '中国', '510802', '利州区', '四川省', '广元市', '利州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2320, '中国', '510811', '昭化区', '四川省', '广元市', '昭化区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2321, '中国', '510812', '朝天区', '四川省', '广元市', '朝天区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2322, '中国', '510821', '旺苍县', '四川省', '广元市', '旺苍县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2323, '中国', '510822', '青川县', '四川省', '广元市', '青川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2324, '中国', '510823', '剑阁县', '四川省', '广元市', '剑阁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2325, '中国', '510824', '苍溪县', '四川省', '广元市', '苍溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2326, '中国', '510900', '遂宁市', '四川省', '遂宁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2327, '中国', '510903', '船山区', '四川省', '遂宁市', '船山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2328, '中国', '510904', '安居区', '四川省', '遂宁市', '安居区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2329, '中国', '510921', '蓬溪县', '四川省', '遂宁市', '蓬溪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2330, '中国', '510923', '大英县', '四川省', '遂宁市', '大英县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2331, '中国', '510981', '射洪市', '四川省', '遂宁市', '射洪市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2332, '中国', '511000', '内江市', '四川省', '内江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2333, '中国', '511002', '市中区', '四川省', '内江市', '市中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2334, '中国', '511011', '东兴区', '四川省', '内江市', '东兴区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2335, '中国', '511024', '威远县', '四川省', '内江市', '威远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2336, '中国', '511025', '资中县', '四川省', '内江市', '资中县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2337, '中国', '511083', '隆昌市', '四川省', '内江市', '隆昌市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2338, '中国', '511100', '乐山市', '四川省', '乐山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2339, '中国', '511102', '市中区', '四川省', '乐山市', '市中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2340, '中国', '511111', '沙湾区', '四川省', '乐山市', '沙湾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2341, '中国', '511112', '五通桥区', '四川省', '乐山市', '五通桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2342, '中国', '511113', '金口河区', '四川省', '乐山市', '金口河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2343, '中国', '511123', '犍为县', '四川省', '乐山市', '犍为县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2344, '中国', '511124', '井研县', '四川省', '乐山市', '井研县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2345, '中国', '511126', '夹江县', '四川省', '乐山市', '夹江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2346, '中国', '511129', '沐川县', '四川省', '乐山市', '沐川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2347, '中国', '511132', '峨边彝族自治县', '四川省', '乐山市', '峨边彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2348, '中国', '511133', '马边彝族自治县', '四川省', '乐山市', '马边彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2349, '中国', '511181', '峨眉山市', '四川省', '乐山市', '峨眉山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2350, '中国', '511300', '南充市', '四川省', '南充市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2351, '中国', '511302', '顺庆区', '四川省', '南充市', '顺庆区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2352, '中国', '511303', '高坪区', '四川省', '南充市', '高坪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2353, '中国', '511304', '嘉陵区', '四川省', '南充市', '嘉陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2354, '中国', '511321', '南部县', '四川省', '南充市', '南部县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2355, '中国', '511322', '营山县', '四川省', '南充市', '营山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2356, '中国', '511323', '蓬安县', '四川省', '南充市', '蓬安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2357, '中国', '511324', '仪陇县', '四川省', '南充市', '仪陇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2358, '中国', '511325', '西充县', '四川省', '南充市', '西充县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2359, '中国', '511381', '阆中市', '四川省', '南充市', '阆中市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2360, '中国', '511400', '眉山市', '四川省', '眉山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2361, '中国', '511402', '东坡区', '四川省', '眉山市', '东坡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2362, '中国', '511403', '彭山区', '四川省', '眉山市', '彭山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2363, '中国', '511421', '仁寿县', '四川省', '眉山市', '仁寿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2364, '中国', '511423', '洪雅县', '四川省', '眉山市', '洪雅县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2365, '中国', '511424', '丹棱县', '四川省', '眉山市', '丹棱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2366, '中国', '511425', '青神县', '四川省', '眉山市', '青神县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2367, '中国', '511500', '宜宾市', '四川省', '宜宾市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2368, '中国', '511502', '翠屏区', '四川省', '宜宾市', '翠屏区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2369, '中国', '511503', '南溪区', '四川省', '宜宾市', '南溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2370, '中国', '511504', '叙州区', '四川省', '宜宾市', '叙州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2371, '中国', '511523', '江安县', '四川省', '宜宾市', '江安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2372, '中国', '511524', '长宁县', '四川省', '宜宾市', '长宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2373, '中国', '511525', '高县', '四川省', '宜宾市', '高县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2374, '中国', '511526', '珙县', '四川省', '宜宾市', '珙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2375, '中国', '511527', '筠连县', '四川省', '宜宾市', '筠连县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2376, '中国', '511528', '兴文县', '四川省', '宜宾市', '兴文县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2377, '中国', '511529', '屏山县', '四川省', '宜宾市', '屏山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2378, '中国', '511600', '广安市', '四川省', '广安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2379, '中国', '511602', '广安区', '四川省', '广安市', '广安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2380, '中国', '511603', '前锋区', '四川省', '广安市', '前锋区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2381, '中国', '511621', '岳池县', '四川省', '广安市', '岳池县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2382, '中国', '511622', '武胜县', '四川省', '广安市', '武胜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2383, '中国', '511623', '邻水县', '四川省', '广安市', '邻水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2384, '中国', '511681', '华蓥市', '四川省', '广安市', '华蓥市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2385, '中国', '511700', '达州市', '四川省', '达州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2386, '中国', '511702', '通川区', '四川省', '达州市', '通川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2387, '中国', '511703', '达川区', '四川省', '达州市', '达川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2388, '中国', '511722', '宣汉县', '四川省', '达州市', '宣汉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2389, '中国', '511723', '开江县', '四川省', '达州市', '开江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2390, '中国', '511724', '大竹县', '四川省', '达州市', '大竹县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2391, '中国', '511725', '渠县', '四川省', '达州市', '渠县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2392, '中国', '511781', '万源市', '四川省', '达州市', '万源市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2393, '中国', '511800', '雅安市', '四川省', '雅安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2394, '中国', '511802', '雨城区', '四川省', '雅安市', '雨城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2395, '中国', '511803', '名山区', '四川省', '雅安市', '名山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2396, '中国', '511822', '荥经县', '四川省', '雅安市', '荥经县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2397, '中国', '511823', '汉源县', '四川省', '雅安市', '汉源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2398, '中国', '511824', '石棉县', '四川省', '雅安市', '石棉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2399, '中国', '511825', '天全县', '四川省', '雅安市', '天全县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2400, '中国', '511826', '芦山县', '四川省', '雅安市', '芦山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2401, '中国', '511827', '宝兴县', '四川省', '雅安市', '宝兴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2402, '中国', '511900', '巴中市', '四川省', '巴中市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2403, '中国', '511902', '巴州区', '四川省', '巴中市', '巴州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2404, '中国', '511903', '恩阳区', '四川省', '巴中市', '恩阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2405, '中国', '511921', '通江县', '四川省', '巴中市', '通江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2406, '中国', '511922', '南江县', '四川省', '巴中市', '南江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2407, '中国', '511923', '平昌县', '四川省', '巴中市', '平昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2408, '中国', '512000', '资阳市', '四川省', '资阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2409, '中国', '512002', '雁江区', '四川省', '资阳市', '雁江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2410, '中国', '512021', '安岳县', '四川省', '资阳市', '安岳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2411, '中国', '512022', '乐至县', '四川省', '资阳市', '乐至县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2412, '中国', '513200', '阿坝藏族羌族自治州', '四川省', '阿坝藏族羌族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2413, '中国', '513201', '马尔康市', '四川省', '阿坝藏族羌族自治州', '马尔康市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2414, '中国', '513221', '汶川县', '四川省', '阿坝藏族羌族自治州', '汶川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2415, '中国', '513222', '理县', '四川省', '阿坝藏族羌族自治州', '理县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2416, '中国', '513223', '茂县', '四川省', '阿坝藏族羌族自治州', '茂县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2417, '中国', '513224', '松潘县', '四川省', '阿坝藏族羌族自治州', '松潘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2418, '中国', '513225', '九寨沟县', '四川省', '阿坝藏族羌族自治州', '九寨沟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2419, '中国', '513226', '金川县', '四川省', '阿坝藏族羌族自治州', '金川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2420, '中国', '513227', '小金县', '四川省', '阿坝藏族羌族自治州', '小金县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2421, '中国', '513228', '黑水县', '四川省', '阿坝藏族羌族自治州', '黑水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2422, '中国', '513230', '壤塘县', '四川省', '阿坝藏族羌族自治州', '壤塘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2423, '中国', '513231', '阿坝县', '四川省', '阿坝藏族羌族自治州', '阿坝县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2424, '中国', '513232', '若尔盖县', '四川省', '阿坝藏族羌族自治州', '若尔盖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2425, '中国', '513233', '红原县', '四川省', '阿坝藏族羌族自治州', '红原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2426, '中国', '513300', '甘孜藏族自治州', '四川省', '甘孜藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2427, '中国', '513301', '康定市', '四川省', '甘孜藏族自治州', '康定市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2428, '中国', '513322', '泸定县', '四川省', '甘孜藏族自治州', '泸定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2429, '中国', '513323', '丹巴县', '四川省', '甘孜藏族自治州', '丹巴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2430, '中国', '513324', '九龙县', '四川省', '甘孜藏族自治州', '九龙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2431, '中国', '513325', '雅江县', '四川省', '甘孜藏族自治州', '雅江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2432, '中国', '513326', '道孚县', '四川省', '甘孜藏族自治州', '道孚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2433, '中国', '513327', '炉霍县', '四川省', '甘孜藏族自治州', '炉霍县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2434, '中国', '513328', '甘孜县', '四川省', '甘孜藏族自治州', '甘孜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2435, '中国', '513329', '新龙县', '四川省', '甘孜藏族自治州', '新龙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2436, '中国', '513330', '德格县', '四川省', '甘孜藏族自治州', '德格县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2437, '中国', '513331', '白玉县', '四川省', '甘孜藏族自治州', '白玉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2438, '中国', '513332', '石渠县', '四川省', '甘孜藏族自治州', '石渠县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2439, '中国', '513333', '色达县', '四川省', '甘孜藏族自治州', '色达县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2440, '中国', '513334', '理塘县', '四川省', '甘孜藏族自治州', '理塘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2441, '中国', '513335', '巴塘县', '四川省', '甘孜藏族自治州', '巴塘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2442, '中国', '513336', '乡城县', '四川省', '甘孜藏族自治州', '乡城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2443, '中国', '513337', '稻城县', '四川省', '甘孜藏族自治州', '稻城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2444, '中国', '513338', '得荣县', '四川省', '甘孜藏族自治州', '得荣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2445, '中国', '513400', '凉山彝族自治州', '四川省', '凉山彝族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2446, '中国', '513401', '西昌市', '四川省', '凉山彝族自治州', '西昌市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2447, '中国', '513422', '木里藏族自治县', '四川省', '凉山彝族自治州', '木里藏族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2448, '中国', '513423', '盐源县', '四川省', '凉山彝族自治州', '盐源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2449, '中国', '513424', '德昌县', '四川省', '凉山彝族自治州', '德昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2450, '中国', '513425', '会理县', '四川省', '凉山彝族自治州', '会理县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2451, '中国', '513426', '会东县', '四川省', '凉山彝族自治州', '会东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2452, '中国', '513427', '宁南县', '四川省', '凉山彝族自治州', '宁南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2453, '中国', '513428', '普格县', '四川省', '凉山彝族自治州', '普格县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2454, '中国', '513429', '布拖县', '四川省', '凉山彝族自治州', '布拖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2455, '中国', '513430', '金阳县', '四川省', '凉山彝族自治州', '金阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2456, '中国', '513431', '昭觉县', '四川省', '凉山彝族自治州', '昭觉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2457, '中国', '513432', '喜德县', '四川省', '凉山彝族自治州', '喜德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2458, '中国', '513433', '冕宁县', '四川省', '凉山彝族自治州', '冕宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2459, '中国', '513434', '越西县', '四川省', '凉山彝族自治州', '越西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2460, '中国', '513435', '甘洛县', '四川省', '凉山彝族自治州', '甘洛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2461, '中国', '513436', '美姑县', '四川省', '凉山彝族自治州', '美姑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2462, '中国', '513437', '雷波县', '四川省', '凉山彝族自治州', '雷波县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2463, '中国', '520000', '贵州省', '贵州省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2464, '中国', '520100', '贵阳市', '贵州省', '贵阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2465, '中国', '520102', '南明区', '贵州省', '贵阳市', '南明区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2466, '中国', '520103', '云岩区', '贵州省', '贵阳市', '云岩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2467, '中国', '520111', '花溪区', '贵州省', '贵阳市', '花溪区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2468, '中国', '520112', '乌当区', '贵州省', '贵阳市', '乌当区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2469, '中国', '520113', '白云区', '贵州省', '贵阳市', '白云区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2470, '中国', '520115', '观山湖区', '贵州省', '贵阳市', '观山湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2471, '中国', '520121', '开阳县', '贵州省', '贵阳市', '开阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2472, '中国', '520122', '息烽县', '贵州省', '贵阳市', '息烽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2473, '中国', '520123', '修文县', '贵州省', '贵阳市', '修文县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2474, '中国', '520181', '清镇市', '贵州省', '贵阳市', '清镇市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2475, '中国', '520200', '六盘水市', '贵州省', '六盘水市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2476, '中国', '520201', '钟山区', '贵州省', '六盘水市', '钟山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2477, '中国', '520203', '六枝特区', '贵州省', '六盘水市', '六枝特区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2478, '中国', '520204', '水城区', '贵州省', '六盘水市', '水城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2479, '中国', '520281', '盘州市', '贵州省', '六盘水市', '盘州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2480, '中国', '520300', '遵义市', '贵州省', '遵义市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2481, '中国', '520302', '红花岗区', '贵州省', '遵义市', '红花岗区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2482, '中国', '520303', '汇川区', '贵州省', '遵义市', '汇川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2483, '中国', '520304', '播州区', '贵州省', '遵义市', '播州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2484, '中国', '520322', '桐梓县', '贵州省', '遵义市', '桐梓县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2485, '中国', '520323', '绥阳县', '贵州省', '遵义市', '绥阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2486, '中国', '520324', '正安县', '贵州省', '遵义市', '正安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2487, '中国', '520325', '道真仡佬族苗族自治县', '贵州省', '遵义市', '道真仡佬族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2488, '中国', '520326', '务川仡佬族苗族自治县', '贵州省', '遵义市', '务川仡佬族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2489, '中国', '520327', '凤冈县', '贵州省', '遵义市', '凤冈县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2490, '中国', '520328', '湄潭县', '贵州省', '遵义市', '湄潭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2491, '中国', '520329', '余庆县', '贵州省', '遵义市', '余庆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2492, '中国', '520330', '习水县', '贵州省', '遵义市', '习水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2493, '中国', '520381', '赤水市', '贵州省', '遵义市', '赤水市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2494, '中国', '520382', '仁怀市', '贵州省', '遵义市', '仁怀市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2495, '中国', '520400', '安顺市', '贵州省', '安顺市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2496, '中国', '520402', '西秀区', '贵州省', '安顺市', '西秀区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2497, '中国', '520403', '平坝区', '贵州省', '安顺市', '平坝区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2498, '中国', '520422', '普定县', '贵州省', '安顺市', '普定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2499, '中国', '520423', '镇宁布依族苗族自治县', '贵州省', '安顺市', '镇宁布依族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2500, '中国', '520424', '关岭布依族苗族自治县', '贵州省', '安顺市', '关岭布依族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2501, '中国', '520425', '紫云苗族布依族自治县', '贵州省', '安顺市', '紫云苗族布依族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2502, '中国', '520500', '毕节市', '贵州省', '毕节市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2503, '中国', '520502', '七星关区', '贵州省', '毕节市', '七星关区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2504, '中国', '520521', '大方县', '贵州省', '毕节市', '大方县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2505, '中国', '520522', '黔西市', '贵州省', '毕节市', '黔西市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2506, '中国', '520523', '金沙县', '贵州省', '毕节市', '金沙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2507, '中国', '520524', '织金县', '贵州省', '毕节市', '织金县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2508, '中国', '520525', '纳雍县', '贵州省', '毕节市', '纳雍县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2509, '中国', '520526', '威宁彝族回族苗族自治县', '贵州省', '毕节市', '威宁彝族回族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2510, '中国', '520527', '赫章县', '贵州省', '毕节市', '赫章县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2511, '中国', '520600', '铜仁市', '贵州省', '铜仁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2512, '中国', '520602', '碧江区', '贵州省', '铜仁市', '碧江区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2513, '中国', '520603', '万山区', '贵州省', '铜仁市', '万山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2514, '中国', '520621', '江口县', '贵州省', '铜仁市', '江口县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2515, '中国', '520622', '玉屏侗族自治县', '贵州省', '铜仁市', '玉屏侗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2516, '中国', '520623', '石阡县', '贵州省', '铜仁市', '石阡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2517, '中国', '520624', '思南县', '贵州省', '铜仁市', '思南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2518, '中国', '520625', '印江土家族苗族自治县', '贵州省', '铜仁市', '印江土家族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2519, '中国', '520626', '德江县', '贵州省', '铜仁市', '德江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2520, '中国', '520627', '沿河土家族自治县', '贵州省', '铜仁市', '沿河土家族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2521, '中国', '520628', '松桃苗族自治县', '贵州省', '铜仁市', '松桃苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2522, '中国', '522300', '黔西南布依族苗族自治州', '贵州省', '黔西南布依族苗族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2523, '中国', '522301', '兴义市', '贵州省', '黔西南布依族苗族自治州', '兴义市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2524, '中国', '522302', '兴仁市', '贵州省', '黔西南布依族苗族自治州', '兴仁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2525, '中国', '522323', '普安县', '贵州省', '黔西南布依族苗族自治州', '普安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2526, '中国', '522324', '晴隆县', '贵州省', '黔西南布依族苗族自治州', '晴隆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2527, '中国', '522325', '贞丰县', '贵州省', '黔西南布依族苗族自治州', '贞丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2528, '中国', '522326', '望谟县', '贵州省', '黔西南布依族苗族自治州', '望谟县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2529, '中国', '522327', '册亨县', '贵州省', '黔西南布依族苗族自治州', '册亨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2530, '中国', '522328', '安龙县', '贵州省', '黔西南布依族苗族自治州', '安龙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2531, '中国', '522600', '黔东南苗族侗族自治州', '贵州省', '黔东南苗族侗族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2532, '中国', '522601', '凯里市', '贵州省', '黔东南苗族侗族自治州', '凯里市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2533, '中国', '522622', '黄平县', '贵州省', '黔东南苗族侗族自治州', '黄平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2534, '中国', '522623', '施秉县', '贵州省', '黔东南苗族侗族自治州', '施秉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2535, '中国', '522624', '三穗县', '贵州省', '黔东南苗族侗族自治州', '三穗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2536, '中国', '522625', '镇远县', '贵州省', '黔东南苗族侗族自治州', '镇远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2537, '中国', '522626', '岑巩县', '贵州省', '黔东南苗族侗族自治州', '岑巩县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2538, '中国', '522627', '天柱县', '贵州省', '黔东南苗族侗族自治州', '天柱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2539, '中国', '522628', '锦屏县', '贵州省', '黔东南苗族侗族自治州', '锦屏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2540, '中国', '522629', '剑河县', '贵州省', '黔东南苗族侗族自治州', '剑河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2541, '中国', '522630', '台江县', '贵州省', '黔东南苗族侗族自治州', '台江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2542, '中国', '522631', '黎平县', '贵州省', '黔东南苗族侗族自治州', '黎平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2543, '中国', '522632', '榕江县', '贵州省', '黔东南苗族侗族自治州', '榕江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2544, '中国', '522633', '从江县', '贵州省', '黔东南苗族侗族自治州', '从江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2545, '中国', '522634', '雷山县', '贵州省', '黔东南苗族侗族自治州', '雷山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2546, '中国', '522635', '麻江县', '贵州省', '黔东南苗族侗族自治州', '麻江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2547, '中国', '522636', '丹寨县', '贵州省', '黔东南苗族侗族自治州', '丹寨县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2548, '中国', '522700', '黔南布依族苗族自治州', '贵州省', '黔南布依族苗族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2549, '中国', '522701', '都匀市', '贵州省', '黔南布依族苗族自治州', '都匀市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2550, '中国', '522702', '福泉市', '贵州省', '黔南布依族苗族自治州', '福泉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2551, '中国', '522722', '荔波县', '贵州省', '黔南布依族苗族自治州', '荔波县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2552, '中国', '522723', '贵定县', '贵州省', '黔南布依族苗族自治州', '贵定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2553, '中国', '522725', '瓮安县', '贵州省', '黔南布依族苗族自治州', '瓮安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2554, '中国', '522726', '独山县', '贵州省', '黔南布依族苗族自治州', '独山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2555, '中国', '522727', '平塘县', '贵州省', '黔南布依族苗族自治州', '平塘县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2556, '中国', '522728', '罗甸县', '贵州省', '黔南布依族苗族自治州', '罗甸县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2557, '中国', '522729', '长顺县', '贵州省', '黔南布依族苗族自治州', '长顺县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2558, '中国', '522730', '龙里县', '贵州省', '黔南布依族苗族自治州', '龙里县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2559, '中国', '522731', '惠水县', '贵州省', '黔南布依族苗族自治州', '惠水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2560, '中国', '522732', '三都水族自治县', '贵州省', '黔南布依族苗族自治州', '三都水族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2561, '中国', '530000', '云南省', '云南省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2562, '中国', '530100', '昆明市', '云南省', '昆明市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2563, '中国', '530102', '五华区', '云南省', '昆明市', '五华区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2564, '中国', '530103', '盘龙区', '云南省', '昆明市', '盘龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2565, '中国', '530111', '官渡区', '云南省', '昆明市', '官渡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2566, '中国', '530112', '西山区', '云南省', '昆明市', '西山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2567, '中国', '530113', '东川区', '云南省', '昆明市', '东川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2568, '中国', '530114', '呈贡区', '云南省', '昆明市', '呈贡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2569, '中国', '530115', '晋宁区', '云南省', '昆明市', '晋宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2570, '中国', '530124', '富民县', '云南省', '昆明市', '富民县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2571, '中国', '530125', '宜良县', '云南省', '昆明市', '宜良县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2572, '中国', '530126', '石林彝族自治县', '云南省', '昆明市', '石林彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2573, '中国', '530127', '嵩明县', '云南省', '昆明市', '嵩明县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2574, '中国', '530128', '禄劝彝族苗族自治县', '云南省', '昆明市', '禄劝彝族苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2575, '中国', '530129', '寻甸回族彝族自治县', '云南省', '昆明市', '寻甸回族彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2576, '中国', '530181', '安宁市', '云南省', '昆明市', '安宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2577, '中国', '530300', '曲靖市', '云南省', '曲靖市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2578, '中国', '530302', '麒麟区', '云南省', '曲靖市', '麒麟区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2579, '中国', '530303', '沾益区', '云南省', '曲靖市', '沾益区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2580, '中国', '530304', '马龙区', '云南省', '曲靖市', '马龙区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2581, '中国', '530322', '陆良县', '云南省', '曲靖市', '陆良县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2582, '中国', '530323', '师宗县', '云南省', '曲靖市', '师宗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2583, '中国', '530324', '罗平县', '云南省', '曲靖市', '罗平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2584, '中国', '530325', '富源县', '云南省', '曲靖市', '富源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2585, '中国', '530326', '会泽县', '云南省', '曲靖市', '会泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2586, '中国', '530381', '宣威市', '云南省', '曲靖市', '宣威市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2587, '中国', '530400', '玉溪市', '云南省', '玉溪市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2588, '中国', '530402', '红塔区', '云南省', '玉溪市', '红塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2589, '中国', '530403', '江川区', '云南省', '玉溪市', '江川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2590, '中国', '530423', '通海县', '云南省', '玉溪市', '通海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2591, '中国', '530424', '华宁县', '云南省', '玉溪市', '华宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2592, '中国', '530425', '易门县', '云南省', '玉溪市', '易门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2593, '中国', '530426', '峨山彝族自治县', '云南省', '玉溪市', '峨山彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2594, '中国', '530427', '新平彝族傣族自治县', '云南省', '玉溪市', '新平彝族傣族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2595, '中国', '530428', '元江哈尼族彝族傣族自治县', '云南省', '玉溪市', '元江哈尼族彝族傣族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2596, '中国', '530481', '澄江市', '云南省', '玉溪市', '澄江市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2597, '中国', '530500', '保山市', '云南省', '保山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2598, '中国', '530502', '隆阳区', '云南省', '保山市', '隆阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2599, '中国', '530521', '施甸县', '云南省', '保山市', '施甸县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2600, '中国', '530523', '龙陵县', '云南省', '保山市', '龙陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2601, '中国', '530524', '昌宁县', '云南省', '保山市', '昌宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2602, '中国', '530581', '腾冲市', '云南省', '保山市', '腾冲市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2603, '中国', '530600', '昭通市', '云南省', '昭通市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2604, '中国', '530602', '昭阳区', '云南省', '昭通市', '昭阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2605, '中国', '530621', '鲁甸县', '云南省', '昭通市', '鲁甸县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2606, '中国', '530622', '巧家县', '云南省', '昭通市', '巧家县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2607, '中国', '530623', '盐津县', '云南省', '昭通市', '盐津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2608, '中国', '530624', '大关县', '云南省', '昭通市', '大关县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2609, '中国', '530625', '永善县', '云南省', '昭通市', '永善县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2610, '中国', '530626', '绥江县', '云南省', '昭通市', '绥江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2611, '中国', '530627', '镇雄县', '云南省', '昭通市', '镇雄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2612, '中国', '530628', '彝良县', '云南省', '昭通市', '彝良县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2613, '中国', '530629', '威信县', '云南省', '昭通市', '威信县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2614, '中国', '530681', '水富市', '云南省', '昭通市', '水富市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2615, '中国', '530700', '丽江市', '云南省', '丽江市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2616, '中国', '530702', '古城区', '云南省', '丽江市', '古城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2617, '中国', '530721', '玉龙纳西族自治县', '云南省', '丽江市', '玉龙纳西族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2618, '中国', '530722', '永胜县', '云南省', '丽江市', '永胜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2619, '中国', '530723', '华坪县', '云南省', '丽江市', '华坪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2620, '中国', '530724', '宁蒗彝族自治县', '云南省', '丽江市', '宁蒗彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2621, '中国', '530800', '普洱市', '云南省', '普洱市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2622, '中国', '530802', '思茅区', '云南省', '普洱市', '思茅区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2623, '中国', '530821', '宁洱哈尼族彝族自治县', '云南省', '普洱市', '宁洱哈尼族彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2624, '中国', '530822', '墨江哈尼族自治县', '云南省', '普洱市', '墨江哈尼族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2625, '中国', '530823', '景东彝族自治县', '云南省', '普洱市', '景东彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2626, '中国', '530824', '景谷傣族彝族自治县', '云南省', '普洱市', '景谷傣族彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2627, '中国', '530825', '镇沅彝族哈尼族拉祜族自治县', '云南省', '普洱市', '镇沅彝族哈尼族拉祜族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2628, '中国', '530826', '江城哈尼族彝族自治县', '云南省', '普洱市', '江城哈尼族彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2629, '中国', '530827', '孟连傣族拉祜族佤族自治县', '云南省', '普洱市', '孟连傣族拉祜族佤族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2630, '中国', '530828', '澜沧拉祜族自治县', '云南省', '普洱市', '澜沧拉祜族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2631, '中国', '530829', '西盟佤族自治县', '云南省', '普洱市', '西盟佤族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2632, '中国', '530900', '临沧市', '云南省', '临沧市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2633, '中国', '530902', '临翔区', '云南省', '临沧市', '临翔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2634, '中国', '530921', '凤庆县', '云南省', '临沧市', '凤庆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2635, '中国', '530922', '云县', '云南省', '临沧市', '云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2636, '中国', '530923', '永德县', '云南省', '临沧市', '永德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2637, '中国', '530924', '镇康县', '云南省', '临沧市', '镇康县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2638, '中国', '530925', '双江拉祜族佤族布朗族傣族自治县', '云南省', '临沧市', '双江拉祜族佤族布朗族傣族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2639, '中国', '530926', '耿马傣族佤族自治县', '云南省', '临沧市', '耿马傣族佤族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2640, '中国', '530927', '沧源佤族自治县', '云南省', '临沧市', '沧源佤族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2641, '中国', '532300', '楚雄彝族自治州', '云南省', '楚雄彝族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2642, '中国', '532301', '楚雄市', '云南省', '楚雄彝族自治州', '楚雄市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2643, '中国', '532322', '双柏县', '云南省', '楚雄彝族自治州', '双柏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2644, '中国', '532323', '牟定县', '云南省', '楚雄彝族自治州', '牟定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2645, '中国', '532324', '南华县', '云南省', '楚雄彝族自治州', '南华县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2646, '中国', '532325', '姚安县', '云南省', '楚雄彝族自治州', '姚安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2647, '中国', '532326', '大姚县', '云南省', '楚雄彝族自治州', '大姚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2648, '中国', '532327', '永仁县', '云南省', '楚雄彝族自治州', '永仁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2649, '中国', '532328', '元谋县', '云南省', '楚雄彝族自治州', '元谋县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2650, '中国', '532329', '武定县', '云南省', '楚雄彝族自治州', '武定县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2651, '中国', '532331', '禄丰县', '云南省', '楚雄彝族自治州', '禄丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2652, '中国', '532500', '红河哈尼族彝族自治州', '云南省', '红河哈尼族彝族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2653, '中国', '532501', '个旧市', '云南省', '红河哈尼族彝族自治州', '个旧市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2654, '中国', '532502', '开远市', '云南省', '红河哈尼族彝族自治州', '开远市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2655, '中国', '532503', '蒙自市', '云南省', '红河哈尼族彝族自治州', '蒙自市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2656, '中国', '532504', '弥勒市', '云南省', '红河哈尼族彝族自治州', '弥勒市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2657, '中国', '532523', '屏边苗族自治县', '云南省', '红河哈尼族彝族自治州', '屏边苗族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2658, '中国', '532524', '建水县', '云南省', '红河哈尼族彝族自治州', '建水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2659, '中国', '532525', '石屏县', '云南省', '红河哈尼族彝族自治州', '石屏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2660, '中国', '532527', '泸西县', '云南省', '红河哈尼族彝族自治州', '泸西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2661, '中国', '532528', '元阳县', '云南省', '红河哈尼族彝族自治州', '元阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2662, '中国', '532529', '红河县', '云南省', '红河哈尼族彝族自治州', '红河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2663, '中国', '532530', '金平苗族瑶族傣族自治县', '云南省', '红河哈尼族彝族自治州', '金平苗族瑶族傣族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2664, '中国', '532531', '绿春县', '云南省', '红河哈尼族彝族自治州', '绿春县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2665, '中国', '532532', '河口瑶族自治县', '云南省', '红河哈尼族彝族自治州', '河口瑶族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2666, '中国', '532600', '文山壮族苗族自治州', '云南省', '文山壮族苗族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2667, '中国', '532601', '文山市', '云南省', '文山壮族苗族自治州', '文山市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2668, '中国', '532622', '砚山县', '云南省', '文山壮族苗族自治州', '砚山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2669, '中国', '532623', '西畴县', '云南省', '文山壮族苗族自治州', '西畴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2670, '中国', '532624', '麻栗坡县', '云南省', '文山壮族苗族自治州', '麻栗坡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2671, '中国', '532625', '马关县', '云南省', '文山壮族苗族自治州', '马关县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2672, '中国', '532626', '丘北县', '云南省', '文山壮族苗族自治州', '丘北县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2673, '中国', '532627', '广南县', '云南省', '文山壮族苗族自治州', '广南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2674, '中国', '532628', '富宁县', '云南省', '文山壮族苗族自治州', '富宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2675, '中国', '532800', '西双版纳傣族自治州', '云南省', '西双版纳傣族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2676, '中国', '532801', '景洪市', '云南省', '西双版纳傣族自治州', '景洪市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2677, '中国', '532822', '勐海县', '云南省', '西双版纳傣族自治州', '勐海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2678, '中国', '532823', '勐腊县', '云南省', '西双版纳傣族自治州', '勐腊县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2679, '中国', '532900', '大理白族自治州', '云南省', '大理白族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2680, '中国', '532901', '大理市', '云南省', '大理白族自治州', '大理市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2681, '中国', '532922', '漾濞彝族自治县', '云南省', '大理白族自治州', '漾濞彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2682, '中国', '532923', '祥云县', '云南省', '大理白族自治州', '祥云县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2683, '中国', '532924', '宾川县', '云南省', '大理白族自治州', '宾川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2684, '中国', '532925', '弥渡县', '云南省', '大理白族自治州', '弥渡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2685, '中国', '532926', '南涧彝族自治县', '云南省', '大理白族自治州', '南涧彝族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2686, '中国', '532927', '巍山彝族回族自治县', '云南省', '大理白族自治州', '巍山彝族回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2687, '中国', '532928', '永平县', '云南省', '大理白族自治州', '永平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2688, '中国', '532929', '云龙县', '云南省', '大理白族自治州', '云龙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2689, '中国', '532930', '洱源县', '云南省', '大理白族自治州', '洱源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2690, '中国', '532931', '剑川县', '云南省', '大理白族自治州', '剑川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2691, '中国', '532932', '鹤庆县', '云南省', '大理白族自治州', '鹤庆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2692, '中国', '533100', '德宏傣族景颇族自治州', '云南省', '德宏傣族景颇族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2693, '中国', '533102', '瑞丽市', '云南省', '德宏傣族景颇族自治州', '瑞丽市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2694, '中国', '533103', '芒市', '云南省', '德宏傣族景颇族自治州', '芒市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2837, '中国', '610500', '渭南市', '陕西省', '渭南市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2695, '中国', '533122', '梁河县', '云南省', '德宏傣族景颇族自治州', '梁河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2696, '中国', '533123', '盈江县', '云南省', '德宏傣族景颇族自治州', '盈江县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2697, '中国', '533124', '陇川县', '云南省', '德宏傣族景颇族自治州', '陇川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2698, '中国', '533300', '怒江傈僳族自治州', '云南省', '怒江傈僳族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2699, '中国', '533301', '泸水市', '云南省', '怒江傈僳族自治州', '泸水市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2700, '中国', '533323', '福贡县', '云南省', '怒江傈僳族自治州', '福贡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2701, '中国', '533324', '贡山独龙族怒族自治县', '云南省', '怒江傈僳族自治州', '贡山独龙族怒族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2702, '中国', '533325', '兰坪白族普米族自治县', '云南省', '怒江傈僳族自治州', '兰坪白族普米族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2703, '中国', '533400', '迪庆藏族自治州', '云南省', '迪庆藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2704, '中国', '533401', '香格里拉市', '云南省', '迪庆藏族自治州', '香格里拉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2705, '中国', '533422', '德钦县', '云南省', '迪庆藏族自治州', '德钦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2706, '中国', '533423', '维西傈僳族自治县', '云南省', '迪庆藏族自治州', '维西傈僳族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2707, '中国', '540000', '西藏自治区', '西藏自治区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2708, '中国', '540100', '拉萨市', '西藏自治区', '拉萨市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2709, '中国', '540102', '城关区', '西藏自治区', '拉萨市', '城关区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2710, '中国', '540103', '堆龙德庆区', '西藏自治区', '拉萨市', '堆龙德庆区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2711, '中国', '540104', '达孜区', '西藏自治区', '拉萨市', '达孜区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2712, '中国', '540121', '林周县', '西藏自治区', '拉萨市', '林周县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2713, '中国', '540122', '当雄县', '西藏自治区', '拉萨市', '当雄县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2714, '中国', '540123', '尼木县', '西藏自治区', '拉萨市', '尼木县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2715, '中国', '540124', '曲水县', '西藏自治区', '拉萨市', '曲水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2716, '中国', '540127', '墨竹工卡县', '西藏自治区', '拉萨市', '墨竹工卡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2717, '中国', '540200', '日喀则市', '西藏自治区', '日喀则市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2718, '中国', '540202', '桑珠孜区', '西藏自治区', '日喀则市', '桑珠孜区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2719, '中国', '540221', '南木林县', '西藏自治区', '日喀则市', '南木林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2720, '中国', '540222', '江孜县', '西藏自治区', '日喀则市', '江孜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2721, '中国', '540223', '定日县', '西藏自治区', '日喀则市', '定日县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2722, '中国', '540224', '萨迦县', '西藏自治区', '日喀则市', '萨迦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2723, '中国', '540225', '拉孜县', '西藏自治区', '日喀则市', '拉孜县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2724, '中国', '540226', '昂仁县', '西藏自治区', '日喀则市', '昂仁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2725, '中国', '540227', '谢通门县', '西藏自治区', '日喀则市', '谢通门县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2726, '中国', '540228', '白朗县', '西藏自治区', '日喀则市', '白朗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2727, '中国', '540229', '仁布县', '西藏自治区', '日喀则市', '仁布县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2728, '中国', '540230', '康马县', '西藏自治区', '日喀则市', '康马县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2729, '中国', '540231', '定结县', '西藏自治区', '日喀则市', '定结县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2730, '中国', '540232', '仲巴县', '西藏自治区', '日喀则市', '仲巴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2731, '中国', '540233', '亚东县', '西藏自治区', '日喀则市', '亚东县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2732, '中国', '540234', '吉隆县', '西藏自治区', '日喀则市', '吉隆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2733, '中国', '540235', '聂拉木县', '西藏自治区', '日喀则市', '聂拉木县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2734, '中国', '540236', '萨嘎县', '西藏自治区', '日喀则市', '萨嘎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2735, '中国', '540237', '岗巴县', '西藏自治区', '日喀则市', '岗巴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2736, '中国', '540300', '昌都市', '西藏自治区', '昌都市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2737, '中国', '540302', '卡若区', '西藏自治区', '昌都市', '卡若区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2738, '中国', '540321', '江达县', '西藏自治区', '昌都市', '江达县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2739, '中国', '540322', '贡觉县', '西藏自治区', '昌都市', '贡觉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2740, '中国', '540323', '类乌齐县', '西藏自治区', '昌都市', '类乌齐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2741, '中国', '540324', '丁青县', '西藏自治区', '昌都市', '丁青县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2742, '中国', '540325', '察雅县', '西藏自治区', '昌都市', '察雅县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2743, '中国', '540326', '八宿县', '西藏自治区', '昌都市', '八宿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2744, '中国', '540327', '左贡县', '西藏自治区', '昌都市', '左贡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2745, '中国', '540328', '芒康县', '西藏自治区', '昌都市', '芒康县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2746, '中国', '540329', '洛隆县', '西藏自治区', '昌都市', '洛隆县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2747, '中国', '540330', '边坝县', '西藏自治区', '昌都市', '边坝县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2748, '中国', '540400', '林芝市', '西藏自治区', '林芝市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2749, '中国', '540402', '巴宜区', '西藏自治区', '林芝市', '巴宜区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2750, '中国', '540421', '工布江达县', '西藏自治区', '林芝市', '工布江达县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2751, '中国', '540422', '米林县', '西藏自治区', '林芝市', '米林县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2752, '中国', '540423', '墨脱县', '西藏自治区', '林芝市', '墨脱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2753, '中国', '540424', '波密县', '西藏自治区', '林芝市', '波密县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2754, '中国', '540425', '察隅县', '西藏自治区', '林芝市', '察隅县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2755, '中国', '540426', '朗县', '西藏自治区', '林芝市', '朗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2756, '中国', '540500', '山南市', '西藏自治区', '山南市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2757, '中国', '540502', '乃东区', '西藏自治区', '山南市', '乃东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2758, '中国', '540521', '扎囊县', '西藏自治区', '山南市', '扎囊县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2759, '中国', '540522', '贡嘎县', '西藏自治区', '山南市', '贡嘎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2760, '中国', '540523', '桑日县', '西藏自治区', '山南市', '桑日县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2761, '中国', '540524', '琼结县', '西藏自治区', '山南市', '琼结县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2762, '中国', '540525', '曲松县', '西藏自治区', '山南市', '曲松县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2763, '中国', '540526', '措美县', '西藏自治区', '山南市', '措美县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2764, '中国', '540527', '洛扎县', '西藏自治区', '山南市', '洛扎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2765, '中国', '540528', '加查县', '西藏自治区', '山南市', '加查县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2766, '中国', '540529', '隆子县', '西藏自治区', '山南市', '隆子县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2767, '中国', '540530', '错那县', '西藏自治区', '山南市', '错那县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2768, '中国', '540531', '浪卡子县', '西藏自治区', '山南市', '浪卡子县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2769, '中国', '540600', '那曲市', '西藏自治区', '那曲市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2770, '中国', '540602', '色尼区', '西藏自治区', '那曲市', '色尼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2771, '中国', '540621', '嘉黎县', '西藏自治区', '那曲市', '嘉黎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2772, '中国', '540622', '比如县', '西藏自治区', '那曲市', '比如县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2773, '中国', '540623', '聂荣县', '西藏自治区', '那曲市', '聂荣县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2774, '中国', '540624', '安多县', '西藏自治区', '那曲市', '安多县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2775, '中国', '540625', '申扎县', '西藏自治区', '那曲市', '申扎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2776, '中国', '540626', '索县', '西藏自治区', '那曲市', '索县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2777, '中国', '540627', '班戈县', '西藏自治区', '那曲市', '班戈县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2778, '中国', '540628', '巴青县', '西藏自治区', '那曲市', '巴青县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2779, '中国', '540629', '尼玛县', '西藏自治区', '那曲市', '尼玛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2780, '中国', '540630', '双湖县', '西藏自治区', '那曲市', '双湖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2781, '中国', '542500', '阿里地区', '西藏自治区', '阿里地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2782, '中国', '542521', '普兰县', '西藏自治区', '阿里地区', '普兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2783, '中国', '542522', '札达县', '西藏自治区', '阿里地区', '札达县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2784, '中国', '542523', '噶尔县', '西藏自治区', '阿里地区', '噶尔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2785, '中国', '542524', '日土县', '西藏自治区', '阿里地区', '日土县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2786, '中国', '542525', '革吉县', '西藏自治区', '阿里地区', '革吉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2787, '中国', '542526', '改则县', '西藏自治区', '阿里地区', '改则县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2788, '中国', '542527', '措勤县', '西藏自治区', '阿里地区', '措勤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2789, '中国', '610000', '陕西省', '陕西省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2790, '中国', '610100', '西安市', '陕西省', '西安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2791, '中国', '610102', '新城区', '陕西省', '西安市', '新城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2792, '中国', '610103', '碑林区', '陕西省', '西安市', '碑林区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2793, '中国', '610104', '莲湖区', '陕西省', '西安市', '莲湖区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2794, '中国', '610111', '灞桥区', '陕西省', '西安市', '灞桥区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2795, '中国', '610112', '未央区', '陕西省', '西安市', '未央区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2796, '中国', '610113', '雁塔区', '陕西省', '西安市', '雁塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2797, '中国', '610114', '阎良区', '陕西省', '西安市', '阎良区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2798, '中国', '610115', '临潼区', '陕西省', '西安市', '临潼区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2799, '中国', '610116', '长安区', '陕西省', '西安市', '长安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2800, '中国', '610117', '高陵区', '陕西省', '西安市', '高陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2801, '中国', '610118', '鄠邑区', '陕西省', '西安市', '鄠邑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2802, '中国', '610122', '蓝田县', '陕西省', '西安市', '蓝田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2803, '中国', '610124', '周至县', '陕西省', '西安市', '周至县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2804, '中国', '610200', '铜川市', '陕西省', '铜川市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2805, '中国', '610202', '王益区', '陕西省', '铜川市', '王益区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2806, '中国', '610203', '印台区', '陕西省', '铜川市', '印台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2807, '中国', '610204', '耀州区', '陕西省', '铜川市', '耀州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2808, '中国', '610222', '宜君县', '陕西省', '铜川市', '宜君县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2809, '中国', '610300', '宝鸡市', '陕西省', '宝鸡市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2810, '中国', '610302', '渭滨区', '陕西省', '宝鸡市', '渭滨区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2811, '中国', '610303', '金台区', '陕西省', '宝鸡市', '金台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2812, '中国', '610304', '陈仓区', '陕西省', '宝鸡市', '陈仓区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2813, '中国', '610322', '凤翔县', '陕西省', '宝鸡市', '凤翔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2814, '中国', '610323', '岐山县', '陕西省', '宝鸡市', '岐山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2815, '中国', '610324', '扶风县', '陕西省', '宝鸡市', '扶风县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2816, '中国', '610326', '眉县', '陕西省', '宝鸡市', '眉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2817, '中国', '610327', '陇县', '陕西省', '宝鸡市', '陇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2818, '中国', '610328', '千阳县', '陕西省', '宝鸡市', '千阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2819, '中国', '610329', '麟游县', '陕西省', '宝鸡市', '麟游县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2820, '中国', '610330', '凤县', '陕西省', '宝鸡市', '凤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2821, '中国', '610331', '太白县', '陕西省', '宝鸡市', '太白县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2822, '中国', '610400', '咸阳市', '陕西省', '咸阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2823, '中国', '610402', '秦都区', '陕西省', '咸阳市', '秦都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2824, '中国', '610403', '杨陵区', '陕西省', '咸阳市', '杨陵区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2825, '中国', '610404', '渭城区', '陕西省', '咸阳市', '渭城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2826, '中国', '610422', '三原县', '陕西省', '咸阳市', '三原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2827, '中国', '610423', '泾阳县', '陕西省', '咸阳市', '泾阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2828, '中国', '610424', '乾县', '陕西省', '咸阳市', '乾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2829, '中国', '610425', '礼泉县', '陕西省', '咸阳市', '礼泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2830, '中国', '610426', '永寿县', '陕西省', '咸阳市', '永寿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2831, '中国', '610428', '长武县', '陕西省', '咸阳市', '长武县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2832, '中国', '610429', '旬邑县', '陕西省', '咸阳市', '旬邑县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2833, '中国', '610430', '淳化县', '陕西省', '咸阳市', '淳化县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2834, '中国', '610431', '武功县', '陕西省', '咸阳市', '武功县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2835, '中国', '610481', '兴平市', '陕西省', '咸阳市', '兴平市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2836, '中国', '610482', '彬州市', '陕西省', '咸阳市', '彬州市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2838, '中国', '610502', '临渭区', '陕西省', '渭南市', '临渭区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2839, '中国', '610503', '华州区', '陕西省', '渭南市', '华州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2840, '中国', '610522', '潼关县', '陕西省', '渭南市', '潼关县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2841, '中国', '610523', '大荔县', '陕西省', '渭南市', '大荔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2842, '中国', '610524', '合阳县', '陕西省', '渭南市', '合阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2843, '中国', '610525', '澄城县', '陕西省', '渭南市', '澄城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2844, '中国', '610526', '蒲城县', '陕西省', '渭南市', '蒲城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2845, '中国', '610527', '白水县', '陕西省', '渭南市', '白水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2846, '中国', '610528', '富平县', '陕西省', '渭南市', '富平县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2847, '中国', '610581', '韩城市', '陕西省', '渭南市', '韩城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2848, '中国', '610582', '华阴市', '陕西省', '渭南市', '华阴市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2849, '中国', '610600', '延安市', '陕西省', '延安市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2850, '中国', '610602', '宝塔区', '陕西省', '延安市', '宝塔区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2851, '中国', '610603', '安塞区', '陕西省', '延安市', '安塞区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2852, '中国', '610621', '延长县', '陕西省', '延安市', '延长县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2853, '中国', '610622', '延川县', '陕西省', '延安市', '延川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2854, '中国', '610625', '志丹县', '陕西省', '延安市', '志丹县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2855, '中国', '610626', '吴起县', '陕西省', '延安市', '吴起县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2856, '中国', '610627', '甘泉县', '陕西省', '延安市', '甘泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2857, '中国', '610628', '富县', '陕西省', '延安市', '富县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2858, '中国', '610629', '洛川县', '陕西省', '延安市', '洛川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2859, '中国', '610630', '宜川县', '陕西省', '延安市', '宜川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2860, '中国', '610631', '黄龙县', '陕西省', '延安市', '黄龙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2861, '中国', '610632', '黄陵县', '陕西省', '延安市', '黄陵县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2862, '中国', '610681', '子长市', '陕西省', '延安市', '子长市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2863, '中国', '610700', '汉中市', '陕西省', '汉中市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2864, '中国', '610702', '汉台区', '陕西省', '汉中市', '汉台区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2865, '中国', '610703', '南郑区', '陕西省', '汉中市', '南郑区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2866, '中国', '610722', '城固县', '陕西省', '汉中市', '城固县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2867, '中国', '610723', '洋县', '陕西省', '汉中市', '洋县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2868, '中国', '610724', '西乡县', '陕西省', '汉中市', '西乡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2869, '中国', '610725', '勉县', '陕西省', '汉中市', '勉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2870, '中国', '610726', '宁强县', '陕西省', '汉中市', '宁强县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2871, '中国', '610727', '略阳县', '陕西省', '汉中市', '略阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2872, '中国', '610728', '镇巴县', '陕西省', '汉中市', '镇巴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2873, '中国', '610729', '留坝县', '陕西省', '汉中市', '留坝县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2874, '中国', '610730', '佛坪县', '陕西省', '汉中市', '佛坪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2875, '中国', '610800', '榆林市', '陕西省', '榆林市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2876, '中国', '610802', '榆阳区', '陕西省', '榆林市', '榆阳区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2877, '中国', '610803', '横山区', '陕西省', '榆林市', '横山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2878, '中国', '610822', '府谷县', '陕西省', '榆林市', '府谷县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2879, '中国', '610824', '靖边县', '陕西省', '榆林市', '靖边县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2880, '中国', '610825', '定边县', '陕西省', '榆林市', '定边县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2881, '中国', '610826', '绥德县', '陕西省', '榆林市', '绥德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2882, '中国', '610827', '米脂县', '陕西省', '榆林市', '米脂县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2883, '中国', '610828', '佳县', '陕西省', '榆林市', '佳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2884, '中国', '610829', '吴堡县', '陕西省', '榆林市', '吴堡县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2885, '中国', '610830', '清涧县', '陕西省', '榆林市', '清涧县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2886, '中国', '610831', '子洲县', '陕西省', '榆林市', '子洲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2887, '中国', '610881', '神木市', '陕西省', '榆林市', '神木市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2888, '中国', '610900', '安康市', '陕西省', '安康市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2889, '中国', '610902', '汉滨区', '陕西省', '安康市', '汉滨区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2890, '中国', '610921', '汉阴县', '陕西省', '安康市', '汉阴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2891, '中国', '610922', '石泉县', '陕西省', '安康市', '石泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2892, '中国', '610923', '宁陕县', '陕西省', '安康市', '宁陕县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2893, '中国', '610924', '紫阳县', '陕西省', '安康市', '紫阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2894, '中国', '610925', '岚皋县', '陕西省', '安康市', '岚皋县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2895, '中国', '610926', '平利县', '陕西省', '安康市', '平利县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2896, '中国', '610927', '镇坪县', '陕西省', '安康市', '镇坪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2897, '中国', '610928', '旬阳县', '陕西省', '安康市', '旬阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2898, '中国', '610929', '白河县', '陕西省', '安康市', '白河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2899, '中国', '611000', '商洛市', '陕西省', '商洛市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2900, '中国', '611002', '商州区', '陕西省', '商洛市', '商州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2901, '中国', '611021', '洛南县', '陕西省', '商洛市', '洛南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2902, '中国', '611022', '丹凤县', '陕西省', '商洛市', '丹凤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2903, '中国', '611023', '商南县', '陕西省', '商洛市', '商南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2904, '中国', '611024', '山阳县', '陕西省', '商洛市', '山阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2905, '中国', '611025', '镇安县', '陕西省', '商洛市', '镇安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2906, '中国', '611026', '柞水县', '陕西省', '商洛市', '柞水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2907, '中国', '620000', '甘肃省', '甘肃省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2908, '中国', '620100', '兰州市', '甘肃省', '兰州市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2909, '中国', '620102', '城关区', '甘肃省', '兰州市', '城关区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2910, '中国', '620103', '七里河区', '甘肃省', '兰州市', '七里河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2911, '中国', '620104', '西固区', '甘肃省', '兰州市', '西固区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2912, '中国', '620105', '安宁区', '甘肃省', '兰州市', '安宁区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2913, '中国', '620111', '红古区', '甘肃省', '兰州市', '红古区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2914, '中国', '620121', '永登县', '甘肃省', '兰州市', '永登县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2915, '中国', '620122', '皋兰县', '甘肃省', '兰州市', '皋兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2916, '中国', '620123', '榆中县', '甘肃省', '兰州市', '榆中县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2917, '中国', '620200', '嘉峪关市', '甘肃省', '嘉峪关市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2918, '中国', '620300', '金昌市', '甘肃省', '金昌市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2919, '中国', '620302', '金川区', '甘肃省', '金昌市', '金川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2920, '中国', '620321', '永昌县', '甘肃省', '金昌市', '永昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2921, '中国', '620400', '白银市', '甘肃省', '白银市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2922, '中国', '620402', '白银区', '甘肃省', '白银市', '白银区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2923, '中国', '620403', '平川区', '甘肃省', '白银市', '平川区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2924, '中国', '620421', '靖远县', '甘肃省', '白银市', '靖远县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2925, '中国', '620422', '会宁县', '甘肃省', '白银市', '会宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2926, '中国', '620423', '景泰县', '甘肃省', '白银市', '景泰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2927, '中国', '620500', '天水市', '甘肃省', '天水市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2928, '中国', '620502', '秦州区', '甘肃省', '天水市', '秦州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2929, '中国', '620503', '麦积区', '甘肃省', '天水市', '麦积区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2930, '中国', '620521', '清水县', '甘肃省', '天水市', '清水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2931, '中国', '620522', '秦安县', '甘肃省', '天水市', '秦安县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2932, '中国', '620523', '甘谷县', '甘肃省', '天水市', '甘谷县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2933, '中国', '620524', '武山县', '甘肃省', '天水市', '武山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2934, '中国', '620525', '张家川回族自治县', '甘肃省', '天水市', '张家川回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2935, '中国', '620600', '武威市', '甘肃省', '武威市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2936, '中国', '620602', '凉州区', '甘肃省', '武威市', '凉州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2937, '中国', '620621', '民勤县', '甘肃省', '武威市', '民勤县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2938, '中国', '620622', '古浪县', '甘肃省', '武威市', '古浪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2939, '中国', '620623', '天祝藏族自治县', '甘肃省', '武威市', '天祝藏族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2940, '中国', '620700', '张掖市', '甘肃省', '张掖市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2941, '中国', '620702', '甘州区', '甘肃省', '张掖市', '甘州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2942, '中国', '620721', '肃南裕固族自治县', '甘肃省', '张掖市', '肃南裕固族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2943, '中国', '620722', '民乐县', '甘肃省', '张掖市', '民乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2944, '中国', '620723', '临泽县', '甘肃省', '张掖市', '临泽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2945, '中国', '620724', '高台县', '甘肃省', '张掖市', '高台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2946, '中国', '620725', '山丹县', '甘肃省', '张掖市', '山丹县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2947, '中国', '620800', '平凉市', '甘肃省', '平凉市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2948, '中国', '620802', '崆峒区', '甘肃省', '平凉市', '崆峒区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2949, '中国', '620821', '泾川县', '甘肃省', '平凉市', '泾川县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2950, '中国', '620822', '灵台县', '甘肃省', '平凉市', '灵台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2951, '中国', '620823', '崇信县', '甘肃省', '平凉市', '崇信县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2952, '中国', '620825', '庄浪县', '甘肃省', '平凉市', '庄浪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2953, '中国', '620826', '静宁县', '甘肃省', '平凉市', '静宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2954, '中国', '620881', '华亭市', '甘肃省', '平凉市', '华亭市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2955, '中国', '620900', '酒泉市', '甘肃省', '酒泉市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2956, '中国', '620902', '肃州区', '甘肃省', '酒泉市', '肃州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2957, '中国', '620921', '金塔县', '甘肃省', '酒泉市', '金塔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2958, '中国', '620922', '瓜州县', '甘肃省', '酒泉市', '瓜州县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2959, '中国', '620923', '肃北蒙古族自治县', '甘肃省', '酒泉市', '肃北蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2960, '中国', '620924', '阿克塞哈萨克族自治县', '甘肃省', '酒泉市', '阿克塞哈萨克族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2961, '中国', '620981', '玉门市', '甘肃省', '酒泉市', '玉门市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2962, '中国', '620982', '敦煌市', '甘肃省', '酒泉市', '敦煌市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2963, '中国', '621000', '庆阳市', '甘肃省', '庆阳市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2964, '中国', '621002', '西峰区', '甘肃省', '庆阳市', '西峰区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2965, '中国', '621021', '庆城县', '甘肃省', '庆阳市', '庆城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2966, '中国', '621022', '环县', '甘肃省', '庆阳市', '环县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2967, '中国', '621023', '华池县', '甘肃省', '庆阳市', '华池县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2968, '中国', '621024', '合水县', '甘肃省', '庆阳市', '合水县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2969, '中国', '621025', '正宁县', '甘肃省', '庆阳市', '正宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2970, '中国', '621026', '宁县', '甘肃省', '庆阳市', '宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2971, '中国', '621027', '镇原县', '甘肃省', '庆阳市', '镇原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2972, '中国', '621100', '定西市', '甘肃省', '定西市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2973, '中国', '621102', '安定区', '甘肃省', '定西市', '安定区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2974, '中国', '621121', '通渭县', '甘肃省', '定西市', '通渭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2975, '中国', '621122', '陇西县', '甘肃省', '定西市', '陇西县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2976, '中国', '621123', '渭源县', '甘肃省', '定西市', '渭源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2977, '中国', '621124', '临洮县', '甘肃省', '定西市', '临洮县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2978, '中国', '621125', '漳县', '甘肃省', '定西市', '漳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2979, '中国', '621126', '岷县', '甘肃省', '定西市', '岷县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2980, '中国', '621200', '陇南市', '甘肃省', '陇南市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2981, '中国', '621202', '武都区', '甘肃省', '陇南市', '武都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2982, '中国', '621221', '成县', '甘肃省', '陇南市', '成县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2983, '中国', '621222', '文县', '甘肃省', '陇南市', '文县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2984, '中国', '621223', '宕昌县', '甘肃省', '陇南市', '宕昌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2985, '中国', '621224', '康县', '甘肃省', '陇南市', '康县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2986, '中国', '621225', '西和县', '甘肃省', '陇南市', '西和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2987, '中国', '621226', '礼县', '甘肃省', '陇南市', '礼县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2988, '中国', '621227', '徽县', '甘肃省', '陇南市', '徽县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2989, '中国', '621228', '两当县', '甘肃省', '陇南市', '两当县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2990, '中国', '622900', '临夏回族自治州', '甘肃省', '临夏回族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2991, '中国', '622901', '临夏市', '甘肃省', '临夏回族自治州', '临夏市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2992, '中国', '622921', '临夏县', '甘肃省', '临夏回族自治州', '临夏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2993, '中国', '622922', '康乐县', '甘肃省', '临夏回族自治州', '康乐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2994, '中国', '622923', '永靖县', '甘肃省', '临夏回族自治州', '永靖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2995, '中国', '622924', '广河县', '甘肃省', '临夏回族自治州', '广河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2996, '中国', '622925', '和政县', '甘肃省', '临夏回族自治州', '和政县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2997, '中国', '622926', '东乡族自治县', '甘肃省', '临夏回族自治州', '东乡族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2998, '中国', '622927', '积石山保安族东乡族撒拉族自治县', '甘肃省', '临夏回族自治州', '积石山保安族东乡族撒拉族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2999, '中国', '623000', '甘南藏族自治州', '甘肃省', '甘南藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3000, '中国', '623001', '合作市', '甘肃省', '甘南藏族自治州', '合作市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3001, '中国', '623021', '临潭县', '甘肃省', '甘南藏族自治州', '临潭县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3002, '中国', '623022', '卓尼县', '甘肃省', '甘南藏族自治州', '卓尼县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3003, '中国', '623023', '舟曲县', '甘肃省', '甘南藏族自治州', '舟曲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3004, '中国', '623024', '迭部县', '甘肃省', '甘南藏族自治州', '迭部县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3005, '中国', '623025', '玛曲县', '甘肃省', '甘南藏族自治州', '玛曲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3006, '中国', '623026', '碌曲县', '甘肃省', '甘南藏族自治州', '碌曲县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3007, '中国', '623027', '夏河县', '甘肃省', '甘南藏族自治州', '夏河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3008, '中国', '630000', '青海省', '青海省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3009, '中国', '630100', '西宁市', '青海省', '西宁市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3010, '中国', '630102', '城东区', '青海省', '西宁市', '城东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3011, '中国', '630103', '城中区', '青海省', '西宁市', '城中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3012, '中国', '630104', '城西区', '青海省', '西宁市', '城西区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3013, '中国', '630105', '城北区', '青海省', '西宁市', '城北区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3014, '中国', '630106', '湟中区', '青海省', '西宁市', '湟中区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3015, '中国', '630121', '大通回族土族自治县', '青海省', '西宁市', '大通回族土族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3016, '中国', '630123', '湟源县', '青海省', '西宁市', '湟源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3017, '中国', '630200', '海东市', '青海省', '海东市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3018, '中国', '630202', '乐都区', '青海省', '海东市', '乐都区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3019, '中国', '630203', '平安区', '青海省', '海东市', '平安区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3020, '中国', '630222', '民和回族土族自治县', '青海省', '海东市', '民和回族土族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3021, '中国', '630223', '互助土族自治县', '青海省', '海东市', '互助土族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3022, '中国', '630224', '化隆回族自治县', '青海省', '海东市', '化隆回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3023, '中国', '630225', '循化撒拉族自治县', '青海省', '海东市', '循化撒拉族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3024, '中国', '632200', '海北藏族自治州', '青海省', '海北藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3025, '中国', '632221', '门源回族自治县', '青海省', '海北藏族自治州', '门源回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3026, '中国', '632222', '祁连县', '青海省', '海北藏族自治州', '祁连县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3027, '中国', '632223', '海晏县', '青海省', '海北藏族自治州', '海晏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3028, '中国', '632224', '刚察县', '青海省', '海北藏族自治州', '刚察县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3029, '中国', '632300', '黄南藏族自治州', '青海省', '黄南藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3030, '中国', '632301', '同仁市', '青海省', '黄南藏族自治州', '同仁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3031, '中国', '632322', '尖扎县', '青海省', '黄南藏族自治州', '尖扎县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3032, '中国', '632323', '泽库县', '青海省', '黄南藏族自治州', '泽库县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3033, '中国', '632324', '河南蒙古族自治县', '青海省', '黄南藏族自治州', '河南蒙古族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3034, '中国', '632500', '海南藏族自治州', '青海省', '海南藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3035, '中国', '632521', '共和县', '青海省', '海南藏族自治州', '共和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3036, '中国', '632522', '同德县', '青海省', '海南藏族自治州', '同德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3037, '中国', '632523', '贵德县', '青海省', '海南藏族自治州', '贵德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3038, '中国', '632524', '兴海县', '青海省', '海南藏族自治州', '兴海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3039, '中国', '632525', '贵南县', '青海省', '海南藏族自治州', '贵南县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3040, '中国', '632600', '果洛藏族自治州', '青海省', '果洛藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3041, '中国', '632621', '玛沁县', '青海省', '果洛藏族自治州', '玛沁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3042, '中国', '632622', '班玛县', '青海省', '果洛藏族自治州', '班玛县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3043, '中国', '632623', '甘德县', '青海省', '果洛藏族自治州', '甘德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3044, '中国', '632624', '达日县', '青海省', '果洛藏族自治州', '达日县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3045, '中国', '632625', '久治县', '青海省', '果洛藏族自治州', '久治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3046, '中国', '632626', '玛多县', '青海省', '果洛藏族自治州', '玛多县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3047, '中国', '632700', '玉树藏族自治州', '青海省', '玉树藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3048, '中国', '632701', '玉树市', '青海省', '玉树藏族自治州', '玉树市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3049, '中国', '632722', '杂多县', '青海省', '玉树藏族自治州', '杂多县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3050, '中国', '632723', '称多县', '青海省', '玉树藏族自治州', '称多县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3051, '中国', '632724', '治多县', '青海省', '玉树藏族自治州', '治多县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3052, '中国', '632725', '囊谦县', '青海省', '玉树藏族自治州', '囊谦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3053, '中国', '632726', '曲麻莱县', '青海省', '玉树藏族自治州', '曲麻莱县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3054, '中国', '632800', '海西蒙古族藏族自治州', '青海省', '海西蒙古族藏族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3055, '中国', '632801', '格尔木市', '青海省', '海西蒙古族藏族自治州', '格尔木市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3056, '中国', '632802', '德令哈市', '青海省', '海西蒙古族藏族自治州', '德令哈市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3057, '中国', '632803', '茫崖市', '青海省', '海西蒙古族藏族自治州', '茫崖市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3058, '中国', '632821', '乌兰县', '青海省', '海西蒙古族藏族自治州', '乌兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3059, '中国', '632822', '都兰县', '青海省', '海西蒙古族藏族自治州', '都兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3060, '中国', '632823', '天峻县', '青海省', '海西蒙古族藏族自治州', '天峻县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3061, '中国', '640000', '宁夏回族自治区', '宁夏回族自治区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3062, '中国', '640100', '银川市', '宁夏回族自治区', '银川市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3063, '中国', '640104', '兴庆区', '宁夏回族自治区', '银川市', '兴庆区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3064, '中国', '640105', '西夏区', '宁夏回族自治区', '银川市', '西夏区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3065, '中国', '640106', '金凤区', '宁夏回族自治区', '银川市', '金凤区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3066, '中国', '640121', '永宁县', '宁夏回族自治区', '银川市', '永宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3067, '中国', '640122', '贺兰县', '宁夏回族自治区', '银川市', '贺兰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3068, '中国', '640181', '灵武市', '宁夏回族自治区', '银川市', '灵武市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3069, '中国', '640200', '石嘴山市', '宁夏回族自治区', '石嘴山市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3070, '中国', '640202', '大武口区', '宁夏回族自治区', '石嘴山市', '大武口区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3071, '中国', '640205', '惠农区', '宁夏回族自治区', '石嘴山市', '惠农区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3072, '中国', '640221', '平罗县', '宁夏回族自治区', '石嘴山市', '平罗县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3073, '中国', '640300', '吴忠市', '宁夏回族自治区', '吴忠市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3074, '中国', '640302', '利通区', '宁夏回族自治区', '吴忠市', '利通区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3075, '中国', '640303', '红寺堡区', '宁夏回族自治区', '吴忠市', '红寺堡区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3076, '中国', '640323', '盐池县', '宁夏回族自治区', '吴忠市', '盐池县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3077, '中国', '640324', '同心县', '宁夏回族自治区', '吴忠市', '同心县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3078, '中国', '640381', '青铜峡市', '宁夏回族自治区', '吴忠市', '青铜峡市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3079, '中国', '640400', '固原市', '宁夏回族自治区', '固原市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3080, '中国', '640402', '原州区', '宁夏回族自治区', '固原市', '原州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3081, '中国', '640422', '西吉县', '宁夏回族自治区', '固原市', '西吉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3082, '中国', '640423', '隆德县', '宁夏回族自治区', '固原市', '隆德县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3083, '中国', '640424', '泾源县', '宁夏回族自治区', '固原市', '泾源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3084, '中国', '640425', '彭阳县', '宁夏回族自治区', '固原市', '彭阳县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3085, '中国', '640500', '中卫市', '宁夏回族自治区', '中卫市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3086, '中国', '640502', '沙坡头区', '宁夏回族自治区', '中卫市', '沙坡头区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3087, '中国', '640521', '中宁县', '宁夏回族自治区', '中卫市', '中宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3088, '中国', '640522', '海原县', '宁夏回族自治区', '中卫市', '海原县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3089, '中国', '650000', '新疆维吾尔自治区', '新疆维吾尔自治区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3090, '中国', '650100', '乌鲁木齐市', '新疆维吾尔自治区', '乌鲁木齐市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3091, '中国', '650102', '天山区', '新疆维吾尔自治区', '乌鲁木齐市', '天山区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3092, '中国', '650103', '沙依巴克区', '新疆维吾尔自治区', '乌鲁木齐市', '沙依巴克区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3093, '中国', '650104', '新市区', '新疆维吾尔自治区', '乌鲁木齐市', '新市区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3094, '中国', '650105', '水磨沟区', '新疆维吾尔自治区', '乌鲁木齐市', '水磨沟区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3095, '中国', '650106', '头屯河区', '新疆维吾尔自治区', '乌鲁木齐市', '头屯河区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3096, '中国', '650107', '达坂城区', '新疆维吾尔自治区', '乌鲁木齐市', '达坂城区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3097, '中国', '650109', '米东区', '新疆维吾尔自治区', '乌鲁木齐市', '米东区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3098, '中国', '650121', '乌鲁木齐县', '新疆维吾尔自治区', '乌鲁木齐市', '乌鲁木齐县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3099, '中国', '650200', '克拉玛依市', '新疆维吾尔自治区', '克拉玛依市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3100, '中国', '650202', '独山子区', '新疆维吾尔自治区', '克拉玛依市', '独山子区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3101, '中国', '650203', '克拉玛依区', '新疆维吾尔自治区', '克拉玛依市', '克拉玛依区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3102, '中国', '650204', '白碱滩区', '新疆维吾尔自治区', '克拉玛依市', '白碱滩区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3103, '中国', '650205', '乌尔禾区', '新疆维吾尔自治区', '克拉玛依市', '乌尔禾区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3104, '中国', '650400', '吐鲁番市', '新疆维吾尔自治区', '吐鲁番市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3105, '中国', '650402', '高昌区', '新疆维吾尔自治区', '吐鲁番市', '高昌区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3106, '中国', '650421', '鄯善县', '新疆维吾尔自治区', '吐鲁番市', '鄯善县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3107, '中国', '650422', '托克逊县', '新疆维吾尔自治区', '吐鲁番市', '托克逊县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3108, '中国', '650500', '哈密市', '新疆维吾尔自治区', '哈密市', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3109, '中国', '650502', '伊州区', '新疆维吾尔自治区', '哈密市', '伊州区', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3110, '中国', '650521', '巴里坤哈萨克自治县', '新疆维吾尔自治区', '哈密市', '巴里坤哈萨克自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3111, '中国', '650522', '伊吾县', '新疆维吾尔自治区', '哈密市', '伊吾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3112, '中国', '652300', '昌吉回族自治州', '新疆维吾尔自治区', '昌吉回族自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3113, '中国', '652301', '昌吉市', '新疆维吾尔自治区', '昌吉回族自治州', '昌吉市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3114, '中国', '652302', '阜康市', '新疆维吾尔自治区', '昌吉回族自治州', '阜康市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3115, '中国', '652323', '呼图壁县', '新疆维吾尔自治区', '昌吉回族自治州', '呼图壁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3116, '中国', '652324', '玛纳斯县', '新疆维吾尔自治区', '昌吉回族自治州', '玛纳斯县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3117, '中国', '652325', '奇台县', '新疆维吾尔自治区', '昌吉回族自治州', '奇台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3118, '中国', '652327', '吉木萨尔县', '新疆维吾尔自治区', '昌吉回族自治州', '吉木萨尔县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3119, '中国', '652328', '木垒哈萨克自治县', '新疆维吾尔自治区', '昌吉回族自治州', '木垒哈萨克自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3120, '中国', '652700', '博尔塔拉蒙古自治州', '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3121, '中国', '652701', '博乐市', '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '博乐市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3122, '中国', '652702', '阿拉山口市', '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '阿拉山口市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3123, '中国', '652722', '精河县', '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '精河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3124, '中国', '652723', '温泉县', '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '温泉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3125, '中国', '652800', '巴音郭楞蒙古自治州', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3126, '中国', '652801', '库尔勒市', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '库尔勒市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3127, '中国', '652822', '轮台县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '轮台县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3128, '中国', '652823', '尉犁县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '尉犁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3129, '中国', '652824', '若羌县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '若羌县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3130, '中国', '652825', '且末县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '且末县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3131, '中国', '652826', '焉耆回族自治县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '焉耆回族自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3132, '中国', '652827', '和静县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '和静县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3133, '中国', '652828', '和硕县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '和硕县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3134, '中国', '652829', '博湖县', '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '博湖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3135, '中国', '652900', '阿克苏地区', '新疆维吾尔自治区', '阿克苏地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3136, '中国', '652901', '阿克苏市', '新疆维吾尔自治区', '阿克苏地区', '阿克苏市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3137, '中国', '652902', '库车市', '新疆维吾尔自治区', '阿克苏地区', '库车市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3138, '中国', '652922', '温宿县', '新疆维吾尔自治区', '阿克苏地区', '温宿县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3139, '中国', '652924', '沙雅县', '新疆维吾尔自治区', '阿克苏地区', '沙雅县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3140, '中国', '652925', '新和县', '新疆维吾尔自治区', '阿克苏地区', '新和县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3141, '中国', '652926', '拜城县', '新疆维吾尔自治区', '阿克苏地区', '拜城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3142, '中国', '652927', '乌什县', '新疆维吾尔自治区', '阿克苏地区', '乌什县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3143, '中国', '652928', '阿瓦提县', '新疆维吾尔自治区', '阿克苏地区', '阿瓦提县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3144, '中国', '652929', '柯坪县', '新疆维吾尔自治区', '阿克苏地区', '柯坪县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3145, '中国', '653000', '克孜勒苏柯尔克孜自治州', '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3146, '中国', '653001', '阿图什市', '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿图什市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3147, '中国', '653022', '阿克陶县', '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿克陶县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3148, '中国', '653023', '阿合奇县', '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿合奇县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3149, '中国', '653024', '乌恰县', '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '乌恰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3150, '中国', '653100', '喀什地区', '新疆维吾尔自治区', '喀什地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3151, '中国', '653101', '喀什市', '新疆维吾尔自治区', '喀什地区', '喀什市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3152, '中国', '653121', '疏附县', '新疆维吾尔自治区', '喀什地区', '疏附县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3153, '中国', '653122', '疏勒县', '新疆维吾尔自治区', '喀什地区', '疏勒县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3154, '中国', '653123', '英吉沙县', '新疆维吾尔自治区', '喀什地区', '英吉沙县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3155, '中国', '653124', '泽普县', '新疆维吾尔自治区', '喀什地区', '泽普县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3156, '中国', '653125', '莎车县', '新疆维吾尔自治区', '喀什地区', '莎车县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3157, '中国', '653126', '叶城县', '新疆维吾尔自治区', '喀什地区', '叶城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3158, '中国', '653127', '麦盖提县', '新疆维吾尔自治区', '喀什地区', '麦盖提县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3159, '中国', '653128', '岳普湖县', '新疆维吾尔自治区', '喀什地区', '岳普湖县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3160, '中国', '653129', '伽师县', '新疆维吾尔自治区', '喀什地区', '伽师县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3161, '中国', '653130', '巴楚县', '新疆维吾尔自治区', '喀什地区', '巴楚县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3162, '中国', '653131', '塔什库尔干塔吉克自治县', '新疆维吾尔自治区', '喀什地区', '塔什库尔干塔吉克自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3163, '中国', '653200', '和田地区', '新疆维吾尔自治区', '和田地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3164, '中国', '653201', '和田市', '新疆维吾尔自治区', '和田地区', '和田市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3165, '中国', '653221', '和田县', '新疆维吾尔自治区', '和田地区', '和田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3166, '中国', '653222', '墨玉县', '新疆维吾尔自治区', '和田地区', '墨玉县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3167, '中国', '653223', '皮山县', '新疆维吾尔自治区', '和田地区', '皮山县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3168, '中国', '653224', '洛浦县', '新疆维吾尔自治区', '和田地区', '洛浦县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3169, '中国', '653225', '策勒县', '新疆维吾尔自治区', '和田地区', '策勒县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3170, '中国', '653226', '于田县', '新疆维吾尔自治区', '和田地区', '于田县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3171, '中国', '653227', '民丰县', '新疆维吾尔自治区', '和田地区', '民丰县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3172, '中国', '654000', '伊犁哈萨克自治州', '新疆维吾尔自治区', '伊犁哈萨克自治州', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3173, '中国', '654002', '伊宁市', '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3174, '中国', '654003', '奎屯市', '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3175, '中国', '654004', '霍尔果斯市', '新疆维吾尔自治区', '伊犁哈萨克自治州', '霍尔果斯市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3176, '中国', '654021', '伊宁县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3177, '中国', '654022', '察布查尔锡伯自治县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '察布查尔锡伯自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3178, '中国', '654023', '霍城县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '霍城县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3179, '中国', '654024', '巩留县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '巩留县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3180, '中国', '654025', '新源县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '新源县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3181, '中国', '654026', '昭苏县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '昭苏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3182, '中国', '654027', '特克斯县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '特克斯县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3183, '中国', '654028', '尼勒克县', '新疆维吾尔自治区', '伊犁哈萨克自治州', '尼勒克县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3184, '中国', '654200', '塔城地区', '新疆维吾尔自治区', '塔城地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3185, '中国', '654201', '塔城市', '新疆维吾尔自治区', '塔城地区', '塔城市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3186, '中国', '654202', '乌苏市', '新疆维吾尔自治区', '塔城地区', '乌苏市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3187, '中国', '654221', '额敏县', '新疆维吾尔自治区', '塔城地区', '额敏县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3188, '中国', '654223', '沙湾县', '新疆维吾尔自治区', '塔城地区', '沙湾县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3189, '中国', '654224', '托里县', '新疆维吾尔自治区', '塔城地区', '托里县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3190, '中国', '654225', '裕民县', '新疆维吾尔自治区', '塔城地区', '裕民县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3191, '中国', '654226', '和布克赛尔蒙古自治县', '新疆维吾尔自治区', '塔城地区', '和布克赛尔蒙古自治县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3192, '中国', '654300', '阿勒泰地区', '新疆维吾尔自治区', '阿勒泰地区', '', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3193, '中国', '654301', '阿勒泰市', '新疆维吾尔自治区', '阿勒泰地区', '阿勒泰市', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3194, '中国', '654321', '布尔津县', '新疆维吾尔自治区', '阿勒泰地区', '布尔津县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3195, '中国', '654322', '富蕴县', '新疆维吾尔自治区', '阿勒泰地区', '富蕴县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3196, '中国', '654323', '福海县', '新疆维吾尔自治区', '阿勒泰地区', '福海县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3197, '中国', '654324', '哈巴河县', '新疆维吾尔自治区', '阿勒泰地区', '哈巴河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3198, '中国', '654325', '青河县', '新疆维吾尔自治区', '阿勒泰地区', '青河县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3199, '中国', '654326', '吉木乃县', '新疆维吾尔自治区', '阿勒泰地区', '吉木乃县', 3, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3210, '中国', '710000', '台湾省', '台湾省', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3211, '中国', '810000', '香港特别行政区', '香港特别行政区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3212, '中国', '820000', '澳门特别行政区', '澳门特别行政区', '', '', 1, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1664, '中国', '419001', '济源市', '河南省', '济源市', '济源市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2205, '中国', '469002', '琼海市', '海南省', '琼海市', '琼海市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1778, '中国', '429004', '仙桃市', '湖北省', '仙桃市', '仙桃市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1779, '中国', '429005', '潜江市', '湖北省', '潜江市', '潜江市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1780, '中国', '429006', '天门市', '湖北省', '天门市', '天门市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (1781, '中国', '429021', '神农架林区', '湖北省', '神农架林区', '神农架林区', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2204, '中国', '469001', '五指山市', '海南省', '五指山市', '五指山市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2206, '中国', '469005', '文昌市', '海南省', '文昌市', '文昌市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2207, '中国', '469006', '万宁市', '海南省', '万宁市', '万宁市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2208, '中国', '469007', '东方市', '海南省', '东方市', '东方市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2209, '中国', '469021', '定安县', '海南省', '定安县', '定安县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2210, '中国', '469022', '屯昌县', '海南省', '屯昌县', '屯昌县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2211, '中国', '469023', '澄迈县', '海南省', '澄迈县', '澄迈县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2212, '中国', '469024', '临高县', '海南省', '临高县', '临高县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2213, '中国', '469025', '白沙黎族自治县', '海南省', '白沙黎族自治县', '白沙黎族自治县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2214, '中国', '469026', '昌江黎族自治县', '海南省', '昌江黎族自治县', '昌江黎族自治县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2215, '中国', '469027', '乐东黎族自治县', '海南省', '乐东黎族自治县', '乐东黎族自治县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2216, '中国', '469028', '陵水黎族自治县', '海南省', '陵水黎族自治县', '陵水黎族自治县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2217, '中国', '469029', '保亭黎族苗族自治县', '海南省', '保亭黎族苗族自治县', '保亭黎族苗族自治县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (2218, '中国', '469030', '琼中黎族苗族自治县', '海南省', '琼中黎族苗族自治县', '琼中黎族苗族自治县', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3200, '中国', '659001', '石河子市', '新疆维吾尔自治区', '石河子市', '石河子市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3201, '中国', '659002', '阿拉尔市', '新疆维吾尔自治区', '阿拉尔市', '阿拉尔市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3202, '中国', '659003', '图木舒克市', '新疆维吾尔自治区', '图木舒克市', '图木舒克市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3203, '中国', '659004', '五家渠市', '新疆维吾尔自治区', '五家渠市', '五家渠市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3204, '中国', '659005', '北屯市', '新疆维吾尔自治区', '北屯市', '北屯市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3205, '中国', '659006', '铁门关市', '新疆维吾尔自治区', '铁门关市', '铁门关市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3206, '中国', '659007', '双河市', '新疆维吾尔自治区', '双河市', '双河市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3207, '中国', '659008', '可克达拉市', '新疆维吾尔自治区', '可克达拉市', '可克达拉市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3208, '中国', '659009', '昆玉市', '新疆维吾尔自治区', '昆玉市', '昆玉市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);
INSERT INTO edt_option_administrative_division VALUES (3209, '中国', '659010', '胡杨河市', '新疆维吾尔自治区', '胡杨河市', '胡杨河市', 2, 0, '2021-05-21 09:29:29.163194', NULL, NULL);


bootstrap.yml

spring:
application:
name: edt-management
servlet:
multipart:
max-file-size: 100MB
max-request-size: 100MB
cloud:
# 注册指定的IP到nacos中, 本地debug使用
# inetutils:
# preferred-networks: 2.0.1.4
nacos:
discovery:
server-addr: ${NACOS_HOST:10.25.19.3}:${NACOS_PORT:8848}
namespace: ${NACOS_NAMESPACE:323220b1-b5cf-4d12-a704-1e3a0235d12b}
username: ${NACOS_USERNAME:nacos}
password: ${NACOS_PASSWORD:nacos}
group: standard
config:
server-addr: ${NACOS_HOST:10.25.19.3}:${NACOS_PORT:8848}
namespace: ${NACOS_NAMESPACE:323220b1-b5cf-4d12-a704-1e3a0235d12b}
username: ${NACOS_USERNAME:nacos}
password: ${NACOS_PASSWORD:nacos}
group: standard
file-extension: properties
extension-configs:
- data-id: application-nexus-edt-management-custom-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
group: ${spring.cloud.nacos.config.group}
shared-configs:
- data-id: nexus-edt-management-service-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
group: ${spring.cloud.nacos.config.group}

profiles:
active: ${PROFILES_ACTIVE:dev}

大数据相关 - 附:表

自动生成的维度表

hbase 维度表

hbase维度表名称
****
长龙hbase维度表备注列簇
platformcdp_platform上报平台cf
tenant_idcdp_tenant_id租户IDcf
project_idcdp_project_id项目IDcf
app_idcdp_app_id产品IDcf
device_modelcdp_device_model设备机型cf
device_brandcdp_device_brand设备品牌cf
device_typecdp_device_type设备类型cf
event_name
cdp_event_name
事件名称
cf
event_typecdp_event_type事件类型cf
sdk_versioncdp_sdk_versionsdk版本号cf
app_versioncdp_app_versionapp版本号cf
browser_versioncdp_browser_version浏览器版本cf
send_typecdp_send_type事件上报方式cf
market_namecdp_market_nameAPP下载渠道cf
utm_matching_typecdp_utm_matching_type广告渠道追踪匹配模式cf
utm_sourcecdp_utm_source广告系列来源cf
event_codecdp_event_code事件唯一代码cf
events_usercdp_events_user用户维表cf
events_devicecdp_events_device用户设备维表cf
events_locationcdp_events_location用户位置维表cf
events_utmcdp_events_utm用户渠道维表cf
events_pagecdp_events_page用户页面维表cf
events_metricscdp_events_metrics用户实时指标维表cf