fengketrade/addons/shopro/install.sql
2025-10-16 21:07:43 +08:00

1366 lines
319 KiB
SQL
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE IF NOT EXISTS `__PREFIX__jobs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`queue` varchar(255) NOT NULL,
`payload` longtext NOT NULL,
`attempts` tinyint(3) UNSIGNED NOT NULL,
`reserved` tinyint(3) UNSIGNED NOT NULL,
`reserved_at` int(10) UNSIGNED NULL DEFAULT NULL,
`available_at` int(10) UNSIGNED NOT NULL,
`created_at` int(10) UNSIGNED NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '队列';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NULL DEFAULT NULL COMMENT '活动名称',
`classify` varchar(60) NULL DEFAULT NULL COMMENT '活动类目',
`type` varchar(60) NULL DEFAULT NULL COMMENT '活动类别',
`goods_ids` varchar(1200) NULL DEFAULT NULL COMMENT '商品组',
`prehead_time` bigint(16) NULL DEFAULT NULL COMMENT '预热时间',
`start_time` bigint(16) NULL DEFAULT NULL COMMENT '开始时间',
`end_time` bigint(16) NULL DEFAULT NULL COMMENT '结束时间',
`rules` text NULL COMMENT '规则',
`richtext_id` int(11) NULL DEFAULT NULL COMMENT '活动说明',
`richtext_title` varchar(255) NULL DEFAULT NULL COMMENT '说明标题',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '删除时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '营销活动';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity_gift_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '活动',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '订单',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '用户',
`type` enum('coupon','score','money','goods') NULL DEFAULT NULL COMMENT '礼品类型:coupon=优惠券,score=积分,money=余额,goods=商品',
`gift` varchar(60) NULL DEFAULT NULL COMMENT '礼品',
`value` varchar(60) NULL DEFAULT NULL COMMENT '价值',
`rules` varchar(2048) NULL DEFAULT NULL COMMENT '规则',
`status` enum('waiting','finish','fail') NULL DEFAULT 'waiting' COMMENT '状态:waiting=等待赠送,finish=赠送完成,fail=赠送失败',
`fail_msg` varchar(255) NULL DEFAULT NULL COMMENT '赠送失败原因',
`errors` varchar(1024) NULL DEFAULT NULL COMMENT '具体原因',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '满赠记录';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity_groupon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '团长',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '商品',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '活动',
`num` int(10) NOT NULL DEFAULT 0 COMMENT '成团人数',
`current_num` int(10) NOT NULL DEFAULT 0 COMMENT '当前人数',
`status` enum('invalid','ing','finish','finish_fictitious') NOT NULL DEFAULT 'ing' COMMENT '状态:invalid=已过期,ing=进行中,finish=已成团,finish_fictitious=虚拟成团',
`expire_time` bigint(16) NULL DEFAULT NULL COMMENT '过期时间',
`finish_time` bigint(16) NULL DEFAULT NULL COMMENT '成团时间',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '拼团';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity_groupon_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '用户',
`nickname` varchar(255) NULL DEFAULT NULL COMMENT '用户昵称',
`avatar` varchar(255) NULL DEFAULT NULL COMMENT '头像',
`groupon_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '商品',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '商品规格',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '活动',
`is_leader` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否团长:0=不是,1=是',
`is_fictitious` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否虚拟:0=不是,1=是',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '订单',
`is_refund` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否退款:0=不是,1=是',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `groupon_id`(`groupon_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '参团记录';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity_order` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '用户',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '活动',
`activity_title` varchar(255) NULL DEFAULT NULL COMMENT '活动标题',
`activity_type` varchar(255) NULL DEFAULT NULL COMMENT '活动类型',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '订单',
`pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '金额',
`discount_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '优惠金额/赠送金额',
`goods_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '参与商品金额',
`goods_ids` varchar(225) NULL DEFAULT NULL COMMENT '参与商品',
`status` enum('unpaid','paid') NOT NULL DEFAULT 'unpaid' COMMENT '状态:unpaid=未支付,paid=已支付',
`ext` varchar(2048) NULL DEFAULT NULL COMMENT '附加信息',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `activity_id`(`activity_id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '活动订单';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity_signin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '用户',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '活动',
`date` varchar(30) NOT NULL DEFAULT '' COMMENT '签到日期',
`score` int(10) NOT NULL DEFAULT 0 COMMENT '所得积分',
`is_replenish` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否补签:0=正常,1=补签',
`rules` varchar(255) NULL DEFAULT NULL COMMENT '规则',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '活动签到';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_activity_sku_price` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '活动',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '规格',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '商品',
`stock` int(10) NOT NULL DEFAULT 0 COMMENT '库存',
`sales` int(10) NOT NULL DEFAULT 0 COMMENT '销量',
`price` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '价格',
`ext` varchar(1024) NULL DEFAULT NULL COMMENT '附加字段',
`status` enum('up','down') NOT NULL DEFAULT 'up' COMMENT '规格状态:up=上架,down=下架',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '活动规格价格';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_cart` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '商品',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '用户',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '规格',
`goods_num` int(10) NOT NULL DEFAULT 0 COMMENT '数量',
`snapshot_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '快照价格',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `goods_id`(`goods_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `goods_sku_price_id`(`goods_sku_price_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '购物车';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NULL DEFAULT NULL COMMENT '分类名称',
`parent_id` int(11) NOT NULL DEFAULT 0 COMMENT '所属分类',
`style` varchar(30) NULL DEFAULT NULL COMMENT '样式',
`image` varchar(255) NULL DEFAULT NULL COMMENT '图片',
`description` varchar(255) NULL DEFAULT NULL COMMENT '描述',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态:normal=正常,hidden=隐藏',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '权重',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '分类';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_common_word` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`room_id` varchar(60) NOT NULL DEFAULT 'admin' COMMENT '房间号',
`name` varchar(512) NOT NULL DEFAULT '' COMMENT '名称',
`content` text NULL COMMENT '内容',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '权重',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `room_id`(`room_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '常用语';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_customer_service` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NULL DEFAULT NULL COMMENT '客服昵称',
`avatar` varchar(255) NULL DEFAULT NULL COMMENT '客服头像',
`room_id` varchar(60) NOT NULL DEFAULT 'admin' COMMENT '客服房间',
`max_num` int(10) NOT NULL DEFAULT 10 COMMENT '最大接待人数',
`last_time` bigint(16) NULL DEFAULT NULL COMMENT '上次服务时间',
`status` enum('offline','online','busy') NOT NULL DEFAULT 'offline' COMMENT '状态',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = 'chat客服';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_customer_service_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customer_service_id` int(11) NOT NULL DEFAULT 0 COMMENT '客服',
`auth` varchar(60) NULL DEFAULT NULL COMMENT '认证类型',
`auth_id` int(11) NOT NULL DEFAULT 0 COMMENT '认证用户',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `customer_service_id`(`customer_service_id`) USING BTREE,
INDEX `auth`(`auth`, `auth_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '客服用户';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_question` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`room_id` varchar(60) NOT NULL DEFAULT 'admin' COMMENT '房间号',
`title` varchar(512) NOT NULL DEFAULT '' COMMENT '问题',
`content` text NULL COMMENT '内容',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '权重',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `room_id`(`room_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '猜你想问';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_record` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`chat_user_id` int(11) NOT NULL DEFAULT 0 COMMENT '顾客',
`room_id` varchar(60) NOT NULL DEFAULT 'admin' COMMENT '房间号',
`sender_identify` enum('customer_service','customer') NOT NULL DEFAULT 'customer' COMMENT '发送身份',
`sender_id` int(11) NOT NULL DEFAULT 0 COMMENT '发送者',
`message_type` enum('text','image','file','system','goods','order') NOT NULL DEFAULT 'text' COMMENT '消息类型',
`message` text NULL COMMENT '消息',
`read_time` bigint(16) NULL DEFAULT NULL COMMENT '读取时间',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `chat_user_id`(`chat_user_id`) USING BTREE,
INDEX `sender_identify`(`sender_identify`, `sender_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '聊天记录';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_service_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`chat_user_id` int(11) NOT NULL DEFAULT 0 COMMENT 'chat user',
`customer_service_id` int(11) NOT NULL DEFAULT 0 COMMENT '客服',
`room_id` varchar(60) NOT NULL DEFAULT 'admin' COMMENT '房间号',
`starttime` bigint(16) NULL DEFAULT NULL COMMENT '开始时间',
`endtime` bigint(16) NULL DEFAULT NULL COMMENT '结束时间',
`status` enum('waiting','ing','end') NOT NULL DEFAULT 'waiting' COMMENT '状态',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `chat_user_id`(`chat_user_id`) USING BTREE,
INDEX `customer_service_id`(`customer_service_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = 'chat服务记录';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_chat_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`session_id` varchar(60) NULL DEFAULT NULL COMMENT '标示',
`auth` varchar(60) NULL DEFAULT NULL COMMENT '认证类型',
`auth_id` int(11) NOT NULL DEFAULT 0 COMMENT '认证用户',
`nickname` varchar(60) NULL DEFAULT NULL COMMENT '昵称',
`avatar` varchar(225) NULL DEFAULT NULL COMMENT '头像',
`customer_service_id` int(11) NOT NULL DEFAULT 0 COMMENT '最后接待客服',
`last_time` bigint(16) NULL DEFAULT NULL COMMENT '上次在线时间',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '创建时间',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `session_id`(`session_id`) USING BTREE,
INDEX `auth`(`auth`, `auth_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = 'chat用户';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_config` (
`code` varchar(100) NOT NULL COMMENT '配置标识',
`parent_code` varchar(60) NULL DEFAULT NULL COMMENT '上级标识',
`name` varchar(60) NOT NULL DEFAULT '' COMMENT '配置名称',
`description` varchar(255) NULL DEFAULT NULL COMMENT '描述',
`type` varchar(60) NULL DEFAULT NULL COMMENT '类型:group,string,text,int,radio,select,select_mult,bool,array,datetime,date,file',
`value` varchar(512) NULL DEFAULT NULL COMMENT '配置内容',
`store_range` varchar(512) NULL DEFAULT NULL COMMENT '配置选项',
`rule` varchar(60) NULL DEFAULT NULL COMMENT '验证规则',
`weigh` int(8) NOT NULL DEFAULT 50 COMMENT '权重',
PRIMARY KEY (`code`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '系统配置';
-- shopro_config 数据
INSERT INTO `__PREFIX__shopro_config` (`code`, `parent_code`, `name`, `description`, `type`, `value`, `store_range`, `rule`, `weigh`) VALUES ('chat', NULL, '客服配置', NULL, 'group', NULL, NULL, NULL, 50), ('chat.application', 'chat', '客服应用设置', '客服应用设置', 'group', NULL, NULL, NULL, 50), ('chat.application.shop', 'chat.application', '商城客服', '商城客服配置', 'group', NULL, NULL, NULL, 50), ('chat.application.shop.room_id', 'chat.application.shop', '客服连接类型', '官网客服连接类型', 'string', 'admin', NULL, 'required', 50), ('chat.basic', 'chat', '基础配置', NULL, 'group', NULL, NULL, NULL, 50), ('chat.basic.allocate', 'chat.basic', '分配客服方式', NULL, 'string', 'busy', '[{\"name\":\"\\u5fd9\\u788c\\u7a0b\\u5ea6\",\"value\":\"busy\"},{\"name\":\"\\u8f6e\\u6d41\",\"value\":\"turns\"},{\"name\":\"\\u968f\\u673a\",\"value\":\"random\"}]', NULL, 50), ('chat.basic.auto_customer_service', 'chat.basic', '自动分配客服', NULL, 'boolean', '1', NULL, NULL, 50), ('chat.basic.last_customer_service', 'chat.basic', '默认上次客服', NULL, 'boolean', '1', NULL, 'required', 50), ('chat.system', 'chat', '系统配置', '请谨慎修改', 'group', NULL, NULL, NULL, 50), ('chat.system.inside_host', 'chat.system', '内部通讯地址', '无特殊需求不要改', 'string', '127.0.0.1', NULL, 'required', 50), ('chat.system.inside_port', 'chat.system', '内部通讯端口', '对内提供服务', 'string', '9292', NULL, 'required', 50), ('chat.system.port', 'chat.system', '端口(需要放行)', '对外服务端口', 'string', '2222', NULL, 'required', 50), ('chat.system.ssl', 'chat.system', '证书模式', NULL, 'string', 'reverse_proxy', NULL, 'required', 50), ('chat.system.ssl_cert', 'chat.system', 'ssl 证书', NULL, 'string', '', NULL, 'required', 50), ('chat.system.ssl_key', 'chat.system', 'ssl key', NULL, 'string', '', NULL, 'required', 50), ('shop', NULL, '商城配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.basic', 'shop', '基本信息', NULL, 'group', NULL, NULL, NULL, 50), ('shop.basic.about_us', 'shop.basic', '关于我们', NULL, 'array', '{\"title\":\"关于我们\",\"id\":\"3\"}', NULL, 'required', 50), ('shop.basic.copyright', 'shop.basic', '版权信息', '版权信息', 'string', '河南星品科技有限公司版权所有', NULL, 'required', 50), ('shop.basic.copytime', 'shop.basic', '版权时间', '版权时间', 'string', 'Copyright© 2018-2023', NULL, 'required', 50), ('shop.basic.domain', 'shop.basic', '商城域名', NULL, 'string', 'https://m.v3.shopro.top/#/', NULL, 'required', 50), ('shop.basic.logo', 'shop.basic', '商城logo', NULL, 'string', '/assets/addons/shopro/img/admin/default_logo.png', NULL, 'required', 50), ('shop.basic.name', 'shop.basic', '商城名称', NULL, 'string', 'Shopro商城', NULL, 'required', 50), ('shop.basic.privacy_protocol', 'shop.basic', '隐私协议', NULL, 'array', '{\"title\":\"隐私协议\",\"id\":\"2\"}', NULL, 'required', 50), ('shop.basic.user_protocol', 'shop.basic', '用户协议', NULL, 'array', '{\"title\":\"用户协议\",\"id\":\"1\"}', NULL, 'required', 50), ('shop.basic.version', 'shop.basic', '版本号', NULL, 'string', '3.0.0', NULL, 'required', 50), ('shop.commission', 'shop', '分销设置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.commission.agent_check', 'shop.commission', '分销商审核', NULL, 'boolean', '0', NULL, NULL, 50), ('shop.commission.agent_form', 'shop.commission', '完善资料表单', NULL, 'array', '{\"status\":\"1\",\"background_image\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/apply_agent.png\",\"content\":[{\"type\":\"text\",\"name\":\"姓名\"},{\"type\":\"text\",\"name\":\"身份证号\"},{\"type\":\"image\",\"name\":\"身份证照片\"}]}', NULL, NULL, 50), ('shop.commission.apply_protocol', 'shop.commission', '申请协议', NULL, 'array', '{\"status\":\"1\",\"id\":\"2\",\"title\":\"隐私协议\"}', NULL, NULL, 50), ('shop.commission.background_image', 'shop.commission', '分销中心背景', NULL, 'string', NULL, NULL, NULL, 50), ('shop.commission.become_agent', 'shop.commission', '成为分销商条件', NULL, 'array', '{\"type\":\"apply\",\"value\":\"\"}', NULL, NULL, 50), ('shop.commission.invite_lock', 'shop.commission', '锁定下级条件', NULL, 'string', 'share', NULL, NULL, 50), ('shop.commission.level', 'shop.commission', '分销层级', NULL, 'int', '2', NULL, NULL, 50), ('shop.commission.refund_commission_order', 'shop.commission', '退款扣除业绩', '', 'boolean', '1', '', '', 50), ('shop.commission.refund_commission_reward', 'shop.commission', '退款扣除佣金', '', 'boolean', '1', '', '', 50), ('shop.commission.reward_event', 'shop.commission', '佣金结算方式', '', 'string', 'paid', '', '', 50), ('shop.commission.reward_type', 'shop.commission', '佣金结算价', '', 'string', 'pay_price', '', '', 50), ('shop.commission.self_buy', 'shop.commission', '分销内购', NULL, 'boolean', '0', NULL, NULL, 50), ('shop.commission.upgrade_check', 'shop.commission', '升级审核', NULL, 'boolean', '0', NULL, NULL, 50), ('shop.commission.upgrade_jump', 'shop.commission', '越级升级', NULL, 'boolean', '1', NULL, NULL, 50), ('shop.dispatch', 'shop', '快递物流', NULL, 'group', NULL, NULL, NULL, 50), ('shop.dispatch.driver', 'shop.dispatch', '驱动类型', NULL, 'string', 'kdniao', NULL, 'required', 50), ('shop.dispatch.kdniao', 'shop.dispatch', '快递鸟配置', NULL, 'group', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.app_key', 'shop.dispatch.kdniao', 'AppKey', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.customer_name', 'shop.dispatch.kdniao', '客户号', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.customer_pwd', 'shop.dispatch.kdniao', '客户密码', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.ebusiness_id', 'shop.dispatch.kdniao', '用户ID', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.express', 'shop.dispatch.kdniao', '快递公司编码', NULL, 'array', '', NULL, 'required', 50), ('shop.dispatch.kdniao.exp_type', 'shop.dispatch.kdniao', '快递类型', NULL, 'string', '1', NULL, 'required', 50), ('shop.dispatch.kdniao.jd_code', 'shop.dispatch.kdniao', '京东青龙编号', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.month_code', 'shop.dispatch.kdniao', '月结号', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.send_site', 'shop.dispatch.kdniao', '网点编码', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.send_staff', 'shop.dispatch.kdniao', '取件员编号', NULL, 'string', NULL, NULL, 'required', 50), ('shop.dispatch.kdniao.pay_type', 'shop.dispatch.kdniao', '支付方式', NULL, 'string', '3', NULL, 'required', 50), ('shop.dispatch.kdniao.type', 'shop.dispatch.kdniao', '快递鸟套餐', NULL, 'string', 'vip', NULL, 'required', 50), ('shop.dispatch.sender', 'shop.dispatch', '发货人', NULL, 'array', '{\"name\":\"\",\"province_name\":\"\",\"city_name\":\"\",\"district_name\":\"\",\"mobile\":\"\",\"address\":\"\"}', NULL, 'required', 50), ('shop.dispatch.thinkapi', 'shop.dispatch', 'thinkapi', NULL, 'group', NULL, NULL, NULL, 50), ('shop.dispatch.thinkapi.app_code', 'shop.dispatch.thinkapi', 'thinkapi app_code', NULL, 'string', NULL, NULL, 'required', 50), ('shop.goods', 'shop', '商品配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.goods.stock_warning', 'shop.goods', '库存预警', NULL, 'int', '5', NULL, 'required', 50), ('shop.order', 'shop', '订单配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.order.auto_close', 'shop.order', '订单自动关闭(分钟)', NULL, 'string', '15', NULL, 'required', 50), ('shop.order.auto_comment', 'shop.order', '订单自动评价(天)', NULL, 'string', '7', NULL, 'required', 50), ('shop.order.auto_comment_content', 'shop.order', '自动评价内容', '自动评价内容', 'string', '客户默认给出好评~', NULL, 'required', 50), ('shop.order.auto_confirm', 'shop.order', '订单自动收货(天)', '订单自动确认收货', 'string', '10', NULL, 'required', 50), ('shop.order.auto_refund', 'shop.order', '订单自动退款', '未发货订单,用户申请退款', 'boolean', '0', NULL, 'required', 50), ('shop.order.comment_check', 'shop.order', '评价审核', '评价是否需要审核', 'boolean', '1', NULL, 'required', 50), ('shop.order.invoice', 'shop.order', '订单发票', NULL, 'group', NULL, NULL, NULL, 50), ('shop.order.invoice.amount_type', 'shop.order.invoice', '发票金额类型', NULL, 'string', 'pay_fee', NULL, 'required', 50), ('shop.order.invoice.status', 'shop.order.invoice', '可申请发票', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.platform', 'shop', '平台配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.App', 'shop.platform', 'App', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.App.app_id', 'shop.platform.App', 'App AppId', NULL, 'string', NULL, NULL, 'required', 50), ('shop.platform.App.bind_mobile', 'shop.platform.App', '绑定手机号', NULL, 'boolean', '0', NULL, 'required', 50), ('shop.platform.App.download', 'shop.platform.App', '下载链接', NULL, 'array', '{\"android\":\"\",\"ios\":\"\",\"local\":\"\"}', NULL, 'required', 50), ('shop.platform.App.payment', 'shop.platform.App', '支付配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.App.payment.alipay', 'shop.platform.App.payment', '支付宝支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.App.payment.methods', 'shop.platform.App.payment', '支付方式', NULL, 'array', '[\"money\"]', NULL, 'required', 50), ('shop.platform.App.payment.wechat', 'shop.platform.App.payment', '微信支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.App.secret', 'shop.platform.App', 'App 密钥', NULL, 'string', NULL, NULL, 'required', 50), ('shop.platform.App.share', 'shop.platform.App', '分享', NULL, 'array', '{\"methods\":[\"forward\",\"poster\"],\"forwardInfo\":{\"title\":\"\",\"subtitle\":\"\",\"image\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/forward_image.png\"},\"linkAddress\":\"\",\"posterInfo\":{\"user_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/user_bg.png\",\"goods_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/goods_bg.png\",\"groupon_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/groupon_bg.png\"}}', NULL, 'required', 50), ('shop.platform.App.status', 'shop.platform.App', 'App开启状态', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.platform.H5', 'shop.platform', 'H5', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.H5.app_id', 'shop.platform.H5', 'H5 AppId', '公众号或小程序的 AppId', 'string', NULL, NULL, 'required', 50), ('shop.platform.H5.payment', 'shop.platform.H5', '支付配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.H5.payment.alipay', 'shop.platform.H5.payment', '支付宝支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.H5.payment.methods', 'shop.platform.H5.payment', '支付方式', NULL, 'array', '[\"money\"]', NULL, 'required', 50), ('shop.platform.H5.payment.wechat', 'shop.platform.H5.payment', '微信支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.H5.secret', 'shop.platform.H5', 'H5 密钥', '公众号或小程序的密钥', 'string', NULL, NULL, 'required', 50), ('shop.platform.H5.share', 'shop.platform.H5', '分享设置', NULL, 'array', '{\"forwardInfo\":{\"title\":\"\",\"subtitle\":\"\",\"image\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/forward_image.png\"},\"linkAddress\":\"\",\"posterInfo\":{\"user_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/user_bg.png\",\"goods_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/goods_bg.png\",\"groupon_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/groupon_bg.png\"},\"methods\":[\"poster\",\"link\"]}', NULL, 'required', 50), ('shop.platform.H5.status', 'shop.platform.H5', 'H5开启状态', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.platform.WechatMiniProgram', 'shop.platform', '微信小程序', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.WechatMiniProgram.app_id', 'shop.platform.WechatMiniProgram', '小程序AppId', NULL, 'string', NULL, NULL, 'required', 50), ('shop.platform.WechatMiniProgram.auto_login', 'shop.platform.WechatMiniProgram', '微信自动登录', NULL, 'boolean', '0', NULL, 'required', 50), ('shop.platform.WechatMiniProgram.bind_mobile', 'shop.platform.WechatMiniProgram', '绑定手机号', NULL, 'boolean', '0', NULL, 'required', 50), ('shop.platform.WechatMiniProgram.payment', 'shop.platform.WechatMiniProgram', '支付配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.WechatMiniProgram.payment.alipay', 'shop.platform.WechatMiniProgram.payment', '支付宝支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.WechatMiniProgram.payment.methods', 'shop.platform.WechatMiniProgram.payment', '支付方式', NULL, 'array', '[\"money\"]', NULL, 'required', 50), ('shop.platform.WechatMiniProgram.payment.wechat', 'shop.platform.WechatMiniProgram.payment', '微信支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.WechatMiniProgram.secret', 'shop.platform.WechatMiniProgram', '小程序密钥', NULL, 'string', NULL, NULL, 'required', 50), ('shop.platform.WechatMiniProgram.share', 'shop.platform.WechatMiniProgram', '分享信息', NULL, 'array', '{\"methods\":[\"forward\",\"poster\"],\"forwardInfo\":{\"title\":\"\",\"subtitle\":\"\",\"image\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/forward_image.png\"},\"linkAddress\":\"\",\"posterInfo\":{\"user_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/user_bg.png\",\"goods_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/goods_bg.png\",\"groupon_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/groupon_bg.png\"}}', NULL, 'required', 50), ('shop.platform.WechatMiniProgram.status', 'shop.platform.WechatMiniProgram', '小程序开启状态', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount', 'shop.platform', '微信公众号', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.WechatOfficialAccount.app_id', 'shop.platform.WechatOfficialAccount', '公众号AppId', NULL, 'string', NULL, NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.auto_login', 'shop.platform.WechatOfficialAccount', '微信自动登录', NULL, 'boolean', '0', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.bind_mobile', 'shop.platform.WechatOfficialAccount', '绑定手机号', NULL, 'boolean', '0', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.payment', 'shop.platform.WechatOfficialAccount', '支付配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.platform.WechatOfficialAccount.payment.alipay', 'shop.platform.WechatOfficialAccount.payment', '支付宝支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.payment.methods', 'shop.platform.WechatOfficialAccount.payment', '支付方式', NULL, 'array', '[\"money\"]', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.payment.wechat', 'shop.platform.WechatOfficialAccount.payment', '微信支付配置', NULL, 'int', '0', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.secret', 'shop.platform.WechatOfficialAccount', '公众号密钥', NULL, 'string', NULL, NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.share', 'shop.platform.WechatOfficialAccount', '分享图片', NULL, 'array', '{\"methods\":[\"forward\",\"poster\"],\"forwardInfo\":{\"title\":\"\",\"subtitle\":\"\",\"image\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/forward_image.png\"},\"linkAddress\":\"\",\"posterInfo\":{\"user_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/user_bg.png\",\"goods_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/goods_bg.png\",\"groupon_bg\":\"\\/assets\\/addons\\/shopro\\/img\\/admin\\/groupon_bg.png\"}}', NULL, 'required', 50), ('shop.platform.WechatOfficialAccount.status', 'shop.platform.WechatOfficialAccount', '公众号开启状态', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.recharge_withdraw', 'shop', '充值提现', NULL, 'group', NULL, NULL, NULL, 50), ('shop.recharge_withdraw.recharge', 'shop.recharge_withdraw', '充值配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.recharge_withdraw.recharge.custom_status', 'shop.recharge_withdraw.recharge', '自定义金额', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.recharge_withdraw.recharge.gift_type', 'shop.recharge_withdraw.recharge', '赠送类型', NULL, 'string', 'money', NULL, 'required', 50), ('shop.recharge_withdraw.recharge.methods', 'shop.recharge_withdraw.recharge', '充值方式', NULL, 'array', '[\"alipay\",\"wechat\"]', NULL, 'required', 50), ('shop.recharge_withdraw.recharge.quick_amounts', 'shop.recharge_withdraw.recharge', '快捷充值金额', NULL, 'array', '[{\"money\":\"10\",\"gift\":\"1\"},{\"money\":\"50\",\"gift\":\"8\"},{\"money\":\"100\",\"gift\":\"20\"}]', NULL, 'required', 50), ('shop.recharge_withdraw.recharge.status', 'shop.recharge_withdraw.recharge', '开启充值', NULL, 'boolean', '1', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw', 'shop.recharge_withdraw', '提现配置', NULL, 'group', NULL, NULL, NULL, 50), ('shop.recharge_withdraw.withdraw.auto_arrival', 'shop.recharge_withdraw.withdraw', '自动到账', NULL, 'boolean', '0', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw.charge_rate', 'shop.recharge_withdraw.withdraw', '提现手续费', NULL, 'float', '1', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw.max_amount', 'shop.recharge_withdraw.withdraw', '单次最大提现金额', NULL, 'float', '1000', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw.max_num', 'shop.recharge_withdraw.withdraw', '最多提现次数', NULL, 'int', '10', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw.methods', 'shop.recharge_withdraw.withdraw', '提现方式', NULL, 'array', '[\"bank\",\"wechat\",\"alipay\"]', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw.min_amount', 'shop.recharge_withdraw.withdraw', '单次最小提现金额', NULL, 'float', '100', NULL, 'required', 50), ('shop.recharge_withdraw.withdraw.num_unit', 'shop.recharge_withdraw.withdraw', '提现次数单位', NULL, 'string', 'month', NULL, 'required', 50), ('shop.user', 'shop', '用户配置', '用户默认值配置', 'group', NULL, NULL, NULL, 50), ('shop.user.avatar', 'shop.user', '默认头像', '用户默认头像', 'string', '/assets/addons/shopro/img/admin/default_logo.png', NULL, 'required', 50), ('shop.user.group_id', 'shop.user', '默认分组', '用户默认分组', 'string', '1', NULL, 'required', 50), ('shop.user.nickname', 'shop.user', '默认昵称', '用户默认昵称', 'string', '用户', NULL, 'required', 50), ('wechat', NULL, '微信配置', NULL, 'group', NULL, NULL, NULL, 50), ('wechat.officialAccount', 'wechat', '微信公众号配置', NULL, 'group', NULL, NULL, NULL, 50), ('wechat.officialAccount.aes_key', 'wechat.officialAccount', '消息加解密秘钥', NULL, 'string', NULL, NULL, NULL, 50), ('wechat.officialAccount.app_id', 'wechat.officialAccount', '开发者ID', NULL, 'string', NULL, NULL, NULL, 50), ('wechat.officialAccount.logo', 'wechat.officialAccount', '公众号头像', NULL, 'string', NULL, NULL, NULL, 50), ('wechat.officialAccount.name', 'wechat.officialAccount', '公众号名称', NULL, 'string', '', NULL, NULL, 50), ('wechat.officialAccount.qrcode', 'wechat.officialAccount', '公众号二维码', NULL, 'string', NULL, NULL, NULL, 50), ('wechat.officialAccount.secret', 'wechat.officialAccount', '开发者秘钥', NULL, 'string', NULL, NULL, NULL, 50), ('wechat.officialAccount.status', 'wechat.officialAccount', '公众号对接状态', NULL, 'boolean', '0', NULL, NULL, 50), ('wechat.officialAccount.token', 'wechat.officialAccount', '令牌Token', NULL, 'string', NULL, NULL, NULL, 50), ('wechat.officialAccount.type', 'wechat.officialAccount', '公众号类型', NULL, 'int', '4', NULL, NULL, 50);
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_coupon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '名称',
`type` enum('reduce','discount') NOT NULL DEFAULT 'reduce' COMMENT '类型:reduce=满减券,discount=折扣券',
`use_scope` enum('all_use','goods','disabled_goods','category') NOT NULL DEFAULT 'all_use' COMMENT '可用范围:all_use=全场通用,goods=指定商品可用,disabled_goods=指定商品不可用,category=指定分类可用',
`items` varchar(255) NULL DEFAULT NULL COMMENT '可用范围值',
`amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '券面额',
`max_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '最大抵扣(折扣券)',
`enough` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '消费门槛',
`stock` int(10) NOT NULL DEFAULT 0 COMMENT '库存',
`limit_num` int(10) NOT NULL DEFAULT 0 COMMENT '每人限领',
`get_start_time` bigint(16) NOT NULL DEFAULT 0 COMMENT '领取开始时间',
`get_end_time` bigint(16) NOT NULL DEFAULT 0 COMMENT '',
`use_time_type` enum('range','days') NOT NULL DEFAULT 'range' COMMENT '使:range=,days=',
`use_start_time` bigint(16) NOT NULL DEFAULT 0 COMMENT '使',
`use_end_time` bigint(16) NOT NULL DEFAULT 0 COMMENT '使',
`start_days` int(10) NOT NULL DEFAULT 0 COMMENT '',
`days` int(10) NOT NULL DEFAULT 0 COMMENT '',
`is_double_discount` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`description` varchar(60) NULL DEFAULT NULL COMMENT '',
`status` enum('normal','hidden','disabled') NOT NULL DEFAULT 'normal' COMMENT ':normal=,hidden=,disabled=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_data_area` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT 0 COMMENT '',
`name` varchar(60) NOT NULL COMMENT '',
`level` varchar(60) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
-- shopro_data_area 数据
INSERT INTO `__PREFIX__shopro_data_area` (`id`, `pid`, `name`, `level`) VALUES (11, 0, '', 'province'), (12, 0, '', 'province'), (13, 0, '', 'province'), (14, 0, '西', 'province'), (15, 0, '', 'province'), (21, 0, '', 'province'), (22, 0, '', 'province'), (23, 0, '', 'province'), (31, 0, '', 'province'), (32, 0, '', 'province'), (33, 0, '', 'province'), (34, 0, '', 'province'), (35, 0, '', 'province'), (36, 0, '西', 'province'), (37, 0, '', 'province'), (41, 0, '', 'province'), (42, 0, '', 'province'), (43, 0, '', 'province'), (44, 0, '广', 'province'), (45, 0, '广西', 'province'), (46, 0, '', 'province'), (50, 0, '', 'province'), (51, 0, '', 'province'), (52, 0, '', 'province'), (53, 0, '', 'province'), (54, 0, '西', 'province'), (61, 0, '西', 'province'), (62, 0, '', 'province'), (63, 0, '', 'province'), (64, 0, '', 'province'), (65, 0, '', 'province'), (71, 0, '', 'province'), (81, 0, '', 'province'), (82, 0, '', 'province'), (1101, 11, '', 'city'), (1201, 12, '', 'city'), (1301, 13, '', 'city'), (1302, 13, '', 'city'), (1303, 13, '', 'city'), (1304, 13, '', 'city'), (1305, 13, '', 'city'), (1306, 13, '', 'city'), (1307, 13, '', 'city'), (1308, 13, '', 'city'), (1309, 13, '', 'city'), (1310, 13, '', 'city'), (1311, 13, '', 'city'), (1401, 14, '', 'city'), (1402, 14, '', 'city'), (1403, 14, '', 'city'), (1404, 14, '', 'city'), (1405, 14, '', 'city'), (1406, 14, '', 'city'), (1407, 14, '', 'city'), (1408, 14, '', 'city'), (1409, 14, '', 'city'), (1410, 14, '', 'city'), (1411, 14, '', 'city'), (1501, 15, '', 'city'), (1502, 15, '', 'city'), (1503, 15, '', 'city'), (1504, 15, '', 'city'), (1505, 15, '', 'city'), (1506, 15, '', 'city'), (1507, 15, '', 'city'), (1508, 15, '', 'city'), (1509, 15, '', 'city'), (1522, 15, '', 'city'), (1525, 15, '', 'city'), (1529, 15, '', 'city'), (2101, 21, '', 'city'), (2102, 21, '', 'city'), (2103, 21, '', 'city'), (2104, 21, '', 'city'), (2105, 21, '', 'city'), (2106, 21, '', 'city'), (2107, 21, '', 'city'), (2108, 21, '', 'city'), (2109, 21, '', 'city'), (2110, 21, '', 'city'), (2111, 21, '', 'city'), (2112, 21, '', 'city'), (2113, 21, '', 'city'), (2114, 21, '', 'city'), (2201, 22, '', 'city'), (2202, 22, '', 'city'), (2203, 22, '', 'city'), (2204, 22, '', 'city'), (2205, 22, '', 'city'), (2206, 22, '', 'city'), (2207, 22, '', 'city'), (2208, 22, '', 'city'), (2224, 22, '', 'city'), (2301, 23, '', 'city'), (2302, 23, '', 'city'), (2303, 23, '西', 'city'), (2304, 23, '', 'city'), (2305, 23, '', 'city'), (2306, 23, '', 'city'), (2307, 23, '', 'city'), (2308, 23, '', 'city'), (2309, 23, '', 'city'), (2310, 23, '', 'city'), (2311, 23, '', 'city'), (2312, 23, '', 'city'), (2327, 23, '', 'city'), (3101, 31, '', 'city'), (3201, 32, '', 'city'), (3202, 32, '', 'city'), (3203, 32, '', 'city'), (3204, 32, '', 'city'), (3205, 32, '', 'city'), (3206, 32, '', 'city'), (3207, 32, '', 'city'), (3208, 32, '', 'city'), (3209, 32, '', 'city'), (3210, 32, '', 'city'), (3211, 32, '', 'city'), (3212, 32, '', 'city'), (3213, 32, '宿', 'city'), (3301, 33, '', 'city'), (3302, 33, '', 'city'), (3303, 33, '', 'city'), (3304, 33, '', 'city'), (3305, 33, '', 'city'), (3306, 33, '', 'city'), (3307, 33, '', 'city'), (3308, 33, '', 'city'), (3309, 33, '', 'city'), (3310, 33, '', 'city'), (3311, 33, '', 'city'), (3401, 34, '', 'city'), (3402, 34, '', 'city'), (3403, 34, '', 'city'), (3404, 34, '', 'city'), (3405, 34, '', 'city'), (3406, 34, '', 'city'), (3407, 34, '', 'city'), (3408, 34, '', 'city'), (3410, 34, '', 'city'), (3411, 34, '', 'city'), (3412, 34, '', 'city'), (3413, 34, '宿', 'city'), (3415, 34, '', 'city'), (3416, 34, '', 'city'), (3417, 34, '', 'city'), (3418, 34, '', 'city'), (3501, 35, '', 'city'), (3502, 35, '', 'city'), (3503, 35, '', 'city'), (3504, 35, '', 'city'), (3505, 35, '', 'city'), (3506, 35, '', 'city'), (3507, 35, '', 'city'), (3508, 35, '', 'city'), (3509, 35, '', 'city'), (3601, 36, '', 'city'), (3602, 36, '', 'city'), (3603, 36, '', 'city'), (3604, 36, '', 'city'), (3605, 36, '', 'city'), (3606, 36, '', 'city'), (3607, 36, '', 'city'), (3608, 36, '', 'city'), (3609, 36, '', 'city'), (3610, 36, '', 'city'), (3611, 36, '', 'city'), (3701, 37, '', 'city'), (3702, 37, '', 'city'), (3703, 37, '', 'city'), (3704, 37, '', 'city'), (3705, 37, '', 'city'), (3706, 37, '', 'city'), (3707, 37, '', 'city'), (3708, 37, '', 'city'), (3709, 37, '', 'city'), (3710, 37, '', 'city'), (3711, 37, '', 'city'), (3713, 37, '', 'city'), (3714, 37, '', 'city'), (3715, 37, '', 'city'), (3716, 37, '', 'city'), (3717, 37, '', 'city'), (4101, 41, '', 'city'), (4102, 41, '', 'city'), (4103, 41, '', 'city'), (4104, 41, '', 'city'), (4105, 41, '', 'city'), (4106, 41, '', 'city'), (4107, 41, '', 'city'), (4108, 41, '', 'city'), (4109, 41, '', 'city'), (4110, 41, '', 'city'), (4111, 41, '', 'city'), (4112, 41, '', 'city'), (4113, 41, '', 'city'), (4114, 41, '', 'city'), (4115, 41, '', 'city'), (4116, 41, '', 'city'), (4117, 41, '', 'city'), (4190, 41, '', 'city'), (4201, 42, '', 'city'), (4202, 42, '', 'city'), (4203, 42, '', 'city'), (4205, 42, '', 'city'), (4206, 42, '', 'city'), (4207, 42, '', 'city'), (4208, 42, '', 'city'), (4209, 42, '', 'city'), (4210, 42, '', 'city'), (4211, 42, '', 'city'), (4212, 42, '', 'city'), (4213, 42, '', 'city'), (4228, 42, '', 'city'), (4290, 42, '', 'city'), (4301, 43, '', 'city'), (4302, 43, '', 'city'), (4303, 43, '', 'city'), (4304, 43, '', 'city'), (4305, 43, '', 'city'), (4306, 43, '', 'city'), (4307, 43, '', 'city'), (4308, 43, '', 'city'), (4309, 43, '', 'city'), (4310, 43, '', 'city'), (4311, 43, '', 'city'), (4312, 43, '怀', 'city'), (4313, 43, '', 'city'), (4331, 43, '西', 'city'), (4401, 44, '广', 'city'), (4402, 44, '', 'city'), (4403, 44, '', 'city'), (4404, 44, '', 'city'), (4405, 44, '', 'city'), (4406, 44, '', 'city'), (4407, 44, '', 'city'), (4408, 44, '', 'city'), (4409, 44, '', 'city'), (4412, 44, '', 'city'), (4413, 44, '', 'city'), (4414, 44, '', 'city'), (4415, 44, '', 'city'), (4416, 44, '', 'city'), (4417, 44, '', 'city'), (4418, 44, '', 'city'), (4419, 44, '', 'city'), (4420, 44, '', 'city'), (4451, 44, '', 'city'), (4452, 44, '', 'city'), (4453, 44, '', 'city'), (4501, 45, '', 'city'), (4502, 45, '', 'city'), (4503, 45, '', 'city'), (4504, 45, '', 'city'), (4505, 45, '', 'city'), (4506, 45, '', 'city'), (4507, 45, '', 'city'), (4508, 45, '', 'city'), (4509, 45, '', 'city'), (4510, 45, '', 'city'), (4511, 45, '', 'city'), (4512, 45, '', 'city'), (4513, 45, '', 'city'), (4514, 45, '', 'city'), (4601, 46, '', 'city'), (4602, 46, '', 'city'), (4603, 46, '', 'city'), (4604, 46, '', 'city'), (4690, 46, '', 'city'), (5001, 50, '', 'city'), (5002, 50, '', 'city'), (5101, 51, '', 'city'), (5103, 51, '', 'city'), (5104, 51, '', 'city'), (5105, 51, '', 'city'), (5106, 51, '', 'city'), (5107, 51, '', 'city'), (5108, 51, '广', 'city'), (5109, 51, '', 'city'), (5110, 51, '', 'city'), (5111, 51, '', 'city'), (5113, 51, '', 'city'), (5114, 51, '', 'city'), (5115, 51, '', 'city'), (5116, 51, '广', 'city'), (5117, 51, '', 'city'), (5118, 51, '', 'city'), (5119, 51, '', 'city'), (5120, 51, '', 'city'), (5132, 51, '', 'city'), (5133, 51, '', 'city'), (5134, 51, '', 'city'), (5201, 52, '', 'city'), (5202, 52, '', 'city'), (5203, 52, '', 'city'), (5204, 52, '', 'city'), (5205, 52, '', 'city'), (5206, 52, '', 'city'), (5223, 52, '西', 'city'), (5226, 52, '', 'city'), (5227, 52, '', 'city'), (5301, 53, '', 'city'), (5303, 53, '', 'city'), (5304, 53, '', 'city'), (5305, 53, '', 'city'), (5306, 53, '', 'city'), (5307, 53, '', 'city'), (5308, 53, '', 'city'), (5309, 53, '', 'city'), (5323, 53, '', 'city'), (5325, 53, '', 'city'), (5326, 53, '', 'city'), (5328, 53, '西', 'city'), (5329, 53, '', 'city'), (5331, 53, '', 'city'), (5333, 53, '', 'city'), (5334, 53, '', 'city'), (5401, 54, '', 'city'), (5402, 54, '', 'city'), (5403, 54, '', 'city'), (5404, 54, '', 'city'), (5405, 54, '', 'city'), (5406, 54, '', 'city'), (5425, 54, '', 'city'), (6101, 61, '西', 'city'), (6102, 61, '', 'city'), (6103, 61, '', 'city'), (6104, 61, '', 'city'), (6105, 61, '', 'city'), (6106, 61, '', 'city'), (6107, 61, '', 'city'), (6108, 61, '', 'city'), (6109, 61, '', 'city'), (6110, 61, '', 'city'), (6201, 62, '', 'city'), (6202, 62, '', 'city'), (6203, 62, '', 'city'), (6204, 62, '', 'city'), (6205, 62, '', 'city'), (6206, 62, '', 'city'), (6207, 62, '', 'city'), (6208, 62, '', 'city'), (6209, 62, '', 'city'), (6210, 62, '', 'city'), (6211, 62, '西', 'city'), (6212, 62, '', 'city'), (6229, 62, '', 'city'), (6230, 62, '', 'city'), (6301, 63, '西', 'city'), (6302, 63, '', 'city'), (6322, 63, '', 'city'), (6323, 63, '', 'city'), (6325, 63, '', 'city'), (6326, 63, '', 'city'), (6327, 63, '', 'city'), (6328, 63, '西', 'city'), (6401, 64, '', 'city'), (6402, 64, '', 'city'), (6403, 64, '', 'city'), (6404, 64, '', 'city'), (6405, 64, '', 'city'), (6501, 65, '', 'city'), (6502, 65, '', 'city'), (6504, 65, '', 'city'), (6505, 65, '', 'city'), (6523, 65, '', 'city'), (6527, 65, '', 'city'), (6528, 65, '', 'city'), (6529, 65, '', 'city'), (6530, 65, '', 'city'), (6531, 65, '', 'city'), (6532, 65, '', 'city'), (6540, 65, '', 'city'), (6542, 65, '', 'city'), (6543, 65, '', 'city'), (6590, 65, '', 'city'), (7110, 71, '', 'city'), (7111, 71, '', 'city'), (7112, 71, '', 'city'), (7113, 71, '', 'city'), (7114, 71, '', 'city'), (7115, 71, '', 'city'), (7116, 71, '', 'city'), (7117, 71, '', 'city'), (7118, 71, '', 'city'), (7119, 71, '', 'city'), (7120, 71, '', 'city'), (7122, 71, '', 'city'), (7123, 71, '', 'city'), (7124, 71, '', 'city'), (7125, 71, '', 'city'), (7126, 71, '', 'city'), (7129, 71, '', 'city'), (7130, 71, '', 'city'), (7131, 71, '', 'city'), (7132, 71, '', 'city'), (8100, 81, '', 'city'), (8111, 8100, '西', 'district'), (8112, 8100, '', 'district'), (8113, 8100, '', 'district'), (8114, 8100, '', 'district'), (8121, 8100, '', 'district'), (8122, 8100, '', 'district'), (8123, 8100, '', 'district'), (8124, 8100, '', 'district'), (8125, 8100, '', 'district'), (8131, 8100, '', 'district'), (8132, 8100, '', 'district'), (8133, 8100, '', 'district'), (8134, 8100, '', 'district'), (8135, 8100, '', 'district'), (8136, 8100, '', 'district'), (8137, 8100, '', 'district'), (8138, 8100, '西', 'district'), (8139, 8100, '', 'district'), (8200, 82, '', 'city'), (8201, 8200, '', 'district'), (8202, 8200, '', 'district'), (8203, 8200, '', 'district'), (8204, 8200, '', 'district'), (110101, 1101, '', 'district'), (110102, 1101, '西', 'district'), (110105, 1101, '', 'district'), (110106, 1101, '', 'district'), (110107, 1101, '', 'district'), (110108, 1101, '', 'district'), (110109, 1101, '', 'district'), (110111, 1101, '', 'district'), (110112, 1101, '', 'district'), (110113, 1101, '', 'district'), (110114, 1101, '', 'district'), (110115, 1101, '', 'district'), (110116, 1101, '怀', 'district'), (110117, 1101, '', 'district'), (110118, 1101, '', 'district'), (110119, 1101, '', 'district'), (120101, 1201, '', 'district'), (120102, 1201, '', 'district'), (120103, 1201, '西', 'district'), (120104, 1201, '', 'district'), (120105, 1201, '', 'district'), (120106, 1201, '', 'district'), (120110, 1201, '', 'district'), (120111, 1201, '西', 'district'), (120112, 1201, '', 'district'), (120113, 1201, '', 'district'), (120114, 1201, '', 'district'), (120115, 1201, '', 'district'), (120116, 1201, '', 'district'), (120117, 1201, '', 'district'), (120118, 1201, '', 'district'), (120119, 1201, '', 'district'), (130102, 1301, '', 'district'), (130104, 1301, '西', 'district'), (130105, 1301, '', 'district'), (130107, 1301, '', 'district'), (130108, 1301, '', 'district'), (130109, 1301, '', 'district'), (130110, 1301, '鹿', 'district'), (130111, 1301, '', 'district'), (130121, 1301, '', 'district'), (130123, 1301, '', 'district'), (130125, 1301, '', 'district'), (130126, 1301, '寿', 'district'), (130127, 1301, '', 'district'), (130128, 1301, '', 'district'), (130129, 1301, '', 'district'), (130130, 1301, '', 'district'), (130131, 1301, '', 'district'), (130132, 1301, '', 'district'), (130133, 1301, '', 'district'), (130171, 1301, '', 'district'), (130172, 1301, '', 'district'), (130181, 1301, '', 'district'), (130183, 1301, '', 'district'), (130184, 1301, '', 'district'), (130202, 1302, '', 'district'), (130203, 1302, '', 'district'), (130204, 1302, '', 'district'), (130205, 1302, '', 'district'), (130207, 1302, '', 'district'), (130208, 1302, '', 'district'), (130209, 1302, '', 'district'), (130224, 1302, '', 'district'), (130225, 1302, '', 'district'), (130227, 1302, '西', 'district'), (130229, 1302, '', 'district'), (130271, 1302, '', 'district'), (130272, 1302, '', 'district'), (130273, 1302, '', 'district'), (130274, 1302, '', 'district'), (130281, 1302, '', 'district'), (130283, 1302, '', 'district'), (130284, 1302, '', 'district'), (130302, 1303, '', 'district'), (130303, 1303, '', 'district'), (130304, 1303, '', 'district'), (130306, 1303, '', 'district'), (130321, 1303, '', 'district'), (130322, 1303, '', 'district'), (130324, 1303, '', 'district'), (130371, 1303, '', 'district'), (130372, 1303, '', 'district'), (130402, 1304, '', 'district'), (130403, 1304, '', 'district'), (130404, 1304, '', 'district'), (130406, 1304, '', 'district'), (130407, 1304, '', 'district'), (130408, 1304, '', 'district'), (130423, 1304, '', 'district'), (130424, 1304, '', 'district'), (130425, 1304, '', 'district'), (130426, 1304, '', 'district'), (130427, 1304, '', 'district'), (130430, 1304, '', 'district'), (130431, 1304, '', 'district'), (130432, 1304, '广', 'district'), (130433, 1304, '', 'district'), (130434, 1304, '', 'district'), (130435, 1304, '', 'district'), (130471, 1304, '', 'district'), (130473, 1304, '', 'district'), (130481, 1304, '', 'district'), (130502, 1305, '', 'district'), (130503, 1305, '', 'district'), (130505, 1305, '', 'district'), (130506, 1305, '', 'district'), (130522, 1305, '', 'district'), (130523, 1305, '', 'district'), (130524, 1305, '', 'district'), (130525, 1305, '', 'district'), (130528, 1305, '', 'district'), (130529, 1305, '鹿', 'district'), (130530, 1305, '', 'district'), (130531, 1305, '广', 'district'), (130532, 1305, '', 'district'), (130533, 1305, '', 'district'), (130534, 1305, '', 'district'), (130535, 1305, '西', 'district'), (130571, 1305, '', 'district'), (130581, 1305, '', 'district'), (130582, 1305, '', 'district'), (130602, 1306, '', 'district'), (130606, 1306, '', 'district'), (130607, 1306, '', 'district'), (130608, 1306, '', 'district'), (130609, 1306, '', 'district'), (130623, 1306, '', 'district'), (130624, 1306, '', 'district'), (130626, 1306, '', 'district'), (130627, 1306, '', 'district'), (130628, 1306, '', 'district'), (130629, 1306, '', 'district'), (130630, 1306, '', 'district'), (130631, 1306, '', 'district'), (130632, 1306, '', 'district'), (130633, 1306, '', 'district'), (130634, 1306, '', 'district'), (130635, 1306, '', 'district'), (130636, 1306, '', 'district'), (130637, 1306, '', 'district'), (130638, 1306, '', 'district'), (130671, 1306, '', 'district'), (130672, 1306, '', 'district'), (130681, 1306, '涿', 'district'), (130682, 1306, '', 'district'), (130683, 1306, '', 'district'), (130684, 1306, '', 'district'), (130702, 1307, '', 'district'), (130703, 1307, '西', 'district'), (130705, 1307, '', 'district'), (130706, 1307, '', 'district'), (130708, 1307, '', 'district'), (130709, 1307, '', 'district'), (130722, 1307, '', 'district'), (130723, 1307, '', 'district'), (130724, 1307, '', 'district'), (130725, 1307, '', 'district'), (130726, 1307, '', 'district'), (130727, 1307, '', 'district'), (130728, 1307, '怀', 'district'), (130730, 1307, '怀', 'district'), (130731, 1307, '涿鹿', 'district'), (130732, 1307, '', 'district'), (130771, 1307, '', 'district'), (130772, 1307, '', 'district'), (130773, 1307, '', 'district'), (130802, 1308, '', 'district'), (130803, 1308, '', 'district'), (130804, 1308, '', 'district'), (130821, 1308, '', 'district'), (130822, 1308, '', 'district'), (130824, 1308, '', 'district'), (130825, 1308, '', 'district'), (130826, 1308, '', 'district'), (130827, 1308, '', 'district'), (130828, 1308, '', 'district'), (130871, 1308, '', 'district'), (130881, 1308, '', 'district'), (130902, 1309, '', 'district'), (130903, 1309, '', 'district'), (130921, 1309, '', 'district'), (130922, 1309, '', 'district'), (130923, 1309, '', 'district'), (130924, 1309, '', 'district'), (130925, 1309, '', 'district'), (130926, 1309, '', 'district'), (130927, 1309, '', 'district'), (130928, 1309, '', 'district'), (130929, 1309, '', 'district'), (130930, 1309, '', 'district'), (130971, 1309, '', 'district'), (130972, 1309, '', 'district'), (130973, 1309, '', 'district'), (130981, 1309, '', 'district'), (130982, 1309, '', 'district'), (130983, 1309, '', 'district'), (130984, 1309, '', 'district'), (131002, 1310, '', 'district'), (131003, 1310, '广', 'district'), (131022, 1310, '', 'district'), (131023, 1310, '', 'district'), (131024, 1310, '', 'district'), (131025, 1310, '', 'district'), (131026, 1310, '', 'district'), (131028, 1310, '', 'district'), (131071, 1310, '', 'district'), (131081, 1310, '', 'district'), (131082, 1310, '', 'district'), (131102, 1311, '', 'district'), (131103, 1311, '', 'district'), (131121, 1311, '', 'district'), (131122, 1311, '', 'district'), (131123, 1311, '', 'district'), (131124, 1311, '', 'district'), (131125, 1311, '', 'district'), (131126, 1311, '', 'district'), (131127, 1311, '', 'district'), (131128, 1311, '', 'district'), (131171, 1311, '', 'district'), (131172, 1311, '', 'district'), (131182, 1311, '', 'district'), (140105, 1401, '', 'district'), (140106, 1401, '', 'district'), (140107, 1401, '', 'district'), (140108, 1401, '', 'district'), (140109, 1401, '', 'district'), (140110, 1401, '', 'district'), (140121, 1401, '', 'district'), (140122, 1401, '', 'district'), (140123, 1401, '', 'district'), (140171, 1401, '西', 'district'), (140181, 1401, '', 'district'), (140212, 1402, '', 'district'), (140213, 1402, '', 'district'), (140214, 1402, '', 'district'), (140215, 1402, '', 'district'), (140221, 1402, '', 'district'), (140222, 1402, '', 'district'), (140223, 1402, '广', 'district'), (140224, 1402, '', 'district'), (140225, 1402, '', 'district'), (140226, 1402, '', 'district'), (140271, 1402, '西', 'district'), (140302, 1403, '', 'district'), (140303, 1403, '', 'district'), (140311, 1403, '', 'district'), (140321, 1403, '', 'district'), (140322, 1403, '', 'district'), (140403, 1404, '', 'district'), (140404, 1404, '', 'district'), (140405, 1404, '', 'district'), (140406, 1404, '', 'district'), (140423, 1404, '', 'district'), (140425, 1404, '', 'district'), (140426, 1404, '', 'district'), (140427, 1404, '', 'district'), (140428, 1404, '', 'district'), (140429, 1404, '', 'district'), (140430, 1404, '', 'district'), (140431, 1404, '', 'district'), (140471, 1404, '西', 'district'), (140502, 1405, '', 'district'), (140521, 1405, '', 'district'), (140522, 1405, '', 'district'), (140524, 1405, '', 'district'), (140525, 1405, '', 'district'), (140581, 1405, '', 'district'), (140602, 1406, '', 'district'), (140603, 1406, '', 'district'), (140621, 1406, '', 'district'), (140622, 1406, '', 'district'), (140623, 1406, '', 'district'), (140671, 1406, '西', 'district'), (140681, 1406, '怀', 'district'), (140702, 1407, '', 'district'), (140703, 1407, '', 'district'), (140721, 1407, '', 'district'), (140722, 1407, '', 'district'), (140723, 1407, '', 'district'), (140724, 1407, '', 'district'), (140725, 1407, '寿', 'district'), (140727, 1407, '', 'district'), (140728, 1407, '', 'district'), (140729, 1407, '', 'district'), (140781, 1407, '', 'district'), (140802, 1408, '', 'district'), (140821, 1408, '', 'district'), (140822, 1408, '', 'district'), (140823, 1408, '', 'district'), (140824, 1408, '', 'district'), (140825, 1408, '', 'district'), (140826, 1408, '', 'district'), (140827, 1408, '', 'district'), (140828, 1408, '', 'district'), (140829, 1408, '', 'district'), (140830, 1408, '', 'district'), (140881, 1408, '', 'district'), (140882, 1408, '', 'district'), (140902, 1409, '', 'district'), (140921, 1409, '', 'district'), (140922, 1409, '', 'district'), (140923, 1409, '', 'district'), (140924, 1409, '', 'district'), (140925, 1409, '', 'district'), (140926, 1409, '', 'district'), (140927, 1409, '', 'district'), (140928, 1409, '', 'district'), (140929, 1409, '', 'district'), (140930, 1409, '', 'district'), (140931, 1409, '', 'district'), (140932, 1409, '', 'district'), (140971, 1409, '', 'district'), (140981, 1409, '', 'district'), (141002, 1410, '', 'district'), (141021, 1410, '', 'district'), (141022, 1410, '', 'district'), (141023, 1410, '', 'district'), (141024, 1410, '', 'district'), (141025, 1410, '', 'district'), (141026, 1410, '', 'district'), (141027, 1410, '', 'district'), (141028, 1410, '', 'district'), (141029, 1410, '', 'district'), (141030, 1410, '', 'district'), (141031, 1410, '', 'district'), (141032, 1410, '', 'district'), (141033, 1410, '', 'district'), (141034, 1410, '西', 'district'), (141081, 1410, '', 'district'), (141082, 1410, '', 'district'), (141102, 1411, '', 'district'), (141121, 1411, '', 'district'), (141122, 1411, '', 'district'), (141123, 1411, '', 'district'), (141124, 1411, '', 'district'), (141125, 1411, '', 'district'), (141126, 1411, '', 'district'), (141127, 1411, '', 'district'), (141128, 1411, '', 'district'), (141129, 1411, '', 'district'), (141130, 1411, '', 'district'), (141181, 1411, '', 'district'), (141182, 1411, '', 'district'), (150102, 1501, '', 'district'), (150103, 1501, '', 'district'), (150104, 1501, '', 'district'), (150105, 1501, '', 'district'), (150121, 1501, '', 'district'), (150122, 1501, '', 'district'), (150123, 1501, '', 'district'), (150124, 1501, '', 'district'), (150125, 1501, '', 'district'), (150172, 1501, '', 'district'), (150202, 1502, '', 'district'), (150203, 1502, '', 'district'), (150204, 1502, '', 'district'), (150205, 1502, '', 'district'), (150206, 1502, '', 'district'), (150207, 1502, '', 'district'), (150221, 1502, '', 'district'), (150222, 1502, '', 'district'), (150223, 1502, '', 'district'), (150271, 1502, '', 'district'), (150302, 1503, '', 'district'), (150303, 1503, '', 'district'), (150304, 1503, '', 'district'), (150402, 1504, '', 'district'), (150403, 1504, '', 'district'), (150404, 1504, '', 'district'), (150421, 1504, '', 'district'), (150422, 1504, '', 'district'), (150423, 1504, '', 'district'), (150424, 1504, '西', 'district'), (150425, 1504, '', 'district'), (150426, 1504, '', 'district'), (150428, 1504, '', 'district'), (150429, 1504, '', 'district'), (150430, 1504, '', 'district'), (150502, 1505, '', 'district'), (150521, 1505, '', 'district'), (150522, 1505, '', 'district'), (150523, 1505, '', 'district'), (150524, 1505, '', 'district'), (150525, 1505, '', 'district'), (150526, 1505, '', 'district'), (150571, 1505, '', 'district'), (150581, 1505, '', 'district'), (150602, 1506, '', 'district'), (150603, 1506, '', 'district'), (150621, 1506, '', 'district'), (150622, 1506, '', 'district'), (150623, 1506, '', 'district'), (150624, 1506, '', 'district'), (150625, 1506, '', 'district'), (150626, 1506, '', 'district'), (150627, 1506, '', 'district'), (150702, 1507, '', 'district'), (150703, 1507, '', 'district'), (150721, 1507, '', 'district'), (150722, 1507, '', 'district'), (150723, 1507, '', 'district'), (150724, 1507, '', 'district'), (150725, 1507, '', 'district'), (150726, 1507, '', 'district'), (150727, 1507, '', 'district'), (150781, 1507, '', 'district'), (150782, 1507, '', 'district'), (150783, 1507, '', 'district'), (150784, 1507, '', 'district'), (150785, 1507, '', 'district'), (150802, 1508, '', 'district'), (150821, 1508, '', 'district'), (150822, 1508, '', 'district'), (150823, 1508, '', 'district'), (150824, 1508, '', 'district'), (150825, 1508, '', 'district'), (150826, 1508, '', 'district'), (150902, 1509, '', 'district'), (150921, 1509, '', 'district'), (150922, 1509, '', 'district'), (150923, 1509, '', 'district'), (150924, 1509, '', 'district'), (150925, 1509, '', 'district'), (150926, 1509, '', 'district'), (150927, 1509, '', 'district'), (150928, 1509, '', 'district'), (150929, 1509, '', 'district'), (150981, 1509, '', 'district'), (152201, 1522, '', 'district'), (152202, 1522, '', 'district'), (152221, 1522, '', 'district'), (152222, 1522, '', 'district'), (152223, 1522, '', 'district'), (152224, 1522, '', 'district'), (152501, 1525, '', 'district'), (152502, 1525, '', 'district'), (152522, 1525, '', 'district'), (152523, 1525, '', 'district'), (152524, 1525, '', 'district'), (152525, 1525, '', 'district'), (152526, 1525, '西', 'district'), (152527, 1525, '', 'district'), (152528, 1525, '', 'district'), (152529, 1525, '', 'district'), (152530, 1525, '', 'district'), (152531, 1525, '', 'district'), (152571, 1525, '', 'district'), (152921, 1529, '', 'district'), (152922, 1529, '', 'district'), (152923, 1529, '', 'district'), (152971, 1529, '', 'district'), (210102, 2101, '', 'district'), (210103, 2101, '', 'district'), (210104, 2101, '', 'district'), (210105, 2101, '', 'district'), (210106, 2101, '西', 'district'), (210111, 2101, '', 'district'), (210112, 2101, '', 'district'), (210113, 2101, '', 'district'), (210114, 2101, '', 'district'), (210115, 2101, '', 'district'), (210123, 2101, '', 'district'), (210124, 2101, '', 'district'), (210181, 2101, '', 'district'), (210202, 2102, '', 'district'), (210203, 2102, '西', 'district'), (210204, 2102, '', 'district'), (210211, 2102, '', 'district'), (210212, 2102, '', 'district'), (210213, 2102, '', 'district'), (210214, 2102, '', 'district'), (210224, 2102, '', 'district'), (210281, 2102, '', 'district'), (210283, 2102, '', 'district'), (210302, 2103, '', 'district'), (210303, 2103, '西', 'district'), (210304, 2103, '', 'district'), (210311, 2103, '', 'district'), (210321, 2103, '', 'district'), (210323, 2103, '', 'district'), (210381, 2103, '', 'district'), (210402, 2104, '', 'district'), (210403, 2104, '', 'district'), (210404, 2104, '', 'district'), (210411, 2104, '', 'district'), (210421, 2104, '', 'district'), (210422, 2104, '', 'district'), (210423, 2104, '', 'district'), (210502, 2105, '', 'district'), (210503, 2105, '', 'district'), (210504, 2105, '', 'district'), (210505, 2105, '', 'district'), (210521, 2105, '', 'district'), (210522, 2105, '', 'district'), (210602, 2106, '', 'district'), (210603, 2106, '', 'district'), (210604, 2106, '', 'district'), (210624, 2106, '', 'district'), (210681, 2106, '', 'district'), (210682, 2106, '', 'district'), (210702, 2107, '', 'district'), (210703, 2107, '', 'district'), (210711, 2107, '', 'district'), (210726, 2107, '', 'district'), (210727, 2107, '', 'district'), (210781, 2107, '', 'district'), (210782, 2107, '', 'district'), (210802, 2108, '', 'district'), (210803, 2108, '西', 'district'), (210804, 2108, '', 'district'), (210811, 2108, '', 'district'), (210881, 2108, '', 'district'), (210882, 2108, '', 'district'), (210902, 2109, '', 'district'), (210903, 2109, '', 'district'), (210904, 2109, '', 'district'), (210905, 2109, '', 'district'), (210911, 2109, '', 'district'), (210921, 2109, '', 'district'), (210922, 2109, '', 'district'), (211002, 2110, '', 'district'), (211003, 2110, '', 'district'), (211004, 2110, '', 'district'), (211005, 2110, '', 'district'), (211011, 2110, '', 'district'), (211021, 2110, '', 'district'), (211081, 2110, '', 'district'), (211102, 2111, '', 'district'), (211103, 2111, '', 'district'), (211104, 2111, '', 'district'), (211122, 2111, '', 'district'), (211202, 2112, '', 'district'), (211204, 2112, '', 'district'), (211221, 2112, '', 'district'), (211223, 2112, '西', 'district'), (211224, 2112, '', 'district'), (211281, 2112, '', 'district'), (211282, 2112, '', 'district'), (211302, 2113, '', 'district'), (211303, 2113, '', 'district'), (211321, 2113, '', 'district'), (211322, 2113, '', 'district'), (211324, 2113, '', 'district'), (211381, 2113, '', 'district'), (211382, 2113, '', 'district'), (211402, 2114, '', 'district'), (211403, 2114, '', 'district'), (211404, 2114, '', 'district'), (211421, 2114, '', 'district'), (211422, 2114, '', 'district'), (211481, 2114, '', 'district'), (220102, 2201, '', 'district'), (220103, 2201, '', 'district'), (220104, 2201, '', 'district'), (220105, 2201, '', 'district'), (220106, 2201, '绿', 'district'), (220112, 2201, '', 'district'), (220113, 2201, '', 'district'), (220122, 2201, '', 'district'), (220171, 2201, '', 'district'), (220172, 2201, '', 'district'), (220173, 2201, '', 'district'), (220174, 2201, '', 'district'), (220182, 2201, '', 'district'), (220183, 2201, '', 'district'), (220184, 2201, '', 'district'), (220202, 2202, '', 'district'), (220203, 2202, '', 'district'), (220204, 2202, '', 'district'), (220211, 2202, '', 'district'), (220221, 2202, '', 'district'), (220271, 2202, '', 'district'), (220272, 2202, '', 'district'), (220273, 2202, '', 'district'), (220281, 2202, '', 'district'), (220282, 2202, '', 'district'), (220283, 2202, '', 'district'), (220284, 2202, '', 'district'), (220302, 2203, '西', 'district'), (220303, 2203, '', 'district'), (220322, 2203, '', 'district'), (220323, 2203, '', 'district'), (220382, 2203, '', 'district'), (220402, 2204, '', 'district'), (220403, 2204, '西', 'district'), (220421, 2204, '', 'district'), (220422, 2204, '', 'district'), (220502, 2205, '', 'district'), (220503, 2205, '', 'district'), (220521, 2205, '', 'district'), (220523, 2205, '', 'district'), (220524, 2205, '', 'district'), (220581, 2205, '', 'district'), (220582, 2205, '', 'district'), (220602, 2206, '', 'district'), (220605, 2206, '', 'district'), (220621, 2206, '', 'district'), (220622, 2206, '', 'district'), (220623, 2206, '', 'district'), (220681, 2206, '', 'district'), (220702, 2207, '', 'district'), (220721, 2207, '', 'district'), (220722, 2207, '', 'district'), (220723, 2207, '', 'district'), (220771, 2207, '', 'district'), (220781, 2207, '', 'district'), (220802, 2208, '', 'district'), (220821, 2208, '', 'district'), (220822, 2208, '', 'district'), (220871, 2208, '', 'district'), (220881, 2208, '', 'district'), (220882, 2208, '', 'district'), (222401, 2224, '', 'district'), (222402, 2224, '', 'district'), (222403, 2224, '', 'district'), (222404, 2224, '', 'district'), (222405, 2224, '', 'district'), (222406, 2224, '', 'district'), (222424, 2224, '', 'district'), (222426, 2224, '', 'district'), (230102, 2301, '', 'district'), (230103, 2301, '', 'district'), (230104, 2301, '', 'district'), (230108, 2301, '', 'district'), (230109, 2301, '', 'district'), (230110, 2301, '', 'district'), (230111, 2301, '', 'district'), (230112, 2301, '', 'district'), (230113, 2301, '', 'district'), (230123, 2301, '', 'district'), (230124, 2301, '', 'district'), (230125, 2301, '', 'district'), (230126, 2301, '', 'district'), (230127, 2301, '', 'district'), (230128, 2301, '', 'district'), (230129, 2301, '寿', 'district'), (230183, 2301, '', 'district'), (230184, 2301, '', 'district'), (230202, 2302, '', 'district'), (230203, 2302, '', 'district'), (230204, 2302, '', 'district'), (230205, 2302, '', 'district'), (230206, 2302, '', 'district'), (230207, 2302, '', 'district'), (230208, 2302, '', 'district'), (230221, 2302, '', 'district'), (230223, 2302, '', 'district'), (230224, 2302, '', 'district'), (230225, 2302, '', 'district'), (230227, 2302, '', 'district'), (230229, 2302, '', 'district'), (230230, 2302, '', 'district'), (230231, 2302, '', 'district'), (230281, 2302, '', 'district'), (230302, 2303, '', 'district'), (230303, 2303, '', 'district'), (230304, 2303, '', 'district'), (230305, 2303, '', 'district'), (230306, 2303, '', 'district'), (230307, 2303, '', 'district'), (230321, 2303, '', 'district'), (230381, 2303, '', 'district'), (230382, 2303, '', 'district'), (230402, 2304, '', 'district'), (230403, 2304, '', 'district'), (230404, 2304, '', 'district'), (230405, 2304, '', 'district'), (230406, 2304, '', 'district'), (230407, 2304, '', 'district'), (230421, 2304, '', 'district'), (230422, 2304, '', 'district'), (230502, 2305, '', 'district'), (230503, 2305, '', 'district'), (230505, 2305, '', 'district'), (230506, 2305, '', 'district'), (230521, 2305, '', 'district'), (230522, 2305, '', 'district'), (230523, 2305, '', 'district'), (230524, 2305, '', 'district'), (230602, 2306, '', 'district'), (230603, 2306, '', 'district'), (230604, 2306, '', 'district'), (230605, 2306, '', 'district'), (230606, 2306, '', 'district'), (230621, 2306, '', 'district'), (230622, 2306, '', 'district'), (230623, 2306, '', 'district'), (230624, 2306, '', 'district'), (230671, 2306, '', 'district'), (230717, 2307, '', 'district'), (230718, 2307, '', 'district'), (230719, 2307, '', 'district'), (230722, 2307, '', 'district'), (230723, 2307, '', 'district'), (230724, 2307, '', 'district'), (230725, 2307, '', 'district'), (230726, 2307, '', 'district'), (230751, 2307, '', 'district'), (230781, 2307, '', 'district'), (230803, 2308, '', 'district'), (230804, 2308, '', 'district'), (230805, 2308, '', 'district'), (230811, 2308, '', 'district'), (230822, 2308, '', 'district'), (230826, 2308, '', 'district'), (230828, 2308, '', 'district'), (230881, 2308, '', 'district'), (230882, 2308, '', 'district'), (230883, 2308, '', 'district'), (230902, 2309, '', 'district'), (230903, 2309, '', 'district'), (230904, 2309, '', 'district'), (230921, 2309, '', 'district'), (231002, 2310, '', 'district'), (231003, 2310, '', 'district'), (231004, 2310, '', 'district'), (231005, 2310, '西', 'district'), (231025, 2310, '', 'district'), (231071, 2310, '', 'district'), (231081, 2310, '', 'district'), (231083, 2310, '', 'district'), (231084, 2310, '', 'district'), (231085, 2310, '', 'district'), (231086, 2310, '', 'district'), (231102, 2311, '', 'district'), (231123, 2311, '', 'district'), (231124, 2311, '', 'district'), (231181, 2311, '', 'district'), (231182, 2311, '', 'district'), (231183, 2311, '', 'district'), (231202, 2312, '', 'district'), (231221, 2312, '', 'district'), (231222, 2312, '西', 'district'), (231223, 2312, '', 'district'), (231224, 2312, '', 'district'), (231225, 2312, '', 'district'), (231226, 2312, '', 'district'), (231281, 2312, '', 'district'), (231282, 2312, '', 'district'), (231283, 2312, '', 'district'), (232701, 2327, '', 'district'), (232721, 2327, '', 'district'), (232722, 2327, '', 'district'), (232761, 2327, '', 'district'), (232762, 2327, '', 'district'), (232763, 2327, '', 'district'), (232764, 2327, '', 'district'), (310101, 3101, '', 'district'), (310104, 3101, '', 'district'), (310105, 3101, '', 'district'), (310106, 3101, '', 'district'), (310107, 3101, '', 'district'), (310109, 3101, '', 'district'), (310110, 3101, '', 'district'), (310112, 3101, '', 'district'), (310113, 3101, '', 'district'), (310114, 3101, '', 'district'), (310115, 3101, '', 'district'), (310116, 3101, '', 'district'), (310117, 3101, '', 'district'), (310118, 3101, '', 'district'), (310120, 3101, '', 'district'), (310151, 3101, '', 'district'), (320102, 3201, '', 'district'), (320104, 3201, '', 'district'), (320105, 3201, '', 'district'), (320106, 3201, '', 'district'), (320111, 3201, '', 'district'), (320113, 3201, '', 'district'), (320114, 3201, '', 'district'), (320115, 3201, '', 'district'), (320116, 3201, '', 'district'), (320117, 3201, '', 'district'), (320118, 3201, '', 'district'), (320205, 3202, '', 'district'), (320206, 3202, '', 'district'), (320211, 3202, '', 'district'), (320213, 3202, '', 'district'), (320214, 3202, '', 'district'), (320281, 3202, '', 'district'), (320282, 3202, '', 'district'), (320302, 3203, '', 'district'), (320303, 3203, '', 'district'), (320305, 3203, '', 'district'), (320311, 3203, '', 'district'), (320312, 3203, '', 'district'), (320321, 3203, '', 'district'), (320322, 3203, '', 'district'), (320324, 3203, '', 'district'), (320371, 3203, '', 'district'), (320381, 3203, '', 'district'), (320382, 3203, '', 'district'), (320402, 3204, '', 'district'), (320404, 3204, '', 'district'), (320411, 3204, '', 'district'), (320412, 3204, '', 'district'), (320413, 3204, '', 'district'), (320481, 3204, '', 'district'), (320505, 3205, '', 'district'), (320506, 3205, '', 'district'), (320507, 3205, '', 'district'), (320508, 3205, '', 'district'), (320509, 3205, '', 'district'), (320571, 3205, '', 'district'), (320581, 3205, '', 'district'), (320582, 3205, '', 'district'), (320583, 3205, '', 'district'), (320585, 3205, '', 'district'), (320612, 3206, '', 'district'), (320613, 3206, '', 'district'), (320614, 3206, '', 'district'), (320623, 3206, '', 'district'), (320671, 3206, '', 'district'), (320681, 3206, '', 'district'), (320682, 3206, '', 'district'), (320685, 3206, '', 'district'), (320703, 3207, '', 'district'), (320706, 3207, '', 'district'), (320707, 3207, '', 'district'), (320722, 3207, '', 'district'), (320723, 3207, '', 'district'), (320724, 3207, '', 'district'), (320771, 3207, '', 'district'), (320772, 3207, '', 'district'), (320803, 3208, '', 'district'), (320804, 3208, '', 'district'), (320812, 3208, '', 'district'), (320813, 3208, '', 'district'), (320826, 3208, '', 'district'), (320830, 3208, '', 'district'), (320831, 3208, '', 'district'), (320871, 3208, '', 'district'), (320902, 3209, '', 'district'), (320903, 3209, '', 'district'), (320904, 3209, '', 'district'), (320921, 3209, '', 'district'), (320922, 3209, '', 'district'), (320923, 3209, '', 'district'), (320924, 3209, '', 'district'), (320925, 3209, '', 'district'), (320971, 3209, '', 'district'), (320981, 3209, '', 'district'), (321002, 3210, '广', 'district'), (321003, 3210, '', 'district'), (321012, 3210, '', 'district'), (321023, 3210, '', 'district'), (321071, 3210, '', 'district'), (321081, 3210, '', 'district'), (321084, 3210, '', 'district'), (321102, 3211, '', 'district'), (321111, 3211, '', 'district'), (321112, 3211, '', 'district'), (321171, 3211, '', 'district'), (321181, 3211, '', 'district'), (321182, 3211, '', 'district'), (321183, 3211, '', 'district'), (321202, 3212, '', 'district'), (321203, 3212, '', 'district'), (321204, 3212, '', 'district'), (321271, 3212, '', 'district'), (321281, 3212, '', 'district'), (321282, 3212, '', 'district'), (321283, 3212, '', 'district'), (321302, 3213, '宿', 'district'), (321311, 3213, '宿', 'district'), (321322, 3213, '', 'district'), (321323, 3213, '', 'district'), (321324, 3213, '', 'district'), (321371, 3213, '宿', 'district'), (330102, 3301, '', 'district'), (330105, 3301, '', 'district'), (330106, 3301, '西', 'district'), (330108, 3301, '', 'district'), (330109, 3301, '', 'district'), (330110, 3301, '', 'district'), (330111, 3301, '', 'district'), (330112, 3301, '', 'district'), (330113, 3301, '', 'district'), (330114, 3301, '', 'district'), (330122, 3301, '', 'district'), (330127, 3301, '', 'district'), (330182, 3301, '', 'district'), (330203, 3302, '', 'district'), (330205, 3302, '', 'district'), (330206, 3302, '', 'district'), (330211, 3302, '', 'district'), (330212, 3302, '', 'district'), (330213, 3302, '', 'district'), (330225, 3302, '', 'district'), (330226, 3302, '', 'district'), (330281, 3302, '', 'district'), (330282, 3302, '', 'district'), (330302, 3303, '鹿', 'district'), (330303, 3303, '', 'district'), (330304, 3303, '', 'district'), (330305, 3303, '', 'district'), (330324, 3303, '', 'district'), (330326, 3303, '', 'district'), (330327, 3303, '', 'district'), (330328, 3303, '', 'district'), (330329, 3303, '', 'district'), (330371, 3303, '', 'district'), (330381, 3303, '', 'district'), (330382, 3303, '', 'district'), (330383, 3303, '', 'district'), (330402, 3304, '', 'district'), (330411, 3304, '', 'district'), (330421, 3304, '', 'district'), (330424, 3304, '', 'district'), (330481, 3304, '', 'district'), (330482, 3304, '', 'district'), (330483, 3304, '', 'district'), (330502, 3305, '', 'district'), (330503, 3305, '', 'district'), (330521, 3305, '', 'district'), (330522, 3305, '', 'district'), (330523, 3305, '', 'district'), (330602, 3306, '', 'district'), (330603, 3306, '', 'district'), (330604, 3306, '', 'district'), (330624, 3306, '', 'district'), (330681, 3306, '', 'district'), (330683, 3306, '', 'district'), (330702, 3307, '', 'district'), (330703, 3307, '', 'district'), (330723, 3307, '', 'district'), (330726, 3307, '', 'district'), (330727, 3307, '', 'district'), (330781, 3307, '', 'district'), (330782, 3307, '', 'district'), (330783, 3307, '', 'district'), (330784, 3307, '', 'district'), (330802, 3308, '', 'district'), (330803, 3308, '', 'district'), (330822, 3308, '', 'district'), (330824, 3308, '', 'district'), (330825, 3308, '', 'district'), (330881, 3308, '', 'district'), (330902, 3309, '', 'district'), (330903, 3309, '', 'district'), (330921, 3309, '', 'district'), (330922, 3309, '', 'district'), (331002, 3310, '', 'district'), (331003, 3310, '', 'district'), (331004, 3310, '', 'district'), (331022, 3310, '', 'district'), (331023, 3310, '', 'district'), (331024, 3310, '', 'district'), (331081, 3310, '', 'district'), (331082, 3310, '', 'district'), (331083, 3310, '', 'district'), (331102, 3311, '', 'district'), (331121, 3311, '', 'district'), (331122, 3311, '', 'district'), (331123, 3311, '', 'district'), (331124, 3311, '', 'district'), (331125, 3311, '', 'district'), (331126, 3311, '', 'district'), (331127, 3311, '', 'district'), (331181, 3311, '', 'district'), (340102, 3401, '', 'district'), (340103, 3401, '', 'district'), (340104, 3401, '', 'district'), (340111, 3401, '', 'district'), (340121, 3401, '', 'district'), (340122, 3401, '', 'district'), (340123, 3401, '西', 'district'), (340124, 3401, '', 'district'), (340171, 3401, '', 'district'), (340172, 3401, '', 'district'), (340173, 3401, '', 'district'), (340181, 3401, '', 'district'), (340202, 3402, '', 'district'), (340207, 3402, '', 'district'), (340209, 3402, '', 'district'), (340210, 3402, '', 'district'), (340212, 3402, '', 'district'), (340223, 3402, '', 'district'), (340271, 3402, '', 'district'), (340272, 3402, '', 'district'), (340281, 3402, '', 'district'), (340302, 3403, '', 'district'), (340303, 3403, '', 'district'), (340304, 3403, '', 'district'), (340311, 3403, '', 'district'), (340321, 3403, '怀', 'district'), (340322, 3403, '', 'district'), (340323, 3403, '', 'district'), (340371, 3403, '', 'district'), (340372, 3403, '', 'district'), (340402, 3404, '', 'district'), (340403, 3404, '', 'district'), (340404, 3404, '', 'district'), (340405, 3404, '', 'district'), (340406, 3404, '', 'district'), (340421, 3404, '', 'district'), (340422, 3404, '寿', 'district'), (340503, 3405, '', 'district'), (340504, 3405, '', 'district'), (340506, 3405, '', 'district'), (340521, 3405, '', 'district'), (340522, 3405, '', 'district'), (340523, 3405, '', 'district'), (340602, 3406, '', 'district'), (340603, 3406, '', 'district'), (340604, 3406, '', 'district'), (340621, 3406, '', 'district'), (340705, 3407, '', 'district'), (340706, 3407, '', 'district'), (340711, 3407, '', 'district'), (340722, 3407, '', 'district'), (340802, 3408, '', 'district'), (340803, 3408, '', 'district'), (340811, 3408, '', 'district'), (340822, 3408, '怀', 'district'), (340825, 3408, '', 'district'), (340826, 3408, '宿', 'district'), (340827, 3408, '', 'district'), (340828, 3408, '西', 'district'), (340871, 3408, '', 'district'), (340881, 3408, '', 'district'), (340882, 3408, '', 'district'), (341002, 3410, '', 'district'), (341003, 3410, '', 'district'), (341004, 3410, '', 'district'), (341021, 3410, '', 'district'), (341022, 3410, '', 'district'), (341023, 3410, '', 'district'), (341024, 3410, '', 'district'), (341102, 3411, '', 'district'), (341103, 3411, '', 'district'), (341122, 3411, '', 'district'), (341124, 3411, '', 'district'), (341125, 3411, '', 'district'), (341126, 3411, '', 'district'), (341171, 3411, '', 'district'), (341172, 3411, '', 'district'), (341181, 3411, '', 'district'), (341182, 3411, '', 'district'), (341202, 3412, '', 'district'), (341203, 3412, '', 'district'), (341204, 3412, '', 'district'), (341221, 3412, '', 'district'), (341222, 3412, '', 'district'), (341225, 3412, '', 'district'), (341226, 3412, '', 'district'), (341271, 3412, '', 'district'), (341272, 3412, '', 'district'), (341282, 3412, '', 'district'), (341302, 3413, '', 'district'), (341321, 3413, '', 'district'), (341322, 3413, '', 'district'), (341323, 3413, '', 'district'), (341324, 3413, '', 'district'), (341371, 3413, '宿', 'district'), (341372, 3413, '宿', 'district'), (341502, 3415, '', 'district'), (341503, 3415, '', 'district'), (341504, 3415, '', 'district'), (341522, 3415, '', 'district'), (341523, 3415, '', 'district'), (341524, 3415, '', 'district'), (341525, 3415, '', 'district'), (341602, 3416, '', 'district'), (341621, 3416, '', 'district'), (341622, 3416, '', 'district'), (341623, 3416, '', 'district'), (341702, 3417, '', 'district'), (341721, 3417, '', 'district'), (341722, 3417, '', 'district'), (341723, 3417, '', 'district'), (341802, 3418, '', 'district'), (341821, 3418, '', 'district'), (341823, 3418, '', 'district'), (341824, 3418, '', 'district'), (341825, 3418, '', 'district'), (341871, 3418, '', 'district'), (341881, 3418, '', 'district'), (341882, 3418, '广', 'district'), (350102, 3501, '', 'district'), (350103, 3501, '', 'district'), (350104, 3501, '', 'district'), (350105, 3501, '', 'district'), (350111, 3501, '', 'district'), (350112, 3501, '', 'district'), (350121, 3501, '', 'district'), (350122, 3501, '', 'district'), (350123, 3501, '', 'district'), (350124, 3501, '', 'district'), (350125, 3501, '', 'district'), (350128, 3501, '', 'district'), (350181, 3501, '', 'district'), (350203, 3502, '', 'district'), (350205, 3502, '', 'district'), (350206, 3502, '', 'district'), (350211, 3502, '', 'district'), (350212, 3502, '', 'district'), (350213, 3502, '', 'district'), (350302, 3503, '', 'district'), (350303, 3503, '', 'district'), (350304, 3503, '', 'district'), (350305, 3503, '屿', 'district'), (350322, 3503, '', 'district'), (350404, 3504, '', 'district'), (350405, 3504, '', 'district'), (350421, 3504, '', 'district'), (350423, 3504, '', 'district'), (350424, 3504, '', 'district'), (350425, 3504, '', 'district'), (350426, 3504, '', 'district'), (350428, 3504, '', 'district'), (350429, 3504, '', 'district'), (350430, 3504, '', 'district'), (350481, 3504, '', 'district'), (350502, 3505, '', 'district'), (350503, 3505, '', 'district'), (350504, 3505, '', 'district'), (350505, 3505, '', 'district'), (350521, 3505, '', 'district'), (350524, 3505, '', 'district'), (350525, 3505, '', 'district'), (350526, 3505, '', 'district'), (350527, 3505, '', 'district'), (350581, 3505, '', 'district'), (350582, 3505, '', 'district'), (350583, 3505, '', 'district'), (350602, 3506, '', 'district'), (350603, 3506, '', 'district'), (350604, 3506, '', 'district'), (350605, 3506, '', 'district'), (350622, 3506, '', 'district'), (350623, 3506, '', 'district'), (350624, 3506, '', 'district'), (350626, 3506, '', 'district'), (350627, 3506, '', 'district'), (350628, 3506, '', 'district'), (350629, 3506, '', 'district'), (350702, 3507, '', 'district'), (350703, 3507, '', 'district'), (350721, 3507, '', 'district'), (350722, 3507, '', 'district'), (350723, 3507, '', 'district'), (350724, 3507, '', 'district'), (350725, 3507, '', 'district'), (350781, 3507, '', 'district'), (350782, 3507, '', 'district'), (350783, 3507, '', 'district'), (350802, 3508, '', 'district'), (350803, 3508, '', 'district'), (350821, 3508, '', 'district'), (350823, 3508, '', 'district'), (350824, 3508, '', 'district'), (350825, 3508, '', 'district'), (350881, 3508, '', 'district'), (350902, 3509, '', 'district'), (350921, 3509, '', 'district'), (350922, 3509, '', 'district'), (350923, 3509, '', 'district'), (350924, 3509, '寿', 'district'), (350925, 3509, '', 'district'), (350926, 3509, '', 'district'), (350981, 3509, '', 'district'), (350982, 3509, '', 'district'), (360102, 3601, '', 'district'), (360103, 3601, '西', 'district'), (360104, 3601, '', 'district'), (360111, 3601, '', 'district'), (360112, 3601, '', 'district'), (360113, 3601, '', 'district'), (360121, 3601, '', 'district'), (360123, 3601, '', 'district'), (360124, 3601, '', 'district'), (360202, 3602, '', 'district'), (360203, 3602, '', 'district'), (360222, 3602, '', 'district'), (360281, 3602, '', 'district'), (360302, 3603, '', 'district'), (360313, 3603, '', 'district'), (360321, 3603, '', 'district'), (360322, 3603, '', 'district'), (360323, 3603, '', 'district'), (360402, 3604, '', 'district'), (360403, 3604, '', 'district'), (360404, 3604, '', 'district');
INSERT INTO `__PREFIX__shopro_data_area` (`id`, `pid`, `name`, `level`) VALUES (360423, 3604, '', 'district'), (360424, 3604, '', 'district'), (360425, 3604, '', 'district'), (360426, 3604, '', 'district'), (360428, 3604, '', 'district'), (360429, 3604, '', 'district'), (360430, 3604, '', 'district'), (360481, 3604, '', 'district'), (360482, 3604, '', 'district'), (360483, 3604, '', 'district'), (360502, 3605, '', 'district'), (360521, 3605, '', 'district'), (360602, 3606, '', 'district'), (360603, 3606, '', 'district'), (360681, 3606, '', 'district'), (360702, 3607, '', 'district'), (360703, 3607, '', 'district'), (360704, 3607, '', 'district'), (360722, 3607, '', 'district'), (360723, 3607, '', 'district'), (360724, 3607, '', 'district'), (360725, 3607, '', 'district'), (360726, 3607, '', 'district'), (360728, 3607, '', 'district'), (360729, 3607, '', 'district'), (360730, 3607, '', 'district'), (360731, 3607, '', 'district'), (360732, 3607, '', 'district'), (360733, 3607, '', 'district'), (360734, 3607, '', 'district'), (360735, 3607, '', 'district'), (360781, 3607, '', 'district'), (360783, 3607, '', 'district'), (360802, 3608, '', 'district'), (360803, 3608, '', 'district'), (360821, 3608, '', 'district'), (360822, 3608, '', 'district'), (360823, 3608, '', 'district'), (360824, 3608, '', 'district'), (360825, 3608, '', 'district'), (360826, 3608, '', 'district'), (360827, 3608, '', 'district'), (360828, 3608, '', 'district'), (360829, 3608, '', 'district'), (360830, 3608, '', 'district'), (360881, 3608, '', 'district'), (360902, 3609, '', 'district'), (360921, 3609, '', 'district'), (360922, 3609, '', 'district'), (360923, 3609, '', 'district'), (360924, 3609, '', 'district'), (360925, 3609, '', 'district'), (360926, 3609, '', 'district'), (360981, 3609, '', 'district'), (360982, 3609, '', 'district'), (360983, 3609, '', 'district'), (361002, 3610, '', 'district'), (361003, 3610, '', 'district'), (361021, 3610, '', 'district'), (361022, 3610, '', 'district'), (361023, 3610, '', 'district'), (361024, 3610, '', 'district'), (361025, 3610, '', 'district'), (361026, 3610, '', 'district'), (361027, 3610, '', 'district'), (361028, 3610, '', 'district'), (361030, 3610, '广', 'district'), (361102, 3611, '', 'district'), (361103, 3611, '广', 'district'), (361104, 3611, '广', 'district'), (361123, 3611, '', 'district'), (361124, 3611, '', 'district'), (361125, 3611, '', 'district'), (361126, 3611, '', 'district'), (361127, 3611, '', 'district'), (361128, 3611, '', 'district'), (361129, 3611, '', 'district'), (361130, 3611, '', 'district'), (361181, 3611, '', 'district'), (370102, 3701, '', 'district'), (370103, 3701, '', 'district'), (370104, 3701, '', 'district'), (370105, 3701, '', 'district'), (370112, 3701, '', 'district'), (370113, 3701, '', 'district'), (370114, 3701, '', 'district'), (370115, 3701, '', 'district'), (370116, 3701, '', 'district'), (370117, 3701, '', 'district'), (370124, 3701, '', 'district'), (370126, 3701, '', 'district'), (370171, 3701, '', 'district'), (370202, 3702, '', 'district'), (370203, 3702, '', 'district'), (370211, 3702, '', 'district'), (370212, 3702, '', 'district'), (370213, 3702, '', 'district'), (370214, 3702, '', 'district'), (370215, 3702, '', 'district'), (370271, 3702, '', 'district'), (370281, 3702, '', 'district'), (370283, 3702, '', 'district'), (370285, 3702, '西', 'district'), (370302, 3703, '', 'district'), (370303, 3703, '', 'district'), (370304, 3703, '', 'district'), (370305, 3703, '', 'district'), (370306, 3703, '', 'district'), (370321, 3703, '', 'district'), (370322, 3703, '', 'district'), (370323, 3703, '', 'district'), (370402, 3704, '', 'district'), (370403, 3704, '', 'district'), (370404, 3704, '', 'district'), (370405, 3704, '', 'district'), (370406, 3704, '', 'district'), (370481, 3704, '', 'district'), (370502, 3705, '', 'district'), (370503, 3705, '', 'district'), (370505, 3705, '', 'district'), (370522, 3705, '', 'district'), (370523, 3705, '广', 'district'), (370571, 3705, '', 'district'), (370572, 3705, '', 'district'), (370602, 3706, '', 'district'), (370611, 3706, '', 'district'), (370612, 3706, '', 'district'), (370613, 3706, '', 'district'), (370614, 3706, '', 'district'), (370671, 3706, '', 'district'), (370672, 3706, '', 'district'), (370681, 3706, '', 'district'), (370682, 3706, '', 'district'), (370683, 3706, '', 'district'), (370685, 3706, '', 'district'), (370686, 3706, '', 'district'), (370687, 3706, '', 'district'), (370702, 3707, '', 'district'), (370703, 3707, '', 'district'), (370704, 3707, '', 'district'), (370705, 3707, '', 'district'), (370724, 3707, '', 'district'), (370725, 3707, '', 'district'), (370772, 3707, '', 'district'), (370781, 3707, '', 'district'), (370782, 3707, '', 'district'), (370783, 3707, '寿', 'district'), (370784, 3707, '', 'district'), (370785, 3707, '', 'district'), (370786, 3707, '', 'district'), (370811, 3708, '', 'district'), (370812, 3708, '', 'district'), (370826, 3708, '', 'district'), (370827, 3708, '', 'district'), (370828, 3708, '', 'district'), (370829, 3708, '', 'district'), (370830, 3708, '', 'district'), (370831, 3708, '', 'district'), (370832, 3708, '', 'district'), (370871, 3708, '', 'district'), (370881, 3708, '', 'district'), (370883, 3708, '', 'district'), (370902, 3709, '', 'district'), (370911, 3709, '', 'district'), (370921, 3709, '', 'district'), (370923, 3709, '', 'district'), (370982, 3709, '', 'district'), (370983, 3709, '', 'district'), (371002, 3710, '', 'district'), (371003, 3710, '', 'district'), (371071, 3710, '', 'district'), (371072, 3710, '', 'district'), (371073, 3710, '', 'district'), (371082, 3710, '', 'district'), (371083, 3710, '', 'district'), (371102, 3711, '', 'district'), (371103, 3711, '', 'district'), (371121, 3711, '', 'district'), (371122, 3711, '', 'district'), (371171, 3711, '', 'district'), (371302, 3713, '', 'district'), (371311, 3713, '', 'district'), (371312, 3713, '', 'district'), (371321, 3713, '', 'district'), (371322, 3713, '', 'district'), (371323, 3713, '', 'district'), (371324, 3713, '', 'district'), (371325, 3713, '', 'district'), (371326, 3713, '', 'district'), (371327, 3713, '', 'district'), (371328, 3713, '', 'district'), (371329, 3713, '', 'district'), (371371, 3713, '', 'district'), (371402, 3714, '', 'district'), (371403, 3714, '', 'district'), (371422, 3714, '', 'district'), (371423, 3714, '', 'district'), (371424, 3714, '', 'district'), (371425, 3714, '', 'district'), (371426, 3714, '', 'district'), (371427, 3714, '', 'district'), (371428, 3714, '', 'district'), (371471, 3714, '', 'district'), (371472, 3714, '', 'district'), (371481, 3714, '', 'district'), (371482, 3714, '', 'district'), (371502, 3715, '', 'district'), (371503, 3715, '', 'district'), (371521, 3715, '', 'district'), (371522, 3715, '', 'district'), (371524, 3715, '', 'district'), (371525, 3715, '', 'district'), (371526, 3715, '', 'district'), (371581, 3715, '', 'district'), (371602, 3716, '', 'district'), (371603, 3716, '', 'district'), (371621, 3716, '', 'district'), (371622, 3716, '', 'district'), (371623, 3716, '', 'district'), (371625, 3716, '', 'district'), (371681, 3716, '', 'district'), (371702, 3717, '', 'district'), (371703, 3717, '', 'district'), (371721, 3717, '', 'district'), (371722, 3717, '', 'district'), (371723, 3717, '', 'district'), (371724, 3717, '', 'district'), (371725, 3717, '', 'district'), (371726, 3717, '', 'district'), (371728, 3717, '', 'district'), (371771, 3717, '', 'district'), (371772, 3717, '', 'district'), (410102, 4101, '', 'district'), (410103, 4101, '', 'district'), (410104, 4101, '', 'district'), (410105, 4101, '', 'district'), (410106, 4101, '', 'district'), (410108, 4101, '', 'district'), (410122, 4101, '', 'district'), (410170, 4101, '', 'district'), (410171, 4101, '', 'district'), (410172, 4101, '', 'district'), (410173, 4101, '', 'district'), (410181, 4101, '', 'district'), (410182, 4101, '', 'district'), (410183, 4101, '', 'district'), (410184, 4101, '', 'district'), (410185, 4101, '', 'district'), (410202, 4102, '', 'district'), (410203, 4102, '', 'district'), (410204, 4102, '', 'district'), (410205, 4102, '', 'district'), (410212, 4102, '', 'district'), (410221, 4102, '', 'district'), (410222, 4102, '', 'district'), (410223, 4102, '', 'district'), (410225, 4102, '', 'district'), (410302, 4103, '', 'district'), (410303, 4103, '西', 'district'), (410304, 4103, '', 'district'), (410305, 4103, '西', 'district'), (410307, 4103, '', 'district'), (410308, 4103, '', 'district'), (410311, 4103, '', 'district'), (410323, 4103, '', 'district'), (410324, 4103, '', 'district'), (410325, 4103, '', 'district'), (410326, 4103, '', 'district'), (410327, 4103, '', 'district'), (410328, 4103, '', 'district'), (410329, 4103, '', 'district'), (410371, 4103, '', 'district'), (410402, 4104, '', 'district'), (410403, 4104, '', 'district'), (410404, 4104, '', 'district'), (410411, 4104, '', 'district'), (410421, 4104, '', 'district'), (410422, 4104, '', 'district'), (410423, 4104, '', 'district'), (410425, 4104, '', 'district'), (410471, 4104, '', 'district'), (410472, 4104, '', 'district'), (410481, 4104, '', 'district'), (410482, 4104, '', 'district'), (410502, 4105, '', 'district'), (410503, 4105, '', 'district'), (410505, 4105, '', 'district'), (410506, 4105, '', 'district'), (410522, 4105, '', 'district'), (410523, 4105, '', 'district'), (410526, 4105, '', 'district'), (410527, 4105, '', 'district'), (410571, 4105, '', 'district'), (410581, 4105, '', 'district'), (410602, 4106, '', 'district'), (410603, 4106, '', 'district'), (410611, 4106, '', 'district'), (410621, 4106, '', 'district'), (410622, 4106, '', 'district'), (410671, 4106, '', 'district'), (410702, 4107, '', 'district'), (410703, 4107, '', 'district'), (410704, 4107, '', 'district'), (410711, 4107, '', 'district'), (410721, 4107, '', 'district'), (410724, 4107, '', 'district'), (410725, 4107, '', 'district'), (410726, 4107, '', 'district'), (410727, 4107, '', 'district'), (410771, 4107, '', 'district'), (410772, 4107, '', 'district'), (410773, 4107, '', 'district'), (410781, 4107, '', 'district'), (410782, 4107, '', 'district'), (410783, 4107, '', 'district'), (410802, 4108, '', 'district'), (410803, 4108, '', 'district'), (410804, 4108, '', 'district'), (410811, 4108, '', 'district'), (410821, 4108, '', 'district'), (410822, 4108, '', 'district'), (410823, 4108, '', 'district'), (410825, 4108, '', 'district'), (410871, 4108, '', 'district'), (410882, 4108, '', 'district'), (410883, 4108, '', 'district'), (410902, 4109, '', 'district'), (410922, 4109, '', 'district'), (410923, 4109, '', 'district'), (410926, 4109, '', 'district'), (410927, 4109, '', 'district'), (410928, 4109, '', 'district'), (410971, 4109, '', 'district'), (410972, 4109, '', 'district'), (411002, 4110, '', 'district'), (411003, 4110, '', 'district'), (411024, 4110, '', 'district'), (411025, 4110, '', 'district'), (411071, 4110, '', 'district'), (411081, 4110, '', 'district'), (411082, 4110, '', 'district'), (411102, 4111, '', 'district'), (411103, 4111, '', 'district'), (411104, 4111, '', 'district'), (411121, 4111, '', 'district'), (411122, 4111, '', 'district'), (411171, 4111, '', 'district'), (411202, 4112, '', 'district'), (411203, 4112, '', 'district'), (411221, 4112, '', 'district'), (411224, 4112, '', 'district'), (411271, 4112, '', 'district'), (411281, 4112, '', 'district'), (411282, 4112, '', 'district'), (411302, 4113, '', 'district'), (411303, 4113, '', 'district'), (411321, 4113, '', 'district'), (411322, 4113, '', 'district'), (411323, 4113, '西', 'district'), (411324, 4113, '', 'district'), (411325, 4113, '', 'district'), (411326, 4113, '', 'district'), (411327, 4113, '', 'district'), (411328, 4113, '', 'district'), (411329, 4113, '', 'district'), (411330, 4113, '', 'district'), (411371, 4113, '', 'district'), (411372, 4113, '', 'district'), (411381, 4113, '', 'district'), (411402, 4114, '', 'district'), (411403, 4114, '', 'district'), (411421, 4114, '', 'district'), (411422, 4114, '', 'district'), (411423, 4114, '', 'district'), (411424, 4114, '', 'district'), (411425, 4114, '', 'district'), (411426, 4114, '', 'district'), (411471, 4114, '', 'district'), (411472, 4114, '', 'district'), (411481, 4114, '', 'district'), (411502, 4115, '', 'district'), (411503, 4115, '', 'district'), (411521, 4115, '', 'district'), (411522, 4115, '', 'district'), (411523, 4115, '', 'district'), (411524, 4115, '', 'district'), (411525, 4115, '', 'district'), (411526, 4115, '', 'district'), (411527, 4115, '', 'district'), (411528, 4115, '', 'district'), (411571, 4115, '', 'district'), (411602, 4116, '', 'district'), (411603, 4116, '', 'district'), (411621, 4116, '', 'district'), (411622, 4116, '西', 'district'), (411623, 4116, '', 'district'), (411624, 4116, '', 'district'), (411625, 4116, '', 'district'), (411627, 4116, '', 'district'), (411628, 4116, '鹿', 'district'), (411671, 4116, '', 'district'), (411681, 4116, '', 'district'), (411702, 4117, '驿', 'district'), (411721, 4117, '西', 'district'), (411722, 4117, '', 'district'), (411723, 4117, '', 'district'), (411724, 4117, '', 'district'), (411725, 4117, '', 'district'), (411726, 4117, '', 'district'), (411727, 4117, '', 'district'), (411728, 4117, '', 'district'), (411729, 4117, '', 'district'), (411771, 4117, '', 'district'), (419001, 4190, '', 'district'), (420102, 4201, '', 'district'), (420103, 4201, '', 'district'), (420104, 4201, '', 'district'), (420105, 4201, '', 'district'), (420106, 4201, '', 'district'), (420107, 4201, '', 'district'), (420111, 4201, '', 'district'), (420112, 4201, '西', 'district'), (420113, 4201, '', 'district'), (420114, 4201, '', 'district'), (420115, 4201, '', 'district'), (420116, 4201, '', 'district'), (420117, 4201, '', 'district'), (420202, 4202, '', 'district'), (420203, 4202, '西', 'district'), (420204, 4202, '', 'district'), (420205, 4202, '', 'district'), (420222, 4202, '', 'district'), (420281, 4202, '', 'district'), (420302, 4203, '', 'district'), (420303, 4203, '', 'district'), (420304, 4203, '', 'district'), (420322, 4203, '西', 'district'), (420323, 4203, '', 'district'), (420324, 4203, '', 'district'), (420325, 4203, '', 'district'), (420381, 4203, '', 'district'), (420502, 4205, '西', 'district'), (420503, 4205, '', 'district'), (420504, 4205, '', 'district'), (420505, 4205, '', 'district'), (420506, 4205, '', 'district'), (420525, 4205, '', 'district'), (420526, 4205, '', 'district'), (420527, 4205, '', 'district'), (420528, 4205, '', 'district'), (420529, 4205, '', 'district'), (420581, 4205, '', 'district'), (420582, 4205, '', 'district'), (420583, 4205, '', 'district'), (420602, 4206, '', 'district'), (420606, 4206, '', 'district'), (420607, 4206, '', 'district'), (420624, 4206, '', 'district'), (420625, 4206, '', 'district'), (420626, 4206, '', 'district'), (420682, 4206, '', 'district'), (420683, 4206, '', 'district'), (420684, 4206, '', 'district'), (420702, 4207, '', 'district'), (420703, 4207, '', 'district'), (420704, 4207, '', 'district'), (420802, 4208, '', 'district'), (420804, 4208, '', 'district'), (420822, 4208, '', 'district'), (420881, 4208, '', 'district'), (420882, 4208, '', 'district'), (420902, 4209, '', 'district'), (420921, 4209, '', 'district'), (420922, 4209, '', 'district'), (420923, 4209, '', 'district'), (420981, 4209, '', 'district'), (420982, 4209, '', 'district'), (420984, 4209, '', 'district'), (421002, 4210, '', 'district'), (421003, 4210, '', 'district'), (421022, 4210, '', 'district'), (421024, 4210, '', 'district'), (421071, 4210, '', 'district'), (421081, 4210, '', 'district'), (421083, 4210, '', 'district'), (421087, 4210, '', 'district'), (421088, 4210, '', 'district'), (421102, 4211, '', 'district'), (421121, 4211, '', 'district'), (421122, 4211, '', 'district'), (421123, 4211, '', 'district'), (421124, 4211, '', 'district'), (421125, 4211, '', 'district'), (421126, 4211, '', 'district'), (421127, 4211, '', 'district'), (421171, 4211, '', 'district'), (421181, 4211, '', 'district'), (421182, 4211, '', 'district'), (421202, 4212, '', 'district'), (421221, 4212, '', 'district'), (421222, 4212, '', 'district'), (421223, 4212, '', 'district'), (421224, 4212, '', 'district'), (421281, 4212, '', 'district'), (421303, 4213, '', 'district'), (421321, 4213, '', 'district'), (421381, 4213, '广', 'district'), (422801, 4228, '', 'district'), (422802, 4228, '', 'district'), (422822, 4228, '', 'district'), (422823, 4228, '', 'district'), (422825, 4228, '', 'district'), (422826, 4228, '', 'district'), (422827, 4228, '', 'district'), (422828, 4228, '', 'district'), (429004, 4290, '', 'district'), (429005, 4290, '', 'district'), (429006, 4290, '', 'district'), (429021, 4290, '', 'district'), (430102, 4301, '', 'district'), (430103, 4301, '', 'district'), (430104, 4301, '', 'district'), (430105, 4301, '', 'district'), (430111, 4301, '', 'district'), (430112, 4301, '', 'district'), (430121, 4301, '', 'district'), (430181, 4301, '', 'district'), (430182, 4301, '', 'district'), (430202, 4302, '', 'district'), (430203, 4302, '', 'district'), (430204, 4302, '', 'district'), (430211, 4302, '', 'district'), (430212, 4302, '', 'district'), (430223, 4302, '', 'district'), (430224, 4302, '', 'district'), (430225, 4302, '', 'district'), (430271, 4302, '', 'district'), (430281, 4302, '', 'district'), (430302, 4303, '', 'district'), (430304, 4303, '', 'district'), (430321, 4303, '', 'district'), (430371, 4303, '', 'district'), (430372, 4303, '', 'district'), (430373, 4303, '', 'district'), (430381, 4303, '', 'district'), (430382, 4303, '', 'district'), (430405, 4304, '', 'district'), (430406, 4304, '', 'district'), (430407, 4304, '', 'district'), (430408, 4304, '', 'district'), (430412, 4304, '', 'district'), (430421, 4304, '', 'district'), (430422, 4304, '', 'district'), (430423, 4304, '', 'district'), (430424, 4304, '', 'district'), (430426, 4304, '', 'district'), (430471, 4304, '', 'district'), (430472, 4304, '', 'district'), (430473, 4304, '', 'district'), (430481, 4304, '', 'district'), (430482, 4304, '', 'district'), (430502, 4305, '', 'district'), (430503, 4305, '', 'district'), (430511, 4305, '', 'district'), (430522, 4305, '', 'district'), (430523, 4305, '', 'district'), (430524, 4305, '', 'district'), (430525, 4305, '', 'district'), (430527, 4305, '', 'district'), (430528, 4305, '', 'district'), (430529, 4305, '', 'district'), (430581, 4305, '', 'district'), (430582, 4305, '', 'district'), (430602, 4306, '', 'district'), (430603, 4306, '', 'district'), (430611, 4306, '', 'district'), (430621, 4306, '', 'district'), (430623, 4306, '', 'district'), (430624, 4306, '', 'district'), (430626, 4306, '', 'district'), (430671, 4306, '', 'district'), (430681, 4306, '', 'district'), (430682, 4306, '', 'district'), (430702, 4307, '', 'district'), (430703, 4307, '', 'district'), (430721, 4307, '', 'district'), (430722, 4307, '寿', 'district'), (430723, 4307, '', 'district'), (430724, 4307, '', 'district'), (430725, 4307, '', 'district'), (430726, 4307, '', 'district'), (430771, 4307, '西', 'district'), (430781, 4307, '', 'district'), (430802, 4308, '', 'district'), (430811, 4308, '', 'district'), (430821, 4308, '', 'district'), (430822, 4308, '', 'district'), (430902, 4309, '', 'district'), (430903, 4309, '', 'district'), (430921, 4309, '', 'district'), (430922, 4309, '', 'district'), (430923, 4309, '', 'district'), (430971, 4309, '', 'district'), (430972, 4309, '', 'district'), (430981, 4309, '', 'district'), (431002, 4310, '', 'district'), (431003, 4310, '', 'district'), (431021, 4310, '', 'district'), (431022, 4310, '', 'district'), (431023, 4310, '', 'district'), (431024, 4310, '', 'district'), (431025, 4310, '', 'district'), (431026, 4310, '', 'district'), (431027, 4310, '', 'district'), (431028, 4310, '', 'district'), (431081, 4310, '', 'district'), (431102, 4311, '', 'district'), (431103, 4311, '', 'district'), (431122, 4311, '', 'district'), (431123, 4311, '', 'district'), (431124, 4311, '', 'district'), (431125, 4311, '', 'district'), (431126, 4311, '', 'district'), (431127, 4311, '', 'district'), (431128, 4311, '', 'district'), (431129, 4311, '', 'district'), (431171, 4311, '', 'district'), (431173, 4311, '', 'district'), (431181, 4311, '', 'district'), (431202, 4312, '', 'district'), (431221, 4312, '', 'district'), (431222, 4312, '', 'district'), (431223, 4312, '', 'district'), (431224, 4312, '', 'district'), (431225, 4312, '', 'district'), (431226, 4312, '', 'district'), (431227, 4312, '', 'district'), (431228, 4312, '', 'district'), (431229, 4312, '', 'district'), (431230, 4312, '', 'district'), (431271, 4312, '怀', 'district'), (431281, 4312, '', 'district'), (431302, 4313, '', 'district'), (431321, 4313, '', 'district'), (431322, 4313, '', 'district'), (431381, 4313, '', 'district'), (431382, 4313, '', 'district'), (433101, 4331, '', 'district'), (433122, 4331, '', 'district'), (433123, 4331, '', 'district'), (433124, 4331, '', 'district'), (433125, 4331, '', 'district'), (433126, 4331, '', 'district'), (433127, 4331, '', 'district'), (433130, 4331, '', 'district'), (440103, 4401, '', 'district'), (440104, 4401, '', 'district'), (440105, 4401, '', 'district'), (440106, 4401, '', 'district'), (440111, 4401, '', 'district'), (440112, 4401, '', 'district'), (440113, 4401, '', 'district'), (440114, 4401, '', 'district'), (440115, 4401, '', 'district'), (440117, 4401, '', 'district'), (440118, 4401, '', 'district'), (440203, 4402, '', 'district'), (440204, 4402, '', 'district'), (440205, 4402, '', 'district'), (440222, 4402, '', 'district'), (440224, 4402, '', 'district'), (440229, 4402, '', 'district'), (440232, 4402, '', 'district'), (440233, 4402, '', 'district'), (440281, 4402, '', 'district'), (440282, 4402, '', 'district'), (440303, 4403, '', 'district'), (440304, 4403, '', 'district'), (440305, 4403, '', 'district'), (440306, 4403, '', 'district'), (440307, 4403, '', 'district'), (440308, 4403, '', 'district'), (440309, 4403, '', 'district'), (440310, 4403, '', 'district'), (440311, 4403, '', 'district'), (440402, 4404, '', 'district'), (440403, 4404, '', 'district'), (440404, 4404, '', 'district'), (440507, 4405, '', 'district'), (440511, 4405, '', 'district'), (440512, 4405, '', 'district'), (440513, 4405, '', 'district'), (440514, 4405, '', 'district'), (440515, 4405, '', 'district'), (440523, 4405, '', 'district'), (440604, 4406, '', 'district'), (440605, 4406, '', 'district'), (440606, 4406, '', 'district'), (440607, 4406, '', 'district'), (440608, 4406, '', 'district'), (440703, 4407, '', 'district'), (440704, 4407, '', 'district'), (440705, 4407, '', 'district'), (440781, 4407, '', 'district'), (440783, 4407, '', 'district'), (440784, 4407, '', 'district'), (440785, 4407, '', 'district'), (440802, 4408, '', 'district'), (440803, 4408, '', 'district'), (440804, 4408, '', 'district'), (440811, 4408, '', 'district'), (440823, 4408, '', 'district'), (440825, 4408, '', 'district'), (440881, 4408, '', 'district'), (440882, 4408, '', 'district'), (440883, 4408, '', 'district'), (440902, 4409, '', 'district'), (440904, 4409, '', 'district'), (440981, 4409, '', 'district'), (440982, 4409, '', 'district'), (440983, 4409, '', 'district'), (441202, 4412, '', 'district'), (441203, 4412, '', 'district'), (441204, 4412, '', 'district'), (441223, 4412, '广', 'district'), (441224, 4412, '怀', 'district'), (441225, 4412, '', 'district'), (441226, 4412, '', 'district'), (441284, 4412, '', 'district'), (441302, 4413, '', 'district'), (441303, 4413, '', 'district'), (441322, 4413, '', 'district'), (441323, 4413, '', 'district'), (441324, 4413, '', 'district'), (441402, 4414, '', 'district'), (441403, 4414, '', 'district'), (441422, 4414, '', 'district'), (441423, 4414, '', 'district'), (441424, 4414, '', 'district'), (441426, 4414, '', 'district'), (441427, 4414, '', 'district'), (441481, 4414, '', 'district'), (441502, 4415, '', 'district'), (441521, 4415, '', 'district'), (441523, 4415, '', 'district'), (441581, 4415, '', 'district'), (441602, 4416, '', 'district'), (441621, 4416, '', 'district'), (441622, 4416, '', 'district'), (441623, 4416, '', 'district'), (441624, 4416, '', 'district'), (441625, 4416, '', 'district'), (441702, 4417, '', 'district'), (441704, 4417, '', 'district'), (441721, 4417, '西', 'district'), (441781, 4417, '', 'district'), (441802, 4418, '', 'district'), (441803, 4418, '', 'district'), (441821, 4418, '', 'district'), (441823, 4418, '', 'district'), (441825, 4418, '', 'district'), (441826, 4418, '', 'district'), (441881, 4418, '', 'district'), (441882, 4418, '', 'district'), (441900, 4419, '', 'district'), (442000, 4420, '', 'district'), (445102, 4451, '', 'district'), (445103, 4451, '', 'district'), (445122, 4451, '', 'district'), (445202, 4452, '', 'district'), (445203, 4452, '', 'district'), (445222, 4452, '西', 'district'), (445224, 4452, '', 'district'), (445281, 4452, '', 'district'), (445302, 4453, '', 'district'), (445303, 4453, '', 'district'), (445321, 4453, '', 'district'), (445322, 4453, '', 'district'), (445381, 4453, '', 'district'), (450102, 4501, '', 'district'), (450103, 4501, '', 'district'), (450105, 4501, '', 'district'), (450107, 4501, '西', 'district'), (450108, 4501, '', 'district'), (450109, 4501, '', 'district'), (450110, 4501, '', 'district'), (450123, 4501, '', 'district'), (450124, 4501, '', 'district'), (450125, 4501, '', 'district'), (450126, 4501, '', 'district'), (450181, 4501, '', 'district'), (450202, 4502, '', 'district'), (450203, 4502, '', 'district'), (450204, 4502, '', 'district'), (450205, 4502, '', 'district'), (450206, 4502, '', 'district'), (450222, 4502, '', 'district'), (450223, 4502, '鹿', 'district'), (450224, 4502, '', 'district'), (450225, 4502, '', 'district'), (450226, 4502, '', 'district'), (450302, 4503, '', 'district'), (450303, 4503, '', 'district'), (450304, 4503, '', 'district'), (450305, 4503, '', 'district'), (450311, 4503, '', 'district'), (450312, 4503, '', 'district'), (450321, 4503, '', 'district'), (450323, 4503, '', 'district'), (450324, 4503, '', 'district'), (450325, 4503, '', 'district'), (450326, 4503, '', 'district'), (450327, 4503, '', 'district'), (450328, 4503, '', 'district'), (450329, 4503, '', 'district'), (450330, 4503, '', 'district'), (450332, 4503, '', 'district'), (450381, 4503, '', 'district'), (450403, 4504, '', 'district'), (450405, 4504, '', 'district'), (450406, 4504, '', 'district'), (450421, 4504, '', 'district'), (450422, 4504, '', 'district'), (450423, 4504, '', 'district'), (450481, 4504, '', 'district'), (450502, 4505, '', 'district'), (450503, 4505, '', 'district'), (450512, 4505, '', 'district'), (450521, 4505, '', 'district'), (450602, 4506, '', 'district'), (450603, 4506, '', 'district'), (450621, 4506, '', 'district'), (450681, 4506, '', 'district'), (450702, 4507, '', 'district'), (450703, 4507, '', 'district'), (450721, 4507, '', 'district'), (450722, 4507, '', 'district'), (450802, 4508, '', 'district'), (450803, 4508, '', 'district'), (450804, 4508, '', 'district'), (450821, 4508, '', 'district'), (450881, 4508, '', 'district'), (450902, 4509, '', 'district'), (450903, 4509, '', 'district'), (450921, 4509, '', 'district'), (450922, 4509, '', 'district'), (450923, 4509, '', 'district'), (450924, 4509, '', 'district'), (450981, 4509, '', 'district'), (451002, 4510, '', 'district'), (451003, 4510, '', 'district'), (451022, 4510, '', 'district'), (451024, 4510, '', 'district'), (451026, 4510, '', 'district'), (451027, 4510, '', 'district'), (451028, 4510, '', 'district'), (451029, 4510, '', 'district'), (451030, 4510, '西', 'district'), (451031, 4510, '', 'district'), (451081, 4510, '西', 'district'), (451082, 4510, '', 'district'), (451102, 4511, '', 'district'), (451103, 4511, '', 'district'), (451121, 4511, '', 'district'), (451122, 4511, '', 'district'), (451123, 4511, '', 'district'), (451202, 4512, '', 'district'), (451203, 4512, '', 'district'), (451221, 4512, '', 'district'), (451222, 4512, '', 'district'), (451223, 4512, '', 'district'), (451224, 4512, '', 'district'), (451225, 4512, '', 'district'), (451226, 4512, '', 'district'), (451227, 4512, '', 'district'), (451228, 4512, '', 'district'), (451229, 4512, '', 'district'), (451302, 4513, '', 'district'), (451321, 4513, '', 'district'), (451322, 4513, '', 'district'), (451323, 4513, '', 'district'), (451324, 4513, '', 'district'), (451381, 4513, '', 'district'), (451402, 4514, '', 'district'), (451421, 4514, '', 'district'), (451422, 4514, '', 'district'), (451423, 4514, '', 'district'), (451424, 4514, '', 'district'), (451425, 4514, '', 'district'), (451481, 4514, '', 'district'), (460105, 4601, '', 'district'), (460106, 4601, '', 'district'), (460107, 4601, '', 'district'), (460108, 4601, '', 'district'), (460202, 4602, '', 'district'), (460203, 4602, '', 'district'), (460204, 4602, '', 'district'), (460205, 4602, '', 'district'), (460321, 4603, '西', 'district'), (460322, 4603, '', 'district'), (460323, 4603, '', 'district'), (460400, 4604, '', 'district'), (469001, 4690, '', 'district'), (469002, 4690, '', 'district'), (469005, 4690, '', 'district'), (469006, 4690, '', 'district'), (469007, 4690, '', 'district'), (469021, 4690, '', 'district'), (469022, 4690, '', 'district'), (469023, 4690, '', 'district'), (469024, 4690, '', 'district'), (469025, 4690, '', 'district'), (469026, 4690, '', 'district'), (469027, 4690, '', 'district'), (469028, 4690, '', 'district'), (469029, 4690, '', 'district'), (469030, 4690, '', 'district'), (500101, 5001, '', 'district'), (500102, 5001, '', 'district'), (500103, 5001, '', 'district'), (500104, 5001, '', 'district'), (500105, 5001, '', 'district'), (500106, 5001, '', 'district'), (500107, 5001, '', 'district'), (500108, 5001, '', 'district'), (500109, 5001, '', 'district'), (500110, 5001, '', 'district'), (500111, 5001, '', 'district'), (500112, 5001, '', 'district'), (500113, 5001, '', 'district'), (500114, 5001, '', 'district'), (500115, 5001, '寿', 'district'), (500116, 5001, '', 'district'), (500117, 5001, '', 'district'), (500118, 5001, '', 'district'), (500119, 5001, '', 'district'), (500120, 5001, '', 'district'), (500151, 5001, '', 'district'), (500152, 5001, '', 'district'), (500153, 5001, '', 'district'), (500154, 5001, '', 'district'), (500155, 5001, '', 'district'), (500156, 5001, '', 'district'), (500229, 5002, '', 'district'), (500230, 5002, '', 'district'), (500231, 5002, '', 'district'), (500233, 5002, '', 'district'), (500235, 5002, '', 'district'), (500236, 5002, '', 'district'), (500237, 5002, '', 'district'), (500238, 5002, '', 'district'), (500240, 5002, '', 'district'), (500241, 5002, '', 'district'), (500242, 5002, '', 'district'), (500243, 5002, '', 'district'), (510104, 5101, '', 'district'), (510105, 5101, '', 'district'), (510106, 5101, '', 'district'), (510107, 5101, '', 'district'), (510108, 5101, '', 'district'), (510112, 5101, '驿', 'district'), (510113, 5101, '', 'district'), (510114, 5101, '', 'district'), (510115, 5101, '', 'district'), (510116, 5101, '', 'district'), (510117, 5101, '', 'district'), (510118, 5101, '', 'district'), (510121, 5101, '', 'district'), (510129, 5101, '', 'district'), (510131, 5101, '', 'district'), (510181, 5101, '', 'district'), (510182, 5101, '', 'district'), (510183, 5101, '', 'district'), (510184, 5101, '', 'district'), (510185, 5101, '', 'district'), (510302, 5103, '', 'district'), (510303, 5103, '', 'district'), (510304, 5103, '', 'district'), (510311, 5103, '沿', 'district'), (510321, 5103, '', 'district'), (510322, 5103, '', 'district'), (510402, 5104, '', 'district'), (510403, 5104, '西', 'district'), (510411, 5104, '', 'district'), (510421, 5104, '', 'district'), (510422, 5104, '', 'district'), (510502, 5105, '', 'district'), (510503, 5105, '', 'district'), (510504, 5105, '', 'district'), (510521, 5105, '', 'district'), (510522, 5105, '', 'district'), (510524, 5105, '', 'district'), (510525, 5105, '', 'district'), (510603, 5106, '', 'district'), (510604, 5106, '', 'district'), (510623, 5106, '', 'district'), (510681, 5106, '广', 'district'), (510682, 5106, '', 'district'), (510683, 5106, '', 'district'), (510703, 5107, '', 'district'), (510704, 5107, '', 'district'), (510705, 5107, '', 'district'), (510722, 5107, '', 'district'), (510723, 5107, '', 'district'), (510725, 5107, '', 'district'), (510726, 5107, '', 'district'), (510727, 5107, '', 'district'), (510781, 5107, '', 'district'), (510802, 5108, '', 'district'), (510811, 5108, '', 'district'), (510812, 5108, '', 'district'), (510821, 5108, '', 'district'), (510822, 5108, '', 'district'), (510823, 5108, '', 'district'), (510824, 5108, '', 'district'), (510903, 5109, '', 'district'), (510904, 5109, '', 'district'), (510921, 5109, '', 'district'), (510923, 5109, '', 'district'), (510981, 5109, '', 'district'), (511002, 5110, '', 'district'), (511011, 5110, '', 'district'), (511024, 5110, '', 'district'), (511025, 5110, '', 'district'), (511071, 5110, '', 'district'), (511083, 5110, '', 'district'), (511102, 5111, '', 'district'), (511111, 5111, '', 'district'), (511112, 5111, '', 'district'), (511113, 5111, '', 'district'), (511123, 5111, '', 'district'), (511124, 5111, '', 'district'), (511126, 5111, '', 'district'), (511129, 5111, '', 'district'), (511132, 5111, '', 'district'), (511133, 5111, '', 'district'), (511181, 5111, '', 'district'), (511302, 5113, '', 'district'), (511303, 5113, '', 'district'), (511304, 5113, '', 'district'), (511321, 5113, '', 'district'), (511322, 5113, '', 'district'), (511323, 5113, '', 'district'), (511324, 5113, '', 'district'), (511325, 5113, '西', 'district'), (511381, 5113, '', 'district'), (511402, 5114, '', 'district'), (511403, 5114, '', 'district'), (511421, 5114, '寿', 'district'), (511423, 5114, '', 'district'), (511424, 5114, '', 'district'), (511425, 5114, '', 'district'), (511502, 5115, '', 'district'), (511503, 5115, '', 'district'), (511504, 5115, '', 'district'), (511523, 5115, '', 'district'), (511524, 5115, '', 'district'), (511525, 5115, '', 'district'), (511526, 5115, '', 'district'), (511527, 5115, '', 'district'), (511528, 5115, '', 'district'), (511529, 5115, '', 'district'), (511602, 5116, '广', 'district'), (511603, 5116, '', 'district'), (511621, 5116, '', 'district'), (511622, 5116, '', 'district'), (511623, 5116, '', 'district'), (511681, 5116, '', 'district'), (511702, 5117, '', 'district'), (511703, 5117, '', 'district'), (511722, 5117, '', 'district'), (511723, 5117, '', 'district'), (511724, 5117, '', 'district'), (511725, 5117, '', 'district'), (511771, 5117, '', 'district'), (511781, 5117, '', 'district'), (511802, 5118, '', 'district'), (511803, 5118, '', 'district'), (511822, 5118, '', 'district'), (511823, 5118, '', 'district'), (511824, 5118, '', 'district'), (511825, 5118, '', 'district'), (511826, 5118, '', 'district'), (511827, 5118, '', 'district'), (511902, 5119, '', 'district'), (511903, 5119, '', 'district'), (511921, 5119, '', 'district'), (511922, 5119, '', 'district'), (511923, 5119, '', 'district'), (511971, 5119, '', 'district'), (512002, 5120, '', 'district'), (512021, 5120, '', 'district'), (512022, 5120, '', 'district'), (513201, 5132, '', 'district'), (513221, 5132, '', 'district'), (513222, 5132, '', 'district'), (513223, 5132, '', 'district'), (513224, 5132, '', 'district'), (513225, 5132, '', 'district'), (513226, 5132, '', 'district'), (513227, 5132, '', 'district'), (513228, 5132, '', 'district'), (513230, 5132, '', 'district'), (513231, 5132, '', 'district'), (513232, 5132, '', 'district'), (513233, 5132, '', 'district'), (513301, 5133, '', 'district'), (513322, 5133, '', 'district'), (513323, 5133, '', 'district'), (513324, 5133, '', 'district'), (513325, 5133, '', 'district'), (513326, 5133, '', 'district'), (513327, 5133, '', 'district'), (513328, 5133, '', 'district'), (513329, 5133, '', 'district'), (513330, 5133, '', 'district'), (513331, 5133, '', 'district'), (513332, 5133, '', 'district'), (513333, 5133, '', 'district'), (513334, 5133, '', 'district'), (513335, 5133, '', 'district'), (513336, 5133, '', 'district'), (513337, 5133, '', 'district'), (513338, 5133, '', 'district'), (513401, 5134, '西', 'district'), (513402, 5134, '', 'district'), (513422, 5134, '', 'district'), (513423, 5134, '', 'district'), (513424, 5134, '', 'district'), (513426, 5134, '', 'district'), (513427, 5134, '', 'district'), (513428, 5134, '', 'district'), (513429, 5134, '', 'district'), (513430, 5134, '', 'district'), (513431, 5134, '', 'district'), (513432, 5134, '', 'district'), (513433, 5134, '', 'district'), (513434, 5134, '西', 'district'), (513435, 5134, '', 'district'), (513436, 5134, '', 'district'), (513437, 5134, '', 'district'), (520102, 5201, '', 'district'), (520103, 5201, '', 'district'), (520111, 5201, '', 'district'), (520112, 5201, '', 'district'), (520113, 5201, '', 'district'), (520115, 5201, '', 'district'), (520121, 5201, '', 'district'), (520122, 5201, '', 'district'), (520123, 5201, '', 'district'), (520181, 5201, '', 'district'), (520201, 5202, '', 'district'), (520203, 5202, '', 'district'), (520204, 5202, '', 'district'), (520281, 5202, '', 'district'), (520302, 5203, '', 'district'), (520303, 5203, '', 'district'), (520304, 5203, '', 'district'), (520322, 5203, '', 'district'), (520323, 5203, '', 'district'), (520324, 5203, '', 'district'), (520325, 5203, '', 'district'), (520326, 5203, '', 'district'), (520327, 5203, '', 'district'), (520328, 5203, '', 'district'), (520329, 5203, '', 'district'), (520330, 5203, '', 'district'), (520381, 5203, '', 'district'), (520382, 5203, '怀', 'district'), (520402, 5204, '西', 'district'), (520403, 5204, '', 'district'), (520422, 5204, '', 'district'), (520423, 5204, '', 'district'), (520424, 5204, '', 'district'), (520425, 5204, '', 'district'), (520502, 5205, '', 'district'), (520521, 5205, '', 'district'), (520523, 5205, '', 'district'), (520524, 5205, '', 'district'), (520525, 5205, '', 'district'), (520526, 5205, '', 'district'), (520527, 5205, '', 'district'), (520581, 5205, '西', 'district'), (520602, 5206, '', 'district'), (520603, 5206, '', 'district'), (520621, 5206, '', 'district'), (520622, 5206, '', 'district'), (520623, 5206, '', 'district'), (520624, 5206, '', 'district'), (520625, 5206, '', 'district'), (520626, 5206, '', 'district'), (520627, 5206, '沿', 'district'), (520628, 5206, '', 'district'), (522301, 5223, '', 'district'), (522302, 5223, '', 'district'), (522323, 5223, '', 'district'), (522324, 5223, '', 'district'), (522325, 5223, '', 'district'), (522326, 5223, '', 'district'), (522327, 5223, '', 'district'), (522328, 5223, '', 'district'), (522601, 5226, '', 'district'), (522622, 5226, '', 'district'), (522623, 5226, '', 'district'), (522624, 5226, '', 'district'), (522625, 5226, '', 'district'), (522626, 5226, '', 'district'), (522627, 5226, '', 'district'), (522628, 5226, '', 'district'), (522629, 5226, '', 'district'), (522630, 5226, '', 'district'), (522631, 5226, '', 'district'), (522632, 5226, '', 'district'), (522633, 5226, '', 'district'), (522634, 5226, '', 'district'), (522635, 5226, '', 'district'), (522636, 5226, '', 'district'), (522701, 5227, '', 'district'), (522702, 5227, '', 'district'), (522722, 5227, '', 'district'), (522723, 5227, '', 'district'), (522725, 5227, '', 'district'), (522726, 5227, '', 'district'), (522727, 5227, '', 'district'), (522728, 5227, '', 'district'), (522729, 5227, '', 'district'), (522730, 5227, '', 'district'), (522731, 5227, '', 'district'), (522732, 5227, '', 'district'), (530102, 5301, '', 'district'), (530103, 5301, '', 'district'), (530111, 5301, '', 'district'), (530112, 5301, '西', 'district'), (530113, 5301, '', 'district'), (530114, 5301, '', 'district'), (530115, 5301, '', 'district'), (530124, 5301, '', 'district'), (530125, 5301, '', 'district'), (530126, 5301, '', 'district'), (530127, 5301, '', 'district'), (530128, 5301, '', 'district'), (530129, 5301, '', 'district'), (530181, 5301, '', 'district'), (530302, 5303, '', 'district'), (530303, 5303, '', 'district'), (530304, 5303, '', 'district'), (530322, 5303, '', 'district'), (530323, 5303, '', 'district'), (530324, 5303, '', 'district'), (530325, 5303, '', 'district'), (530326, 5303, '', 'district'), (530381, 5303, '', 'district'), (530402, 5304, '', 'district'), (530403, 5304, '', 'district'), (530423, 5304, '', 'district'), (530424, 5304, '', 'district'), (530425, 5304, '', 'district'), (530426, 5304, '', 'district'), (530427, 5304, '', 'district'), (530428, 5304, '', 'district'), (530481, 5304, '', 'district'), (530502, 5305, '', 'district'), (530521, 5305, '', 'district'), (530523, 5305, '', 'district'), (530524, 5305, '', 'district'), (530581, 5305, '', 'district'), (530602, 5306, '', 'district'), (530621, 5306, '', 'district'), (530622, 5306, '', 'district'), (530623, 5306, '', 'district'), (530624, 5306, '', 'district'), (530625, 5306, '', 'district'), (530626, 5306, '', 'district'), (530627, 5306, '', 'district'), (530628, 5306, '', 'district'), (530629, 5306, '', 'district'), (530681, 5306, '', 'district'), (530702, 5307, '', 'district'), (530721, 5307, '西', 'district'), (530722, 5307, '', 'district'), (530723, 5307, '', 'district'), (530724, 5307, '', 'district'), (530802, 5308, '', 'district'), (530821, 5308, '', 'district'), (530822, 5308, '', 'district'), (530823, 5308, '', 'district'), (530824, 5308, '', 'district'), (530825, 5308, '', 'district'), (530826, 5308, '', 'district'), (530827, 5308, '', 'district'), (530828, 5308, '', 'district'), (530829, 5308, '西', 'district'), (530902, 5309, '', 'district'), (530921, 5309, '', 'district'), (530922, 5309, '', 'district'), (530923, 5309, '', 'district'), (530924, 5309, '', 'district'), (530925, 5309, '', 'district'), (530926, 5309, '', 'district'), (530927, 5309, '', 'district'), (532301, 5323, '', 'district'), (532302, 5323, '', 'district'), (532322, 5323, '', 'district'), (532323, 5323, '', 'district'), (532324, 5323, '', 'district'), (532325, 5323, '', 'district'), (532326, 5323, '', 'district'), (532327, 5323, '', 'district'), (532328, 5323, '', 'district'), (532329, 5323, '', 'district'), (532501, 5325, '', 'district'), (532502, 5325, '', 'district'), (532503, 5325, '', 'district'), (532504, 5325, '', 'district'), (532523, 5325, '', 'district'), (532524, 5325, '', 'district'), (532525, 5325, '', 'district'), (532527, 5325, '西', 'district'), (532528, 5325, '', 'district'), (532529, 5325, '', 'district'), (532530, 5325, '', 'district'), (532531, 5325, '绿', 'district'), (532532, 5325, '', 'district'), (532601, 5326, '', 'district'), (532622, 5326, '', 'district'), (532623, 5326, '西', 'district'), (532624, 5326, '', 'district'), (532625, 5326, '', 'district'), (532626, 5326, '', 'district'), (532627, 5326, '广', 'district'), (532628, 5326, '', 'district'), (532801, 5328, '', 'district'), (532822, 5328, '', 'district'), (532823, 5328, '', 'district'), (532901, 5329, '', 'district'), (532922, 5329, '', 'district'), (532923, 5329, '', 'district'), (532924, 5329, '', 'district'), (532925, 5329, '', 'district'), (532926, 5329, '', 'district'), (532927, 5329, '', 'district'), (532928, 5329, '', 'district'), (532929, 5329, '', 'district'), (532930, 5329, '', 'district'), (532931, 5329, '', 'district'), (532932, 5329, '', 'district'), (533102, 5331, '', 'district'), (533103, 5331, '', 'district'), (533122, 5331, '', 'district'), (533123, 5331, '', 'district'), (533124, 5331, '', 'district'), (533301, 5333, '', 'district'), (533323, 5333, '', 'district'), (533324, 5333, '', 'district'), (533325, 5333, '', 'district'), (533401, 5334, '', 'district'), (533422, 5334, '', 'district'), (533423, 5334, '西', 'district'), (540102, 5401, '', 'district'), (540103, 5401, '', 'district'), (540104, 5401, '', 'district'), (540121, 5401, '', 'district'), (540122, 5401, '', 'district'), (540123, 5401, '', 'district'), (540124, 5401, '', 'district'), (540127, 5401, '', 'district'), (540171, 5401, '', 'district'), (540172, 5401, '', 'district'), (540173, 5401, '西', 'district'), (540174, 5401, '', 'district'), (540202, 5402, '', 'district'), (540221, 5402, '', 'district'), (540222, 5402, '', 'district'), (540223, 5402, '', 'district'), (540224, 5402, '', 'district'), (540225, 5402, '', 'district'), (540226, 5402, '', 'district'), (540227, 5402, '', 'district'), (540228, 5402, '', 'district'), (540229, 5402, '', 'district'), (540230, 5402, '', 'district'), (540231, 5402, '', 'district'), (540232, 5402, '', 'district'), (540233, 5402, '', 'district'), (540234, 5402, '', 'district'), (540235, 5402, '', 'district'), (540236, 5402, '', 'district'), (540237, 5402, '', 'district'), (540302, 5403, '', 'district'), (540321, 5403, '', 'district'), (540322, 5403, '', 'district'), (540323, 5403, '', 'district'), (540324, 5403, '', 'district'), (540325, 5403, '', 'district'), (540326, 5403, '宿', 'district'), (540327, 5403, '', 'district'), (540328, 5403, '', 'district'), (540329, 5403, '', 'district'), (540330, 5403, '', 'district'), (540402, 5404, '', 'district'), (540421, 5404, '', 'district'), (540422, 5404, '', 'district'), (540423, 5404, '', 'district'), (540424, 5404, '', 'district'), (540425, 5404, '', 'district'), (540426, 5404, '', 'district'), (540502, 5405, '', 'district'), (540521, 5405, '', 'district'), (540522, 5405, '', 'district'), (540523, 5405, '', 'district'), (540524, 5405, '', 'district'), (540525, 5405, '', 'district'), (540526, 5405, '', 'district'), (540527, 5405, '', 'district'), (540528, 5405, '', 'district'), (540529, 5405, '', 'district'), (540530, 5405, '', 'district'), (540531, 5405, '', 'district'), (540602, 5406, '', 'district'), (540621, 5406, '', 'district'), (540622, 5406, '', 'district'), (540623, 5406, '', 'district'), (540624, 5406, '', 'district'), (540625, 5406, '', 'district'), (540626, 5406, '', 'district'), (540627, 5406, '', 'district'), (540628, 5406, '', 'district'), (540629, 5406, '', 'district'), (540630, 5406, '', 'district'), (542521, 5425, '', 'district'), (542522, 5425, '', 'district'), (542523, 5425, '', 'district'), (542524, 5425, '', 'district'), (542525, 5425, '', 'district'), (542526, 5425, '', 'district'), (542527, 5425, '', 'district'), (610102, 6101, '', 'district'), (610103, 6101, '', 'district'), (610104, 6101, '', 'district'), (610111, 6101, '', 'district'), (610112, 6101, '', 'district'), (610113, 6101, '', 'district'), (610114, 6101, '', 'district'), (610115, 6101, '', 'district'), (610116, 6101, '', 'district'), (610117, 6101, '', 'district'), (610118, 6101, '', 'district'), (610122, 6101, '', 'district'), (610124, 6101, '', 'district'), (610202, 6102, '', 'district'), (610203, 6102, '', 'district'), (610204, 6102, '耀', 'district'), (610222, 6102, '', 'district'), (610302, 6103, '', 'district'), (610303, 6103, '', 'district'), (610304, 6103, '', 'district'), (610305, 6103, '', 'district'), (610323, 6103, '', 'district'), (610324, 6103, '', 'district'), (610326, 6103, '', 'district'), (610327, 6103, '', 'district'), (610328, 6103, '', 'district'), (610329, 6103, '', 'district'), (610330, 6103, '', 'district'), (610331, 6103, '', 'district'), (610402, 6104, '', 'district'), (610403, 6104, '', 'district'), (610404, 6104, '', 'district'), (610422, 6104, '', 'district'), (610423, 6104, '', 'district'), (610424, 6104, '', 'district'), (610425, 6104, '', 'district'), (610426, 6104, '寿', 'district'), (610428, 6104, '', 'district'), (610429, 6104, '', 'district'), (610430, 6104, '', 'district'), (610431, 6104, '', 'district'), (610481, 6104, '', 'district'), (610482, 6104, '', 'district'), (610502, 6105, '', 'district'), (610503, 6105, '', 'district'), (610522, 6105, '', 'district'), (610523, 6105, '', 'district'), (610524, 6105, '', 'district'), (610525, 6105, '', 'district'), (610526, 6105, '', 'district'), (610527, 6105, '', 'district'), (610528, 6105, '', 'district'), (610581, 6105, '', 'district'), (610582, 6105, '', 'district'), (610602, 6106, '', 'district'), (610603, 6106, '', 'district'), (610621, 6106, '', 'district'), (610622, 6106, '', 'district'), (610625, 6106, '', 'district'), (610626, 6106, '', 'district'), (610627, 6106, '', 'district'), (610628, 6106, '', 'district'), (610629, 6106, '', 'district'), (610630, 6106, '', 'district'), (610631, 6106, '', 'district'), (610632, 6106, '', 'district'), (610681, 6106, '', 'district'), (610702, 6107, '', 'district'), (610703, 6107, '', 'district'), (610722, 6107, '', 'district'), (610723, 6107, '', 'district'), (610724, 6107, '西', 'district'), (610725, 6107, '', 'district'), (610726, 6107, '', 'district'), (610727, 6107, '', 'district'), (610728, 6107, '', 'district'), (610729, 6107, '', 'district'), (610730, 6107, '', 'district'), (610802, 6108, '', 'district'), (610803, 6108, '', 'district'), (610822, 6108, '', 'district'), (610824, 6108, '', 'district'), (610825, 6108, '', 'district'), (610826, 6108, '', 'district'), (610827, 6108, '', 'district'), (610828, 6108, '', 'district'), (610829, 6108, '', 'district'), (610830, 6108, '', 'district'), (610831, 6108, '', 'district'), (610881, 6108, '', 'district'), (610902, 6109, '', 'district'), (610921, 6109, '', 'district'), (610922, 6109, '', 'district'), (610923, 6109, '', 'district'), (610924, 6109, '', 'district'), (610925, 6109, '', 'district'), (610926, 6109, '', 'district'), (610927, 6109, '', 'district'), (610929, 6109, '', 'district'), (610981, 6109, '', 'district');
INSERT INTO `__PREFIX__shopro_data_area` (`id`, `pid`, `name`, `level`) VALUES (611002, 6110, '', 'district'), (611021, 6110, '', 'district'), (611022, 6110, '', 'district'), (611023, 6110, '', 'district'), (611024, 6110, '', 'district'), (611025, 6110, '', 'district'), (611026, 6110, '', 'district'), (620102, 6201, '', 'district'), (620103, 6201, '', 'district'), (620104, 6201, '西', 'district'), (620105, 6201, '', 'district'), (620111, 6201, '', 'district'), (620121, 6201, '', 'district'), (620122, 6201, '', 'district'), (620123, 6201, '', 'district'), (620171, 6201, '', 'district'), (620201, 6202, '', 'district'), (620302, 6203, '', 'district'), (620321, 6203, '', 'district'), (620402, 6204, '', 'district'), (620403, 6204, '', 'district'), (620421, 6204, '', 'district'), (620422, 6204, '', 'district'), (620423, 6204, '', 'district'), (620502, 6205, '', 'district'), (620503, 6205, '', 'district'), (620521, 6205, '', 'district'), (620522, 6205, '', 'district'), (620523, 6205, '', 'district'), (620524, 6205, '', 'district'), (620525, 6205, '', 'district'), (620602, 6206, '', 'district'), (620621, 6206, '', 'district'), (620622, 6206, '', 'district'), (620623, 6206, '', 'district'), (620702, 6207, '', 'district'), (620721, 6207, '', 'district'), (620722, 6207, '', 'district'), (620723, 6207, '', 'district'), (620724, 6207, '', 'district'), (620725, 6207, '', 'district'), (620802, 6208, '', 'district'), (620821, 6208, '', 'district'), (620822, 6208, '', 'district'), (620823, 6208, '', 'district'), (620825, 6208, '', 'district'), (620826, 6208, '', 'district'), (620881, 6208, '', 'district'), (620902, 6209, '', 'district'), (620921, 6209, '', 'district'), (620922, 6209, '', 'district'), (620923, 6209, '', 'district'), (620924, 6209, '', 'district'), (620981, 6209, '', 'district'), (620982, 6209, '', 'district'), (621002, 6210, '西', 'district'), (621021, 6210, '', 'district'), (621022, 6210, '', 'district'), (621023, 6210, '', 'district'), (621024, 6210, '', 'district'), (621025, 6210, '', 'district'), (621026, 6210, '', 'district'), (621027, 6210, '', 'district'), (621102, 6211, '', 'district'), (621121, 6211, '', 'district'), (621122, 6211, '西', 'district'), (621123, 6211, '', 'district'), (621124, 6211, '', 'district'), (621125, 6211, '', 'district'), (621126, 6211, '', 'district'), (621202, 6212, '', 'district'), (621221, 6212, '', 'district'), (621222, 6212, '', 'district'), (621223, 6212, '', 'district'), (621224, 6212, '', 'district'), (621225, 6212, '西', 'district'), (621226, 6212, '', 'district'), (621227, 6212, '', 'district'), (621228, 6212, '', 'district'), (622901, 6229, '', 'district'), (622921, 6229, '', 'district'), (622922, 6229, '', 'district'), (622923, 6229, '', 'district'), (622924, 6229, '广', 'district'), (622925, 6229, '', 'district'), (622926, 6229, '', 'district'), (622927, 6229, '', 'district'), (623001, 6230, '', 'district'), (623021, 6230, '', 'district'), (623022, 6230, '', 'district'), (623023, 6230, '', 'district'), (623024, 6230, '', 'district'), (623025, 6230, '', 'district'), (623026, 6230, '', 'district'), (623027, 6230, '', 'district'), (630102, 6301, '', 'district'), (630103, 6301, '', 'district'), (630104, 6301, '西', 'district'), (630105, 6301, '', 'district'), (630106, 6301, '', 'district'), (630121, 6301, '', 'district'), (630123, 6301, '', 'district'), (630202, 6302, '', 'district'), (630203, 6302, '', 'district'), (630222, 6302, '', 'district'), (630223, 6302, '', 'district'), (630224, 6302, '', 'district'), (630225, 6302, '', 'district'), (632221, 6322, '', 'district'), (632222, 6322, '', 'district'), (632223, 6322, '', 'district'), (632224, 6322, '', 'district'), (632301, 6323, '', 'district'), (632322, 6323, '', 'district'), (632323, 6323, '', 'district'), (632324, 6323, '', 'district'), (632521, 6325, '', 'district'), (632522, 6325, '', 'district'), (632523, 6325, '', 'district'), (632524, 6325, '', 'district'), (632525, 6325, '', 'district'), (632621, 6326, '', 'district'), (632622, 6326, '', 'district'), (632623, 6326, '', 'district'), (632624, 6326, '', 'district'), (632625, 6326, '', 'district'), (632626, 6326, '', 'district'), (632701, 6327, '', 'district'), (632722, 6327, '', 'district'), (632723, 6327, '', 'district'), (632724, 6327, '', 'district'), (632725, 6327, '', 'district'), (632726, 6327, '', 'district'), (632801, 6328, '', 'district'), (632802, 6328, '', 'district'), (632803, 6328, '', 'district'), (632821, 6328, '', 'district'), (632822, 6328, '', 'district'), (632823, 6328, '', 'district'), (632857, 6328, '', 'district'), (640104, 6401, '', 'district'), (640105, 6401, '西', 'district'), (640106, 6401, '', 'district'), (640121, 6401, '', 'district'), (640122, 6401, '', 'district'), (640181, 6401, '', 'district'), (640202, 6402, '', 'district'), (640205, 6402, '', 'district'), (640221, 6402, '', 'district'), (640302, 6403, '', 'district'), (640303, 6403, '', 'district'), (640323, 6403, '', 'district'), (640324, 6403, '', 'district'), (640381, 6403, '', 'district'), (640402, 6404, '', 'district'), (640422, 6404, '西', 'district'), (640423, 6404, '', 'district'), (640424, 6404, '', 'district'), (640425, 6404, '', 'district'), (640502, 6405, '', 'district'), (640521, 6405, '', 'district'), (640522, 6405, '', 'district'), (650102, 6501, '', 'district'), (650103, 6501, '', 'district'), (650104, 6501, '', 'district'), (650105, 6501, '', 'district'), (650106, 6501, '', 'district'), (650107, 6501, '', 'district'), (650109, 6501, '', 'district'), (650121, 6501, '', 'district'), (650202, 6502, '', 'district'), (650203, 6502, '', 'district'), (650204, 6502, '', 'district'), (650205, 6502, '', 'district'), (650402, 6504, '', 'district'), (650421, 6504, '', 'district'), (650422, 6504, '', 'district'), (650502, 6505, '', 'district'), (650521, 6505, '', 'district'), (650522, 6505, '', 'district'), (652301, 6523, '', 'district'), (652302, 6523, '', 'district'), (652323, 6523, '', 'district'), (652324, 6523, '', 'district'), (652325, 6523, '', 'district'), (652327, 6523, '', 'district'), (652328, 6523, '', 'district'), (652701, 6527, '', 'district'), (652702, 6527, '', 'district'), (652722, 6527, '', 'district'), (652723, 6527, '', 'district'), (652801, 6528, '', 'district'), (652822, 6528, '', 'district'), (652823, 6528, '', 'district'), (652824, 6528, '', 'district'), (652825, 6528, '', 'district'), (652826, 6528, '', 'district'), (652827, 6528, '', 'district'), (652828, 6528, '', 'district'), (652829, 6528, '', 'district'), (652871, 6528, '', 'district'), (652901, 6529, '', 'district'), (652902, 6529, '', 'district'), (652922, 6529, '宿', 'district'), (652924, 6529, '', 'district'), (652925, 6529, '', 'district'), (652926, 6529, '', 'district'), (652927, 6529, '', 'district'), (652928, 6529, '', 'district'), (652929, 6529, '', 'district'), (653001, 6530, '', 'district'), (653022, 6530, '', 'district'), (653023, 6530, '', 'district'), (653024, 6530, '', 'district'), (653101, 6531, '', 'district'), (653121, 6531, '', 'district'), (653122, 6531, '', 'district'), (653123, 6531, '', 'district'), (653124, 6531, '', 'district'), (653125, 6531, '', 'district'), (653126, 6531, '', 'district'), (653127, 6531, '', 'district'), (653128, 6531, '', 'district'), (653129, 6531, '', 'district'), (653130, 6531, '', 'district'), (653131, 6531, '', 'district'), (653201, 6532, '', 'district'), (653221, 6532, '', 'district'), (653222, 6532, '', 'district'), (653223, 6532, '', 'district'), (653224, 6532, '', 'district'), (653225, 6532, '', 'district'), (653226, 6532, '', 'district'), (653227, 6532, '', 'district'), (654002, 6540, '', 'district'), (654003, 6540, '', 'district'), (654004, 6540, '', 'district'), (654021, 6540, '', 'district'), (654022, 6540, '', 'district'), (654023, 6540, '', 'district'), (654024, 6540, '', 'district'), (654025, 6540, '', 'district'), (654026, 6540, '', 'district'), (654027, 6540, '', 'district'), (654028, 6540, '', 'district'), (654201, 6542, '', 'district'), (654202, 6542, '', 'district'), (654203, 6542, '', 'district'), (654221, 6542, '', 'district'), (654224, 6542, '', 'district'), (654225, 6542, '', 'district'), (654226, 6542, '', 'district'), (654301, 6543, '', 'district'), (654321, 6543, '', 'district'), (654322, 6543, '', 'district'), (654323, 6543, '', 'district'), (654324, 6543, '', 'district'), (654325, 6543, '', 'district'), (654326, 6543, '', 'district'), (659001, 6590, '', 'district'), (659002, 6590, '', 'district'), (659003, 6590, '', 'district'), (659004, 6590, '', 'district'), (659005, 6590, '', 'district'), (659006, 6590, '', 'district'), (659007, 6590, '', 'district'), (659008, 6590, '', 'district'), (659009, 6590, '', 'district'), (659010, 6590, '', 'district'), (659011, 6590, '', 'district'), (711001, 7110, '', 'district'), (711002, 7110, '', 'district'), (711003, 7110, '', 'district'), (711005, 7110, '', 'district'), (711009, 7110, '', 'district'), (711010, 7110, '', 'district'), (711011, 7110, '', 'district'), (711013, 7110, '', 'district'), (711014, 7110, '', 'district'), (711015, 7110, '', 'district'), (711016, 7110, '', 'district'), (711017, 7110, '', 'district'), (711101, 7111, '', 'district'), (711102, 7111, '', 'district'), (711103, 7111, '西', 'district'), (711104, 7111, '', 'district'), (711105, 7111, '', 'district'), (711106, 7111, '西', 'district'), (711107, 7111, '', 'district'), (711108, 7111, '', 'district'), (711141, 7111, '', 'district'), (711142, 7111, '', 'district'), (711143, 7111, '', 'district'), (711144, 7111, '', 'district'), (711145, 7111, '鹿', 'district'), (711146, 7111, '', 'district'), (711147, 7111, '', 'district'), (711148, 7111, '', 'district'), (711149, 7111, '', 'district'), (711150, 7111, '', 'district'), (711151, 7111, '', 'district'), (711152, 7111, '', 'district'), (711153, 7111, '', 'district'), (711154, 7111, '', 'district'), (711155, 7111, '', 'district'), (711156, 7111, '', 'district'), (711157, 7111, '', 'district'), (711158, 7111, '', 'district'), (711159, 7111, '', 'district'), (711160, 7111, '', 'district'), (711161, 7111, '', 'district'), (711201, 7112, '', 'district'), (711202, 7112, '', 'district'), (711203, 7112, '', 'district'), (711204, 7112, '', 'district'), (711205, 7112, '', 'district'), (711206, 7112, '', 'district'), (711207, 7112, '', 'district'), (711301, 7113, '', 'district'), (711302, 7113, '', 'district'), (711304, 7113, '', 'district'), (711306, 7113, '', 'district'), (711307, 7113, '', 'district'), (711308, 7113, '西', 'district'), (711341, 7113, '', 'district'), (711342, 7113, '', 'district'), (711343, 7113, '', 'district'), (711344, 7113, '', 'district'), (711345, 7113, '', 'district'), (711346, 7113, '', 'district'), (711347, 7113, '', 'district'), (711348, 7113, '', 'district'), (711349, 7113, '', 'district'), (711350, 7113, '', 'district'), (711351, 7113, '', 'district'), (711352, 7113, '', 'district'), (711353, 7113, '西', 'district'), (711354, 7113, '', 'district'), (711355, 7113, '', 'district'), (711356, 7113, '', 'district'), (711357, 7113, '', 'district'), (711358, 7113, '', 'district'), (711359, 7113, '', 'district'), (711360, 7113, '', 'district'), (711361, 7113, '', 'district'), (711362, 7113, '', 'district'), (711363, 7113, '', 'district'), (711364, 7113, '西', 'district'), (711365, 7113, '', 'district'), (711366, 7113, '', 'district'), (711367, 7113, '', 'district'), (711368, 7113, '', 'district'), (711369, 7113, '', 'district'), (711370, 7113, '', 'district'), (711371, 7113, '', 'district'), (711401, 7114, '', 'district'), (711402, 7114, '', 'district'), (711403, 7114, '', 'district'), (711404, 7114, '', 'district'), (711405, 7114, '', 'district'), (711406, 7114, '', 'district'), (711407, 7114, '', 'district'), (711408, 7114, '', 'district'), (711409, 7114, '', 'district'), (711410, 7114, '', 'district'), (711411, 7114, '', 'district'), (711441, 7114, '', 'district'), (711442, 7114, '', 'district'), (711443, 7114, '', 'district'), (711444, 7114, '', 'district'), (711445, 7114, '', 'district'), (711446, 7114, '', 'district'), (711448, 7114, '', 'district'), (711449, 7114, '', 'district'), (711450, 7114, '', 'district'), (711451, 7114, '', 'district'), (711452, 7114, '', 'district'), (711453, 7114, '', 'district'), (711454, 7114, '', 'district'), (711455, 7114, '', 'district'), (711456, 7114, '', 'district'), (711457, 7114, '', 'district'), (711458, 7114, '', 'district'), (711459, 7114, '', 'district'), (711460, 7114, '', 'district'), (711461, 7114, '', 'district'), (711462, 7114, '', 'district'), (711463, 7114, '', 'district'), (711464, 7114, '', 'district'), (711465, 7114, '', 'district'), (711466, 7114, '', 'district'), (711467, 7114, '', 'district'), (711468, 7114, '', 'district'), (711501, 7115, '', 'district'), (711502, 7115, '', 'district'), (711503, 7115, '', 'district'), (711504, 7115, '', 'district'), (711505, 7115, '', 'district'), (711506, 7115, '', 'district'), (711507, 7115, '', 'district'), (711508, 7115, '', 'district'), (711509, 7115, '', 'district'), (711510, 7115, '', 'district'), (711511, 7115, '', 'district'), (711514, 7115, '', 'district'), (711515, 7115, '', 'district'), (711516, 7115, '', 'district'), (711517, 7115, '', 'district'), (711518, 7115, '', 'district'), (711519, 7115, '', 'district'), (711521, 7115, '', 'district'), (711522, 7115, '', 'district'), (711523, 7115, '', 'district'), (711524, 7115, '', 'district'), (711525, 7115, '', 'district'), (711526, 7115, '', 'district'), (711527, 7115, '', 'district'), (711528, 7115, '', 'district'), (711530, 7115, '', 'district'), (711531, 7115, '', 'district'), (711532, 7115, '', 'district'), (711533, 7115, '', 'district'), (711601, 7116, '', 'district'), (711602, 7116, '', 'district'), (711603, 7116, '', 'district'), (711604, 7116, '', 'district'), (711605, 7116, '', 'district'), (711606, 7116, '', 'district'), (711607, 7116, '', 'district'), (711608, 7116, '', 'district'), (711609, 7116, '', 'district'), (711610, 7116, '', 'district'), (711611, 7116, '', 'district'), (711612, 7116, '', 'district'), (711701, 7117, '', 'district'), (711702, 7117, '', 'district'), (711703, 7117, '', 'district'), (711704, 7117, '', 'district'), (711705, 7117, '', 'district'), (711706, 7117, '', 'district'), (711707, 7117, '', 'district'), (711708, 7117, '', 'district'), (711709, 7117, '', 'district'), (711710, 7117, '', 'district'), (711711, 7117, '', 'district'), (711712, 7117, '', 'district'), (711713, 7117, '', 'district'), (711801, 7118, '', 'district'), (711802, 7118, '西', 'district'), (711902, 7119, '', 'district'), (711903, 7119, '西', 'district'), (711904, 7119, '', 'district'), (711905, 7119, '', 'district'), (711906, 7119, '', 'district'), (711908, 7119, '', 'district'), (711909, 7119, '', 'district'), (711910, 7119, '', 'district'), (711911, 7119, '', 'district'), (711912, 7119, '', 'district'), (711913, 7119, '', 'district'), (711914, 7119, '', 'district'), (711915, 7119, '', 'district'), (712001, 7120, '', 'district'), (712002, 7120, '', 'district'), (712003, 7120, '', 'district'), (712004, 7120, '', 'district'), (712005, 7120, '', 'district'), (712006, 7120, '', 'district'), (712007, 7120, '西', 'district'), (712008, 7120, '', 'district'), (712009, 7120, '', 'district'), (712010, 7120, '', 'district'), (712011, 7120, '', 'district'), (712012, 7120, '', 'district'), (712013, 7120, '', 'district'), (712014, 7120, '', 'district'), (712015, 7120, '', 'district'), (712016, 7120, '', 'district'), (712017, 7120, '', 'district'), (712018, 7120, '', 'district'), (712201, 7122, '', 'district'), (712202, 7122, '', 'district'), (712203, 7122, '', 'district'), (712204, 7122, '', 'district'), (712205, 7122, '', 'district'), (712206, 7122, '', 'district'), (712207, 7122, '鹿', 'district'), (712208, 7122, '', 'district'), (712209, 7122, '', 'district'), (712210, 7122, '', 'district'), (712211, 7122, '', 'district'), (712212, 7122, '', 'district'), (712213, 7122, '', 'district'), (712301, 7123, '', 'district'), (712302, 7123, '鹿', 'district'), (712303, 7123, '', 'district'), (712304, 7123, '', 'district'), (712305, 7123, '', 'district'), (712306, 7123, '', 'district'), (712307, 7123, '', 'district'), (712308, 7123, '', 'district'), (712309, 7123, '线西', 'district'), (712310, 7123, '', 'district'), (712311, 7123, '', 'district'), (712312, 7123, '', 'district'), (712313, 7123, '', 'district'), (712314, 7123, '', 'district'), (712315, 7123, '', 'district'), (712316, 7123, '', 'district'), (712317, 7123, '', 'district'), (712318, 7123, '', 'district'), (712319, 7123, '', 'district'), (712320, 7123, '', 'district'), (712321, 7123, '', 'district'), (712322, 7123, '', 'district'), (712323, 7123, '', 'district'), (712324, 7123, '', 'district'), (712325, 7123, '', 'district'), (712326, 7123, '', 'district'), (712401, 7124, '', 'district'), (712402, 7124, '', 'district'), (712403, 7124, '', 'district'), (712501, 7125, '', 'district'), (712502, 7125, '', 'district'), (712503, 7125, '', 'district'), (712504, 7125, '西', 'district'), (712505, 7125, '', 'district'), (712506, 7125, '', 'district'), (712507, 7125, '', 'district'), (712508, 7125, '', 'district'), (712509, 7125, '', 'district'), (712510, 7125, '', 'district'), (712511, 7125, '', 'district'), (712512, 7125, '', 'district'), (712513, 7125, '', 'district'), (712514, 7125, '', 'district'), (712515, 7125, '', 'district'), (712516, 7125, '西', 'district'), (712517, 7125, '', 'district'), (712518, 7125, '', 'district'), (712519, 7125, '', 'district'), (712520, 7125, '', 'district'), (712602, 7126, '', 'district'), (712603, 7126, '', 'district'), (712604, 7126, '', 'district'), (712605, 7126, '', 'district'), (712606, 7126, '', 'district'), (712607, 7126, '', 'district'), (712608, 7126, '', 'district'), (712609, 7126, '', 'district'), (712610, 7126, '', 'district'), (712611, 7126, '鹿', 'district'), (712612, 7126, '', 'district'), (712613, 7126, '', 'district'), (712614, 7126, '', 'district'), (712615, 7126, '', 'district'), (712616, 7126, '', 'district'), (712617, 7126, '', 'district'), (712618, 7126, '', 'district'), (712620, 7126, '', 'district'), (712901, 7129, '', 'district'), (712902, 7129, '', 'district'), (712903, 7129, '', 'district'), (712904, 7129, '', 'district'), (712905, 7129, '', 'district'), (712906, 7129, '', 'district'), (712907, 7129, '', 'district'), (712908, 7129, '', 'district'), (712909, 7129, '', 'district'), (712910, 7129, '', 'district'), (712911, 7129, '', 'district'), (712912, 7129, '', 'district'), (712913, 7129, '', 'district'), (712914, 7129, '', 'district'), (712915, 7129, '', 'district'), (712916, 7129, '', 'district'), (712917, 7129, '', 'district'), (712918, 7129, '', 'district'), (712919, 7129, '', 'district'), (712920, 7129, '', 'district'), (712921, 7129, '', 'district'), (712922, 7129, '', 'district'), (712923, 7129, '', 'district'), (712924, 7129, '', 'district'), (712925, 7129, '', 'district'), (712926, 7129, '', 'district'), (712927, 7129, '', 'district'), (712928, 7129, '', 'district'), (712929, 7129, '', 'district'), (712930, 7129, '', 'district'), (712931, 7129, '', 'district'), (712932, 7129, '', 'district'), (712933, 7129, '', 'district'), (713001, 7130, '', 'district'), (713002, 7130, '', 'district'), (713003, 7130, '', 'district'), (713004, 7130, '', 'district'), (713005, 7130, '', 'district'), (713006, 7130, '寿', 'district'), (713007, 7130, '', 'district'), (713008, 7130, '', 'district'), (713009, 7130, '', 'district'), (713010, 7130, '', 'district'), (713011, 7130, '', 'district'), (713012, 7130, '', 'district'), (713013, 7130, '', 'district'), (713101, 7131, '', 'district'), (713102, 7131, '', 'district'), (713103, 7131, '', 'district'), (713104, 7131, '', 'district'), (713105, 7131, '', 'district'), (713106, 7131, '', 'district'), (713107, 7131, '', 'district'), (713108, 7131, '', 'district'), (713109, 7131, '鹿', 'district'), (713110, 7131, '', 'district'), (713111, 7131, '绿', 'district'), (713112, 7131, '', 'district'), (713113, 7131, '', 'district'), (713114, 7131, '', 'district'), (713115, 7131, '', 'district'), (713116, 7131, '屿', 'district'), (713201, 7132, '', 'district'), (713202, 7132, '西', 'district'), (713203, 7132, '', 'district'), (713204, 7132, '西屿', 'district'), (713205, 7132, '', 'district'), (713206, 7132, '', 'district');
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_data_express` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
`code` varchar(60) NULL DEFAULT NULL COMMENT '',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `code`(`code`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
-- shopro_data_express 数据
INSERT INTO `__PREFIX__shopro_data_express` (`id`, `name`, `code`, `weigh`) VALUES (1, '', 'SF', 0), (2, '', 'HTKY', 0), (3, '', 'ZTO', 0), (4, '', 'STO', 0), (5, '', 'YTO', 0), (6, '', 'YD', 0), (7, '', 'YZPY', 0), (8, 'EMS', 'EMS', 0), (9, '', 'HHTT', 0), (10, '', 'JD', 0), (11, '', 'UC', 0), (12, '', 'DBL', 0), (13, '', 'ZJS', 0), (14, '', 'AJ', 0), (15, '', 'ALKJWL', 0), (16, '', 'AX', 0), (17, '', 'AYUS', 0), (18, '', 'AMAZON', 0), (19, '', 'AOMENYZ', 0), (20, '', 'ANE', 0), (21, '', 'ADD', 0), (22, '线', 'AYCA', 0), (23, '', 'AXD', 0), (24, '', 'ANEKY', 0), (25, '', 'ABGJ', 0), (26, '', 'ANNTO', 0), (27, ' ', 'BDT', 0), (28, '', 'BETWL', 0), (29, '', 'BJXKY', 0), (30, '', 'BNTWL', 0), (31, '', 'BFDF', 0), (32, ' ', 'BHGJ', 0), (33, '', 'BFAY', 0), (34, '', 'BTWL', 0), (35, '', 'BBFZY', 0), (36, '', 'BCTWL', 0), (37, '', 'CFWL', 0), (38, '', 'CHTWL', 0), (39, '', 'CXHY', 0), (40, '100', 'CITY100', 0), (41, '', 'CJKD', 0), (42, 'CNPEX中邮快递', 'CNPEX', 0), (43, 'COE东方快递', 'COE', 0), (44, '', 'CSCY', 0), (45, '', 'CDSTKY', 0), (46, '', 'CTG', 0), (47, '', 'CRAZY', 0), (48, 'CBO钏博物流', 'CBO', 0), (49, '', 'CNEX', 0), (50, '', 'CND', 0), (51, '', 'CSTD', 0), (52, 'D速物流', 'DSWL', 0), (53, '', 'DLG ', 0), (54, '', 'DTWL', 0), (55, '', 'DJKJWL', 0), (56, '', 'DEKUN', 0), (57, '', 'DBLKY', 0), (58, '鹿', 'DML', 0), (59, '', 'DNWL', 0), (60, '', 'EST365', 0), (61, 'E特快', 'ETK', 0), (62, 'EMS国内', 'EMS2', 0), (63, 'EWE', 'EWE', 0), (64, '', 'FKD', 0), (65, ' ', 'FTD', 0), (66, '', 'FYKD', 0), (67, '', 'FASTGO', 0), (68, '', 'FBKD', 0), (69, '', 'FBOX', 0), (70, '', 'FHKD', 0), (71, '', 'FRGYL', 0), (72, '', 'FYPS', 0), (73, '', 'FYSD', 0), (74, '', 'FT', 0), (75, ' ', 'GD', 0), (76, '广', 'GDEMS', 0), (77, '', 'GSD', 0), (78, '广 ', 'GTONG', 0), (79, '', 'GDKD', 0), (80, '', 'GHX', 0), (81, '广', 'GTKD', 0), (82, '', 'GTKY', 0), (83, '', 'GAI', 0), (84, '', 'GKSD', 0), (85, '', 'GTSD', 0), (86, '', 'HGLL', 0), (87, '', 'HLWL', 0), (88, '', 'HOAU', 0), (89, '鸿', 'HOTSCM', 0), (90, '', 'HPTEX', 0), (91, '', 'hq568', 0), (92, ' ', 'HQSY', 0), (93, '', 'HXLWL', 0), (94, '', 'HBJH', 0), (95, '', 'HF', 0), (96, '', 'HHKD', 0), (97, '', 'HHWL', 0), (98, '', 'HMJKD', 0), (99, '', 'HMSD', 0), (100, '', 'HQKY', 0), (101, '', 'HSWL', 0), (102, '鸿', 'HTWL', 0), (103, ' ', 'HXWL', 0), (104, '', 'HFHW', 0), (105, '', 'HLONGWL', 0), (106, '', 'HQKD', 0), (107, '', 'HRWL', 0), (108, '', 'HTKD', 0), (109, '', 'HYH', 0), (110, '', 'HLYSD', 0), (111, '', 'HJWL', 0), (112, '', 'HISENSE', 0), (113, ' ', 'JAD', 0), (114, '广', 'JGSD', 0), (115, '', 'JIUYE', 0), (116, '', 'JXD', 0), (117, '', 'JYKD', 0), (118, '', 'JCEX', 0), (119, '', 'JTKD', 0), (120, '', 'JYSY', 0), (121, '', 'JYM', 0), (122, '', 'JGWL', 0), (123, '', 'JYWL', 0), (124, '', 'JDKY', 0), (125, '', 'JDWL', 0), (126, '', 'JTSD', 0), (127, '', 'KYSY', 0), (128, '', 'KFW', 0), (129, '', 'KSDWL', 0), (130, '', 'KLWL', 0), (131, '', 'KTKD', 0), (132, '', 'KYDSD', 0), (133, '', 'KYWL', 0), (134, '8', 'KBSY', 0), (135, '', 'LB', 0), (136, '', 'LHKD', 0), (137, '', 'LJD', 0), (138, '', 'LJS', 0), (139, '', 'LHT', 0), (140, '', 'MB', 0), (141, '', 'MHKD', 0), (142, ' ', 'MK', 0), (143, '', 'MDM', 0), (144, '', 'MD', 0), (145, '', 'MSKD', 0), (146, '', 'MRDY', 0), (147, '', 'MLWL', 0), (148, '', 'NFCM', 0), (149, '', 'NJSBWL', 0), (150, '', 'NEDA', 0), (151, '', 'PADTF', 0), (152, '', 'PANEX', 0), (153, '', 'PJ', 0), (154, '', 'PXWL', 0), (155, 'PCA Express', 'PCA', 0), (156, '', 'QCKD', 0), (157, '', 'QRT', 0), (158, '', 'QUICK', 0), (159, '', 'QXT', 0), (160, '', 'QYZY', 0), (161, '', 'RFD', 0), (162, '', 'RQ', 0), (163, '', 'RRS', 0), (164, '', 'RLWL', 0), (165, '', 'RFEX', 0), (166, '', 'SAD', 0), (167, '', 'SNWL', 0), (168, '', 'SAWL', 0), (169, '', 'SBWL', 0), (170, '', 'SDWL', 0), (171, '', 'SFWL', 0), (172, '', 'ST', 0), (173, '', 'STWL', 0), (174, '', 'SUBIDA', 0), (175, 'e站', 'SDEZ', 0), (176, '', 'SCZPDS', 0), (177, '', 'SURE', 0), (178, '', 'SDHH', 0), (179, '', 'SFGJ', 0), (180, '', 'SHWL', 0), (181, '', 'SJWL', 0), (182, '', 'STSD', 0), (183, '西', 'SXHMJ', 0), (184, '', 'SYKD', 0), (185, '', 'SS', 0), (186, '', 'STKD', 0), (187, '', 'SJ', 0), (188, '', 'SX', 0), (189, '', 'SQWL', 0), (190, '', 'SYJWDX', 0), (191, '', 'TAIWANYZ', 0), (192, '', 'TSSTO', 0), (193, '', 'TJS', 0), (194, '', 'TYWL', 0), (195, '', 'TDHY', 0), (196, '', 'THTX', 0), (197, '', 'TLWL', 0), (198, '', 'UAPEX', 0), (199, 'UBI', 'UBI', 0), (200, 'UEQ Express', 'UEQ', 0), (201, ' ', 'WJK', 0), (202, '', 'WJWL', 0), (203, '', 'WHTZX', 0), (204, '', 'WPE', 0), (205, '', 'WM', 0), (206, '', 'WXWL', 0), (207, '', 'WTP', 0), (208, '', 'WTWL', 0), (209, ' ', 'XCWL', 0), (210, '', 'XFEX', 0), (211, '', 'XYT', 0), (212, '', 'XBWL', 0), (213, '', 'XLYT', 0), (214, '', 'XJ', 0), (215, '', 'YADEX', 0), (216, '', 'YCWL', 0), (217, '', 'YCSY', 0), (218, '', 'YDH', 0), (219, ' ', 'YDT', 0), (220, '', 'YFHEX', 0), (221, '', 'YFSD', 0), (222, '', 'YTKD', 0), (223, '亿', 'YXKD', 0), (224, '西', 'YUNDX', 0), (225, '', 'YMDD', 0), (226, '', 'YZBK', 0), (227, '', 'YZTSY', 0), (228, '', 'YFSUYUN', 0), (229, '', 'YSDF', 0), (230, '耀', 'YF', 0), (231, '', 'YDKY', 0), (232, '', 'YL', 0), (233, '', 'YBJ', 0), (234, '', 'YFEX', 0), (235, '', 'YJSD', 0), (236, '', 'YLJY', 0), (237, '亿', 'YLSY', 0), (238, '', 'YMWL', 0), (239, '亿', 'YSH', 0), (240, '', 'YSKY', 0), (241, '', 'YTD', 0), (242, '鸿', 'YTFH', 0), (243, '', 'YTOGJ', 0), (244, '', 'YXWL', 0), (245, '//', 'YZGN', 0), (246, '', 'YZT', 0), (247, '', 'YBWL', 0), (248, '', 'ZENY', 0), (249, '', 'ZRSD', 0), (250, '', 'ZTKY', 0), (251, '', 'ZTWY', 0), (252, '', 'ZWYSD', 0), (253, '', 'ZY_AZY', 0), (254, '', 'ZY_BDA', 0), (255, '', 'ZY_BYECO', 0), (256, '', 'ZY_CTM', 0), (257, 'CUL中美速递', 'ZY_CUL', 0), (258, 'ETD', 'ZY_ETD', 0), (259, '', 'ZY_FCKD', 0), (260, '', 'ZY_FLSD', 0), (261, '', 'ZY_HCYD', 0), (262, '', 'ZY_HDB', 0), (263, '', 'ZY_HFMZ', 0), (264, '', 'ZY_HJSD', 0), (265, '', 'ZY_HMKD', 0), (266, '360hitao转运', 'ZY_HTAO', 0), (267, '', 'ZY_HTCUN', 0), (268, '365', 'ZY_HTKE', 0), (269, '', 'ZY_HTONG', 0), (270, '', 'ZY_HXKD', 0), (271, '', 'ZY_HXSY', 0), (272, 'LogisticsY', 'ZY_IHERB', 0), (273, '', 'ZY_LPZ', 0), (274, '', 'ZY_LZWL', 0), (275, '', 'ZY_MBZY', 0), (276, '', 'ZY_MJ', 0), (277, '168 ', 'ZY_MZ', 0), (278, 'e捷', 'ZY_OEJ', 0), (279, '', 'ZY_OZF', 0), (280, 'GO', 'ZY_OZGO', 0), (281, '', 'ZY_QMT', 0), (282, 'SCS国际物流', 'ZY_SCS', 0), (283, 'SOHO苏豪国际', 'ZY_SOHO', 0), (284, 'Sonic-Ex速递', 'ZY_SONIC', 0), (285, '', 'ZY_TCM', 0), (286, 'TrakPak', 'ZY_TPAK', 0), (287, '', 'ZY_TTHT', 0), (288, '', 'ZY_TZKD', 0), (289, '', 'ZY_XDKD', 0), (290, '', 'ZY_XDSY', 0), (291, '线', 'ZY_XGX', 0), (292, '', 'ZY_XJ', 0), (293, '', 'ZY_YGKD', 0), (294, '(UCS)', 'ZY_YJSD', 0), (295, '', 'ZY_YPW', 0), (296, '', 'ZY_YSW', 0), (297, '', 'ZYQS', 0), (298, '', 'ZYWL', 0), (299, '', 'ZHQKD', 0), (300, '', 'ZTE', 0), (301, '', 'ZTOKY', 0), (302, '', 'ZYKD', 0), (303, '', 'ZMKM', 0), (304, '', 'ZHWL', 0), (305, '', 'ZTWL', 0), (306, '', 'ZHN', 0), (307, '', 'ZYE', 0);
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_data_fake_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(60) NULL DEFAULT NULL COMMENT '',
`nickname` varchar(60) NULL DEFAULT NULL COMMENT '',
`mobile` varchar(20) NULL DEFAULT NULL COMMENT '',
`password` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`avatar` varchar(255) NULL DEFAULT NULL COMMENT '',
`gender` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '',
`email` varchar(60) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_data_faq` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL COMMENT '',
`content` text NOT NULL COMMENT '',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT ':normal=,hidden=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_data_page` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL COMMENT '',
`path` varchar(255) NOT NULL COMMENT '',
`group` varchar(20) NOT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
-- shopro_data_page 数据
INSERT INTO `__PREFIX__shopro_data_page` (`id`, `name`, `path`, `group`, `createtime`, `updatetime`) VALUES (1, '', '/pages/index/index', '', 1664350756, 1664350756), (2, '', '/pages/index/user', '', 1664350756, 1664350756), (3, '', '/pages/index/category', '', 1664350756, 1664350756), (4, '', '/pages/index/cart', '', 1664350756, 1664350756), (5, '', '/pages/index/search', '', 1664350756, 1664350756), (6, '', '/pages/index/page', '', 1664350756, 1664350756), (7, '', '/pages/goods/index', '', 1664350756, 1664350756), (8, '', '/pages/goods/groupon', '', 1664350756, 1664350756), (9, '', '/pages/goods/seckill', '', 1664350756, 1664350756), (10, '', '/pages/goods/score', '', 1664350756, 1664350756), (11, '', '/pages/goods/list', '', 1664350756, 1664350756), (12, '', '/pages/order/list', '', 1664350756, 1664350756), (13, '', '/pages/order/aftersale/list', '', 1664350756, 1664350756), (14, '', '/pages/user/info', '', 1664350756, 1664350756), (15, '', '/pages/user/goods-collect', '', 1664350756, 1664350756), (16, '', '/pages/user/goods-log', '', 1664350756, 1664350756), (17, '', '/pages/user/address/list', '', 1664350756, 1664350756), (18, '', '/pages/user/invoice/list', '', 1664350756, 1664350756), (19, '', '/pages/user/wallet/money', '', 1664350756, 1664350756), (20, '', '/pages/user/wallet/commission', '', 1664350756, 1664350756), (21, '', '/pages/user/wallet/score', '', 1664350756, 1664350756), (22, '', '/pages/commission/index', '', 1664350756, 1664350756), (23, '', '/pages/commission/apply', '', 1664350756, 1664350756), (24, '广', '/pages/commission/goods', '', 1664350756, 1664350756), (25, '', '/pages/commission/order', '', 1664350756, 1664350756), (26, '', '/pages/commission/share-log', '', 1664350756, 1664350756), (27, '', '/pages/commission/team', '', 1664350756, 1664350756), (28, '', '/pages/app/sign', '', 1664350756, 1664350756), (29, '', '/pages/app/score-shop', '', 1664350756, 1664350756), (30, '', '/pages/public/setting', '', 1664350756, 1664350756), (31, '', '/pages/public/feedback', '', 1664350756, 1664350756), (32, '', '/pages/public/richtext', '', 1664350756, 1664350756), (33, '', '/pages/public/faq', '', 1664350756, 1664350756), (34, '', '/pages/coupon/list', '', 1664350756, 1664350756), (35, '', '/pages/coupon/detail', '', 1664350756, 1664350756), (36, '', '/pages/chat/index', '', 1664350756, 1664350756), (37, '', '/pages/pay/recharge', '', 1664350756, 1664350756), (38, '', '/pages/pay/recharge-log', '', 1664350756, 1664350756), (39, '', '/pages/pay/withdraw', '', 1664350756, 1664350756), (40, '', '/pages/pay/withdraw-log', '', 1664350756, 1664350756), (41, '', '/pages/activity/groupon/order', '', 1664350756, 1664350756), (43, '', '/pages/activity/groupon/list', '', 1664350756, 1664350756), (44, '', '/pages/activity/seckill/list', '', 1664350756, 1664350756), (46, '', '/pages/commission/rank', '', 1660202947, 1660202947), (47, '', '/pages/app/coupon/index', '', 1663153046, 1663153046), (48, '', '/pages/app/coupon/detail', '', 1663153046, 1663153046), (49, '', '/pages/goods/activity', '', 1663311458, 1663311458);
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_data_richtext` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL COMMENT '',
`content` longtext NOT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
-- shopro_data_richtext 数据
INSERT INTO `__PREFIX__shopro_data_richtext` (`id`, `title`, `content`, `createtime`, `updatetime`) VALUES (1, '', '<p><br></p><p><span style=\"font-family: 微软雅黑;\">\"本协议\"</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使shopro商城软件</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1. 使使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">1. 使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">2. 使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">3. </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">1. 使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">2</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">3使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">4</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">5使使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">6使/</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">7 使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">8</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">9/</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">10使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">2. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">1使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">2使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">3使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">4使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">1. 使便</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 2. 使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 3. 使使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 4. 便使使使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 5. 使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">2. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">3. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 2使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">3使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">4</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">5</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">4. 使使/</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">5. 使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 1. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 2. 仿使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">3. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1. 使使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 2. 使使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 3. 使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">4. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">5. 使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 6. 使使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">7. </span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 2. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"> 3. </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">1. 使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">2. 便</span></p>', 1669008708, 1673018894), (2, '', '<p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\">使shopro商城前</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">1</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使使使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">2</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">SDK统计服务</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">SDK/API/JS代码版本IP地址iOS广告标识符IDFA)广MACIMEI/WiFi等CPU和电池使用情况等</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使 Cookie </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">Cookie为确保网站正常运转 Cookie Cookie Cookie</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> Cookie Cookie Cookie Cookie </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> Cookie 使</span></p><p><span style=\"font-family: 微软雅黑;\"> URL退</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">Do Not Track</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> Do Not Track Do Not Track Do Not Track</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">1</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">2</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">3</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">4</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访 </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">1</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">2</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">1</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">2</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使访使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> SSL https 使使访访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访使访访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使使访shopro客服</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">1 </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">2使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">3</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">4使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">5</span></p><p><br></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> 使</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> shopro商城---</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> shopro客服</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">-</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 1</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 2</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 3</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"> 4</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">5</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">14</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">使/访</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">7使访</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; </span></p><p><span style=\"font-family: 微软雅黑;\">SDK以及说明</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">SDKcom.igexin.sdk(;;)com.g.gysdk();com.xiaomi.mipush(;)com.getui(;;)com.huawei.hms(;)com.amap.api(;;;;)com.huawei.agconnect(;)com.alipay(;;;)com.xiaomi.push(;)</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">DCloud;uni-app;App/Wap2App)IMEI/android;ID/DEVICE_ID/IDFASIM卡;IMSI;</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">SDK推送进程</span></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp;</span></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">//</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">; </span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> &nbsp; &nbsp;</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">https://render.alipay.com/p/c/k2cx0tg8</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> IMEIopenid</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">访Wi-Fi状态访访</span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">使</span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">https://lbs.amap.com/agreement/compliance</span></p><p><br></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><br></p><p><span style=\"font-family: 微软雅黑;\">xptech@qq.com</span></p><p><span style=\"font-family: 微软雅黑;\"> </span></p><p><span style=\"font-family: 微软雅黑;\"></span></p><p><br></p>', 1669008708, 1673018886), (3, '', '<p><span style=\"font-family: 微软雅黑;\">201751000,</span></p><p><br></p><p><span style=\"color: rgb(44, 62, 80); font-family: 微软雅黑;\">2055%5</span></p><p><br></p><p><span style=\"color: rgb(44, 62, 80); font-family: 微软雅黑;\">sheepjs产品生态广</span></p><p><br></p><p><br></p><p><br></p>', 1669008708, 1673018876);
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_decorate` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL COMMENT '',
`type` enum('template','diypage','designer') NOT NULL DEFAULT 'template' COMMENT ':template=,diypage=,designer=',
`memo` varchar(255) NULL DEFAULT NULL COMMENT '',
`platform` varchar(255) NULL DEFAULT NULL COMMENT '',
`status` enum('enable','disabled') NOT NULL DEFAULT 'disabled' COMMENT ':normal=,disabled=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_decorate_page` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`decorate_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` varchar(10) NOT NULL COMMENT '',
`page` longtext NOT NULL COMMENT '',
`image` longtext NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_dispatch` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NULL DEFAULT NULL COMMENT '',
`type` enum('express', 'autosend') NOT NULL DEFAULT 'express' COMMENT ':express=,autosend=',
`status` enum('normal','disabled') NOT NULL DEFAULT 'normal' COMMENT ':normal=,disabled=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_dispatch_autosend` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dispatch_id` int(11) NOT NULL COMMENT '',
`type` enum('text','params') NOT NULL DEFAULT 'text' COMMENT ':text=,params=',
`content` varchar(1200) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_dispatch_express` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dispatch_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` enum('number','weight') NOT NULL DEFAULT 'number' COMMENT ':number=,weight=',
`first_num` int(10) NOT NULL DEFAULT 0 COMMENT '(/)',
`first_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '(/)',
`additional_num` int(10) NOT NULL DEFAULT 0 COMMENT '(/)',
`additional_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '(/)',
`province_ids` varchar(255) NULL DEFAULT NULL COMMENT '',
`city_ids` varchar(255) NULL DEFAULT NULL COMMENT '',
`district_ids` varchar(255) NULL DEFAULT NULL COMMENT '',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_feedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` varchar(30) NOT NULL COMMENT '',
`content` varchar(1024) NULL DEFAULT NULL COMMENT '',
`images` varchar(1024) NULL DEFAULT NULL COMMENT '',
`phone` varchar(30) NULL DEFAULT NULL COMMENT '',
`status` enum('0','1') NOT NULL DEFAULT '0' COMMENT '',
`remark` varchar(255) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` enum('normal','virtual','card') NOT NULL DEFAULT 'normal' COMMENT ':normal=,virtual=,card=',
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
`subtitle` varchar(255) NULL DEFAULT NULL COMMENT '',
`category_ids` varchar(120) NULL DEFAULT NULL COMMENT '',
`image` varchar(255) NULL DEFAULT NULL COMMENT '',
`images` varchar(2500) NULL DEFAULT NULL COMMENT '',
`params` varchar(2500) NULL DEFAULT NULL COMMENT '',
`content` text NULL COMMENT '',
`original_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`is_sku` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '',
`limit_type` enum('none','daily','all') NOT NULL DEFAULT 'none' COMMENT ':none=,daily=,all=',
`limit_num` int(10) NOT NULL DEFAULT 0 COMMENT '',
`likes` int(10) NOT NULL DEFAULT 0 COMMENT '',
`views` int(10) NOT NULL DEFAULT 0 COMMENT '',
`sales` int(10) NOT NULL DEFAULT 0 COMMENT '',
`sales_show_type` enum('exact','sketchy') NOT NULL DEFAULT 'exact' COMMENT ':exact=,sketchy=',
`stock_show_type` enum('exact','sketchy') NOT NULL DEFAULT 'exact' COMMENT ':exact=,sketchy=',
`show_sales` int(10) NOT NULL DEFAULT 0 COMMENT '',
`service_ids` varchar(120) NULL DEFAULT NULL COMMENT '',
`dispatch_type` varchar(120) NULL DEFAULT NULL COMMENT '',
`dispatch_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`is_offline` tinyint(3) NOT NULL DEFAULT 0 COMMENT '线:0=,1=',
`status` enum('up','hidden','down') NOT NULL DEFAULT 'up' COMMENT ':up=,hidden=,down=',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods_comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_item_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`user_type` enum('user','fake_user') NOT NULL DEFAULT 'user' COMMENT ':user=,fake_user=',
`user_nickname` varchar(255) NULL DEFAULT NULL COMMENT '',
`user_avatar` varchar(255) NULL DEFAULT NULL COMMENT '',
`level` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '',
`content` varchar(512) NULL DEFAULT NULL COMMENT '',
`images` varchar(2500) NULL DEFAULT NULL COMMENT '',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT ':normal=,hidden=',
`admin_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`reply_content` varchar(512) NULL DEFAULT NULL COMMENT '',
`reply_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods_service` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(120) NULL DEFAULT NULL COMMENT '',
`image` varchar(255) NULL DEFAULT NULL COMMENT '',
`description` varchar(255) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods_sku` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '',
`parent_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods_sku_price` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_sku_ids` varchar(120) NULL DEFAULT NULL COMMENT '',
`goods_sku_text` varchar(255) NULL DEFAULT NULL COMMENT '',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`image` varchar(255) NULL DEFAULT NULL COMMENT '',
`stock` int(10) NOT NULL DEFAULT 0 COMMENT '',
`stock_warning` int(10) NULL DEFAULT NULL COMMENT '',
`sales` int(10) NOT NULL DEFAULT 0 COMMENT '',
`sn` varchar(50) NULL DEFAULT NULL COMMENT '',
`weight` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '(KG)',
`cost_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`original_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`status` enum('up','down') NOT NULL DEFAULT 'up' COMMENT ':up=,down=',
`weigh` int(8) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods_stock_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`admin_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_text` varchar(255) NULL DEFAULT NULL COMMENT '',
`before` int(10) NOT NULL DEFAULT 0 COMMENT '',
`stock` int(10) NOT NULL DEFAULT 0 COMMENT '',
`msg` varchar(255) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_goods_stock_warning` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_text` varchar(255) NULL DEFAULT NULL COMMENT '',
`stock_warning` int(10) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_mplive_goods` (
`id` int(11) NOT NULL,
`type` tinyint(4) NULL DEFAULT NULL COMMENT '',
`audit_id` int(11) NULL DEFAULT NULL COMMENT 'ID',
`goods_id` int(11) NULL DEFAULT NULL COMMENT 'ID',
`name` varchar(255) NULL DEFAULT NULL COMMENT '',
`cover_img_url` varchar(255) NULL DEFAULT NULL COMMENT '',
`price_type` tinyint(4) NULL DEFAULT NULL COMMENT '',
`price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`price2` decimal(10, 2) NULL DEFAULT NULL COMMENT '2',
`third_party_tag` tinyint(4) NULL DEFAULT NULL COMMENT '',
`third_party_appid` varchar(255) NULL DEFAULT NULL COMMENT 'APPID',
`on_shelves` tinyint(4) NULL DEFAULT NULL COMMENT '',
`audit_status` tinyint(4) NULL DEFAULT NULL COMMENT '',
`url` varchar(255) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_mplive_room` (
`roomid` int(10) NOT NULL COMMENT '',
`name` varchar(255) NULL DEFAULT NULL COMMENT '',
`type` tinyint(4) NULL DEFAULT NULL COMMENT '',
`status` int(10) NULL DEFAULT NULL COMMENT '',
`is_feeds_public` tinyint(4) NULL DEFAULT NULL COMMENT '',
`goods` varchar(255) NULL DEFAULT NULL COMMENT '',
`anchor_name` varchar(50) NULL DEFAULT NULL COMMENT '',
`share_img` varchar(255) NULL DEFAULT NULL COMMENT '',
`cover_img` varchar(255) NULL DEFAULT NULL COMMENT '',
`feeds_img` varchar(255) NULL DEFAULT NULL COMMENT '',
`close_replay` tinyint(4) NULL DEFAULT NULL COMMENT '',
`close_like` tinyint(4) NULL DEFAULT NULL COMMENT '',
`close_kf` tinyint(4) NULL DEFAULT NULL COMMENT '',
`close_goods` tinyint(4) NULL DEFAULT NULL COMMENT '',
`close_comment` tinyint(4) NULL DEFAULT NULL COMMENT '',
`creater_openid` varchar(255) NULL DEFAULT NULL COMMENT '',
`start_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`end_time` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`roomid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_notification` (
`id` char(36) NOT NULL,
`notification_type` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`type` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`notifiable_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`notifiable_type` varchar(60) NOT NULL COMMENT '',
`data` text NULL COMMENT '',
`read_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_notification_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`event` varchar(60) NULL DEFAULT NULL COMMENT '',
`channel` enum('Sms','Email','Websocket','WechatOfficialAccount','WechatMiniProgram','WechatOfficialAccountBizsend') NULL DEFAULT NULL COMMENT ':Sms=,Email=,Websocket=Websocket,WechatOfficialAccount=,WechatMiniProgram=,WechatOfficialAccountBizsend=',
`type` enum('default','custom') NULL DEFAULT NULL COMMENT ':default=,custom=',
`content` text NULL COMMENT '',
`status` enum('enable','disabled') NOT NULL DEFAULT 'enable' COMMENT ':enable=,disabled=',
`send_num` int(10) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` enum('goods','score') NOT NULL DEFAULT 'goods' COMMENT ':goods=,score=',
`order_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`activity_type` varchar(255) NULL DEFAULT NULL COMMENT '',
`promo_types` varchar(255) NULL DEFAULT NULL COMMENT '',
`goods_original_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`goods_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`dispatch_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`remark` varchar(255) NULL DEFAULT NULL COMMENT '',
`memo` varchar(255) NULL DEFAULT NULL COMMENT '',
`status` enum('closed','cancel','unpaid','paid','completed','pending') NOT NULL DEFAULT 'unpaid' COMMENT ':closed=,cancel=,unpaid=,paid=,completed=,pending=',
`order_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`score_amount` int(10) NOT NULL DEFAULT 0 COMMENT '',
`pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`original_pay_fee` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`remain_pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`paid_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`pay_mode` enum('online','offline') NOT NULL DEFAULT 'online' COMMENT ':online=线,offline=线',
`apply_refund_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '退:0=,1=退,-1=',
`total_discount_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`coupon_discount_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`promo_discount_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`coupon_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`invoice_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=',
`ext` varchar(2048) NULL DEFAULT NULL COMMENT '',
`platform` enum('H5','App','WechatOfficialAccount','WechatMiniProgram') NULL DEFAULT NULL COMMENT ':H5=H5,WechatOfficialAccount=,WechatMiniProgram=,App=App',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `order_sn`(`order_sn`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `status`(`status`) USING BTREE,
INDEX `createtime`(`createtime`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_action` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_item_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`oper_type` varchar(60) NULL DEFAULT NULL COMMENT '',
`oper_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_status` enum('closed','cancel','unpaid','paid','completed','pending') NOT NULL DEFAULT 'unpaid' COMMENT ':closed=,cancel=,unpaid=,paid=,completed=,pending=',
`dispatch_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`aftersale_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`refund_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '退:0=退,1=,2=',
`comment_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`remark` varchar(255) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `order_item_id`(`order_item_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_address` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`consignee` varchar(60) NULL DEFAULT NULL COMMENT '',
`mobile` varchar(20) NULL DEFAULT NULL COMMENT '',
`province_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`city_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`district_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`address` varchar(255) NULL DEFAULT NULL COMMENT '',
`province_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Id',
`city_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Id',
`district_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Id',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_aftersale` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`aftersale_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` varchar(60) NULL DEFAULT NULL COMMENT ':refund=退,return=退,other=',
`mobile` varchar(20) NULL DEFAULT NULL COMMENT '',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`activity_type` varchar(255) NULL DEFAULT NULL COMMENT '',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_item_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_text` varchar(60) NULL DEFAULT NULL COMMENT '',
`goods_title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
`goods_image` varchar(255) NOT NULL DEFAULT '' COMMENT '',
`goods_original_price` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`goods_price` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`discount_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`goods_num` int(10) NOT NULL DEFAULT 0 COMMENT '',
`dispatch_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`dispatch_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`aftersale_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-2=,-1=,0=,1=,2=',
`refund_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '退:0=退,1=',
`refund_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '退',
`reason` varchar(255) NULL DEFAULT NULL COMMENT '',
`content` varchar(1024) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `aftersale_sn`(`aftersale_sn`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_aftersale_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_aftersale_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`oper_type` varchar(60) NULL DEFAULT NULL COMMENT '',
`oper_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`dispatch_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`aftersale_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`refund_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '退:0=退,1=,2=',
`log_type` varchar(255) NULL DEFAULT NULL COMMENT '',
`content` varchar(255) NULL DEFAULT NULL COMMENT '',
`images` varchar(2500) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `order_aftersale_id`(`order_aftersale_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_express` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`method` enum('input','api','upload') NOT NULL DEFAULT 'input' COMMENT ':input=,api=,upload=',
`driver` varchar(30) NULL DEFAULT NULL COMMENT '',
`express_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`express_code` varchar(60) NULL DEFAULT NULL COMMENT '',
`express_no` varchar(60) NULL DEFAULT NULL COMMENT '',
`status` enum('noinfo','collect','transport','delivery','signfor','refuse','difficulty','invalid','timeout','fail','back') NOT NULL DEFAULT 'noinfo' COMMENT ':noinfo=,collect=,transport=,delivery=,signfor=,refuse=,difficulty=,invalid=,timeout=,fail=,back=退',
`ext` varchar(2048) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_express_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_express_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`content` varchar(512) NULL DEFAULT NULL COMMENT '',
`change_date` datetime(0) NULL DEFAULT NULL COMMENT '',
`status` enum('noinfo','collect','transport','delivery','signfor','refuse','difficulty','invalid','timeout','fail','back') NOT NULL DEFAULT 'noinfo' COMMENT ':noinfo=,collect=,transport=,delivery=,signfor=,refuse=,difficulty=,invalid=,timeout=,fail=,back=退',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `order_express_id`(`order_express_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_invoice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` enum('person','company') NULL DEFAULT NULL COMMENT ':person=,company=',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`name` varchar(255) NULL DEFAULT NULL COMMENT '',
`tax_no` varchar(255) NULL DEFAULT NULL COMMENT '',
`address` varchar(255) NULL DEFAULT NULL COMMENT '',
`mobile` varchar(20) NULL DEFAULT NULL COMMENT '',
`bank_name` varchar(255) NULL DEFAULT NULL COMMENT '',
`bank_no` varchar(255) NULL DEFAULT NULL COMMENT '',
`amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`download_urls` varchar(2500) NULL DEFAULT NULL COMMENT '',
`invoice_amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`status` enum('cancel','unpaid','waiting','finish') NOT NULL DEFAULT 'unpaid' COMMENT ':cancel=,unpaid=,waiting=,finish=',
`finish_time` bigint(16) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_order_item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_type` enum('normal','virtual','card') NOT NULL DEFAULT 'normal' COMMENT ':normal=,virtual=,card=',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`activity_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`activity_type` varchar(255) NULL DEFAULT NULL COMMENT '',
`promo_types` varchar(255) NULL DEFAULT NULL COMMENT '',
`item_goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '|',
`goods_sku_text` varchar(60) NULL DEFAULT NULL COMMENT '',
`goods_title` varchar(255) NULL DEFAULT NULL COMMENT '',
`goods_image` varchar(255) NULL DEFAULT NULL COMMENT '',
`goods_original_price` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`goods_price` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`goods_num` int(10) NOT NULL DEFAULT 0 COMMENT '',
`goods_weight` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '(KG)',
`discount_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '()',
`dispatch_status` tinyint(3) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`dispatch_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`dispatch_type` varchar(60) NULL DEFAULT NULL COMMENT '',
`dispatch_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`aftersale_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`comment_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`refund_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '退:0=退,1=,2=',
`refund_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '退',
`refund_msg` varchar(255) NULL DEFAULT NULL COMMENT '退',
`order_express_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`ext` varchar(2048) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `goods_id`(`goods_id`) USING BTREE,
INDEX `activity_id`(`activity_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_pay` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_type` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`pay_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`pay_type` enum('wechat','alipay','money','score','offline') NULL DEFAULT NULL COMMENT ':wechat=,alipay=,money=,score=,offline=线',
`pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`real_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`transaction_id` varchar(60) NULL DEFAULT NULL COMMENT '',
`payment_json` varchar(2048) NULL DEFAULT NULL COMMENT '',
`paid_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`status` enum('unpaid','paid','refund') NULL DEFAULT NULL COMMENT ':unpaid=,paid=,refund=退',
`refund_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '退',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `pay_sn`(`pay_sn`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_pay_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NULL DEFAULT NULL COMMENT '',
`type` enum('wechat','alipay') NULL DEFAULT NULL COMMENT ':wechat=,alipay=',
`params` varchar(2500) NULL DEFAULT NULL COMMENT '',
`status` enum('normal','disabled') NOT NULL DEFAULT 'normal' COMMENT ':normal=,disabled=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `type`(`type`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_refund` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`refund_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '退',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`pay_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`pay_type` enum('wechat','alipay','money','score','offline') NULL DEFAULT NULL COMMENT ':wechat=,alipay=,money=,score=,offline=线',
`refund_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '退',
`refund_type` varchar(60) NULL DEFAULT NULL COMMENT '退',
`refund_method` varchar(60) NULL DEFAULT NULL COMMENT '退',
`status` enum('ing','completed','fail') NULL DEFAULT 'ing' COMMENT '退:ing=退,completed=退,fail=退',
`remark` varchar(255) NULL DEFAULT NULL COMMENT '',
`platform` varchar(60) NULL DEFAULT NULL COMMENT '',
`payment_json` varchar(2048) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `refund_sn`(`refund_sn`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '退';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_score_sku_price` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_sku_price_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`stock` int(10) NOT NULL DEFAULT 0 COMMENT '',
`sales` int(10) NOT NULL DEFAULT 0 COMMENT '',
`price` decimal(10, 2) NULL DEFAULT NULL COMMENT '',
`score` int(10) NOT NULL DEFAULT 0 COMMENT '',
`status` enum('up','down') NOT NULL DEFAULT 'up' COMMENT ':up=,down=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `goods_id`(`goods_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_search_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`keyword` varchar(255) NOT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_share` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`spm` varchar(255) NULL DEFAULT NULL COMMENT 'spm',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`share_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`page` varchar(50) NULL DEFAULT NULL COMMENT '',
`query` varchar(255) NULL DEFAULT NULL COMMENT '',
`platform` varchar(50) NULL DEFAULT NULL COMMENT '',
`from` varchar(50) NULL DEFAULT NULL COMMENT '',
`ext` text NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `share_id`(`share_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_third_oauth` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`admin_id` int(11) NOT NULL DEFAULT 0 COMMENT 'ID',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT 'ID',
`provider` varchar(20) NOT NULL COMMENT '',
`platform` varchar(20) NOT NULL COMMENT '',
`openid` varchar(50) NOT NULL COMMENT '',
`unionid` varchar(50) NULL DEFAULT NULL COMMENT '',
`nickname` varchar(255) NULL DEFAULT NULL COMMENT '',
`avatar` varchar(255) NULL DEFAULT NULL COMMENT '',
`login_num` int(10) NOT NULL DEFAULT 0 COMMENT '使',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`, `openid`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_trade_order` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` enum('recharge') NULL DEFAULT NULL COMMENT ':recharge=',
`order_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`status` enum('closed','cancel','unpaid','paid','completed') NOT NULL DEFAULT 'unpaid' COMMENT ':closed=,cancel=,unpaid=,paid=,completed=',
`remark` varchar(255) NULL DEFAULT NULL COMMENT '',
`order_amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`remain_pay_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`paid_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`ext` varchar(2048) NULL DEFAULT NULL COMMENT '',
`platform` enum('H5','App','WechatOfficialAccount','WechatMiniProgram') NULL DEFAULT NULL COMMENT ':H5=H5,WechatOfficialAccount=,WechatMiniProgram=,App=App',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `order_sn`(`order_sn`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `status`(`status`) USING BTREE,
INDEX `createtime`(`createtime`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_user_account` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` varchar(20) NOT NULL COMMENT ':wechat=,alipay=,bank=',
`account_name` varchar(255) NULL DEFAULT NULL COMMENT '',
`account_header` varchar(255) NULL DEFAULT NULL COMMENT '',
`account_no` varchar(255) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_user_address` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`consignee` varchar(60) NULL DEFAULT NULL COMMENT '',
`mobile` varchar(20) NULL DEFAULT NULL COMMENT '',
`province_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`city_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`district_name` varchar(60) NULL DEFAULT NULL COMMENT '',
`address` varchar(255) NULL DEFAULT NULL COMMENT '',
`province_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Id',
`city_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Id',
`district_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Id',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_user_coupon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`coupon_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`use_order_id` int(11) NOT NULL DEFAULT 0 COMMENT '使',
`use_time` bigint(16) NULL DEFAULT NULL COMMENT '使',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `coupon_id`(`coupon_id`) USING BTREE,
INDEX `use_time`(`use_time`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_user_goods_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` enum('favorite','views') NULL DEFAULT NULL COMMENT ':favorite=,views=',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `goods_id`(`goods_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `type`(`type`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_user_invoice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` enum('person','company') NULL DEFAULT NULL COMMENT ':person=,company=',
`name` varchar(225) NULL DEFAULT NULL COMMENT '',
`tax_no` varchar(225) NULL DEFAULT NULL COMMENT '',
`address` varchar(225) NULL DEFAULT NULL COMMENT '',
`mobile` varchar(20) NULL DEFAULT NULL COMMENT '',
`bank_name` varchar(225) NULL DEFAULT NULL COMMENT '',
`bank_no` varchar(225) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_user_wallet_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` varchar(10) NOT NULL COMMENT ':money=,commission=,score=',
`event` varchar(255) NOT NULL COMMENT ':money_recharge=,money_consume=,commission_withdraw=,commission_transfer=,commission_reward=,score_consume=,score_sign=,activity=',
`amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`before` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`after` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`memo` varchar(255) NULL DEFAULT NULL COMMENT '',
`ext` varchar(2500) NULL DEFAULT NULL COMMENT '',
`oper_type` varchar(20) NOT NULL COMMENT '',
`oper_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_wechat_material` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` enum('text','link') NOT NULL COMMENT ':text=,link=',
`content` varchar(2500) NOT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_wechat_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NULL DEFAULT NULL COMMENT '',
`rules` text NULL COMMENT '',
`status` int(1) NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`publishtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_wechat_reply` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group` enum('keywords','subscribe','default') NOT NULL COMMENT ':keywords=,subscribe=,default=',
`type` enum('text','link','video','voice','image','news') NULL DEFAULT NULL COMMENT ':text=,link=,video=,audio=,image=,media=',
`status` enum('enable','disabled') NOT NULL COMMENT ':enable=,disabled=',
`keywords` varchar(255) NULL DEFAULT NULL COMMENT '',
`content` text NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
`deletetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_withdraw` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`paid_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`charge_fee` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`charge_rate` decimal(10, 3) NOT NULL DEFAULT '0.000' COMMENT '',
`withdraw_sn` varchar(191) NOT NULL COMMENT '',
`withdraw_type` enum('bank','wechat','alipay') NOT NULL COMMENT ':bank=,wechat=,alipay=',
`withdraw_info` varchar(255) NULL DEFAULT NULL COMMENT '',
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-1=,0=,1=,2=',
`platform` enum('H5','App','WechatOfficialAccount','WechatMiniProgram') NULL DEFAULT NULL COMMENT ':H5=H5,WechatOfficialAccount=,WechatMiniProgram=,App=App',
`payment_json` varchar(2500) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `withdraw_sn`(`withdraw_sn`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_withdraw_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`withdraw_id` int(11) NOT NULL DEFAULT 0 COMMENT 'ID',
`content` varchar(255) NULL DEFAULT NULL COMMENT '',
`oper_type` varchar(50) NULL DEFAULT NULL COMMENT '',
`oper_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
-- 用户佣金
ALTER TABLE `__PREFIX__user` ADD COLUMN `commission` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '' AFTER `money`;
-- parent_id
ALTER TABLE `__PREFIX__user` ADD COLUMN `parent_user_id` int(11) NULL DEFAULT NULL COMMENT '' AFTER `verification`;
-- 用户消费累计
ALTER TABLE `__PREFIX__user` ADD COLUMN `total_consume` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '' AFTER `parent_user_id`;
ALTER TABLE `__PREFIX__user` ADD INDEX `parent_user_id`(`parent_user_id`) USING BTREE;
-- // -- commission code start --
-- 2.0.0 高级版更新 ↓
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_commission_agent` (
`user_id` int(11) NOT NULL COMMENT '',
`level` int(11) NOT NULL COMMENT '',
`apply_info` text NULL COMMENT '',
`total_income` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`child_order_money_0` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '/',
`child_order_money_1` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`child_order_money_2` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`child_order_money_all` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`child_order_count_0` int(11) NOT NULL DEFAULT 0 COMMENT '/',
`child_order_count_1` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_order_count_2` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_order_count_all` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_agent_count_1` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_agent_count_2` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_agent_count_all` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_agent_level_1` varchar(255) NULL DEFAULT '' COMMENT '',
`child_agent_level_all` varchar(255) NULL DEFAULT '' COMMENT '',
`child_user_count_1` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_user_count_2` int(11) NOT NULL DEFAULT 0 COMMENT '',
`child_user_count_all` int(11) NOT NULL DEFAULT 0 COMMENT '',
`upgrade_lock` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`apply_num` int(11) NOT NULL DEFAULT 0 COMMENT '',
`level_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':0=,>1=',
`status` varchar(20) NOT NULL DEFAULT 'normal' COMMENT ':forbidden=,pending=,freeze=,normal=,reject=',
`become_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_commission_goods` (
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`self_rules` tinyint(4) NULL DEFAULT 0 COMMENT ':0=,1=',
`commission_rules` text NULL COMMENT '',
`status` tinyint(4) NOT NULL COMMENT ':0=,1=',
`commission_config` text NULL COMMENT '',
`commission_order_status` tinyint(4) NOT NULL DEFAULT 1 COMMENT ':0=,1=',
PRIMARY KEY (`goods_id`) USING BTREE,
UNIQUE INDEX `goods_id`(`goods_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_commission_level` (
`level` int(11) NOT NULL COMMENT '',
`name` varchar(50) NOT NULL COMMENT '',
`image` varchar(255) NULL DEFAULT NULL COMMENT '',
`commission_rules` text NOT NULL COMMENT '',
`upgrade_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '',
`upgrade_rules` text NULL COMMENT '',
PRIMARY KEY (`level`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_commission_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`agent_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`event` varchar(255) NULL DEFAULT NULL COMMENT ':agent=,level=,order=,team=,reward=,share=',
`remark` varchar(255) NULL DEFAULT NULL COMMENT '',
`oper_type` varchar(60) NULL DEFAULT NULL COMMENT ':admin=,system=,user=',
`oper_id` int(11) NOT NULL DEFAULT 0 COMMENT 'ID',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `agent_id`(`agent_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_commission_order` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`self_buy` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':0=,1=',
`order_item_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`buyer_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`goods_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`agent_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`amount` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`reward_type` varchar(20) NOT NULL COMMENT '',
`reward_event` varchar(20) NOT NULL COMMENT '',
`commission_order_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-2=,-1=,0=,1=',
`commission_reward_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-2=退,-1=,0=,1=',
`commission_rules` text NULL COMMENT '',
`commission_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `order_id`(`order_id`) USING BTREE,
INDEX `order_item_id`(`order_item_id`) USING BTREE,
INDEX `buyer_id`(`buyer_id`) USING BTREE,
INDEX `goods_id`(`goods_id`) USING BTREE,
INDEX `agent_id`(`agent_id`) USING BTREE,
INDEX `createtime`(`createtime`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
CREATE TABLE IF NOT EXISTS `__PREFIX__shopro_commission_reward` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`agent_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`buyer_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`order_item_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`commission_order_id` int(11) NOT NULL DEFAULT 0 COMMENT '',
`type` enum('money','score','change','bank','commission') NOT NULL DEFAULT 'commission' COMMENT ':commission=,money=,score=,cash=(),change=,bank=',
`commission` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`original_commission` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '',
`commission_level` tinyint(4) NOT NULL DEFAULT 0 COMMENT '',
`agent_level` int(10) NOT NULL DEFAULT 0 COMMENT '',
`commission_rules` varchar(255) NULL DEFAULT NULL COMMENT '',
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-2=退,-1=,0=,1=',
`commission_time` bigint(16) NULL DEFAULT NULL COMMENT '',
`createtime` bigint(16) NULL DEFAULT NULL COMMENT '',
`updatetime` bigint(16) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`) USING BTREE,
INDEX `commission_order_id`(`commission_order_id`) USING BTREE,
INDEX `agent_id`(`agent_id`) USING BTREE,
INDEX `buyer_id`(`buyer_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '';
-- 2.0.0 高级版更新 ↑
-- // -- commission code end --
-- 3.0.1 更新 ↓
--
ALTER TABLE `__PREFIX__shopro_goods` ADD COLUMN `image_wh` varchar(255) NULL DEFAULT NULL COMMENT '' AFTER `image`;
-- 3.0.1 更新 ↑
-- 3.0.2 更新 ↓
--
ALTER TABLE `__PREFIX__shopro_pay` ADD COLUMN `buyer_info` varchar(255) NULL DEFAULT NULL COMMENT '' AFTER `transaction_id`;
-- 3.0.2 更新 ↑
-- 3.1.0 更新 ↓
ALTER TABLE `__PREFIX__shopro_withdraw` MODIFY COLUMN `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT ':-3=,-2=,-1=,0=,1=,2=' AFTER `withdraw_info`;
ALTER TABLE `__PREFIX__shopro_withdraw` ADD COLUMN `wechat_transfer_state` varchar(20) NULL DEFAULT NULL COMMENT '' AFTER `status`;
ALTER TABLE `__PREFIX__shopro_withdraw_log` MODIFY COLUMN `content` text NULL COMMENT '' AFTER `withdraw_id`;
-- 3.1.0 更新 ↑