基本信息
源码名称:全球地区城市经纬度sql脚本
源码大小:0.63M
文件格式:.sql
开发语言:SQL
更新时间:2021-08-16
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
包含全球地区城市经纬度

CREATE TABLE IF NOT EXISTS `mk_international_location` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pid` int(10) unsigned DEFAULT '0' COMMENT '父id/上级id',
  `path` varchar(255) DEFAULT '' COMMENT '路径',
  `level` int(10) unsigned DEFAULT '0' COMMENT '层级',
  `name` varchar(255) DEFAULT '' COMMENT '中文名称',
  `name_en` varchar(255) DEFAULT '' COMMENT '英文名称',
  `name_pinyin` varchar(255) DEFAULT '' COMMENT '中文拼音',
  `code` varchar(50) DEFAULT '' COMMENT '地区代码',
  `zip_code` varchar(50) DEFAULT '' COMMENT '邮政编码',
  `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '状态值 0无效 1有效',
  `manager_id` int(10) unsigned DEFAULT '0' COMMENT '操作管理员id',
  `manager_username` varchar(30) DEFAULT '' COMMENT '操作员账户名',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `lat` varchar(255) DEFAULT NULL COMMENT '百度.纬度',
  `lng` varchar(255) DEFAULT NULL COMMENT '百度.经度',
  PRIMARY KEY (`id`),
  KEY `international_location_pid_index` (`pid`),
  KEY `international_location_manager_id_index` (`manager_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=4170 ;