Commit 3252acb9 authored by duanledexianxianxian's avatar duanledexianxianxian 😁

省市脚本

parent 116da754
This diff is collapsed.
/*
Navicat Premium Data Transfer
Source Server : 云展项目
Source Server Type : MySQL
Source Server Version : 80016
Source Host : rm-bp1t801z9rwo5rswvpo.mysql.rds.aliyuncs.com:3306
Source Schema : digital-expo-dev
Target Server Type : MySQL
Target Server Version : 80016
File Encoding : 65001
Date: 22/05/2020 10:13:30
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for tsys_business_parameter_geography
-- ----------------------------
DROP TABLE IF EXISTS `tsys_business_parameter_geography`;
CREATE TABLE `tsys_business_parameter_geography` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`pId` bigint(20) NULL DEFAULT NULL COMMENT '父id',
`local` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '语言类型 zh-cn en-us',
`district_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编号',
`district_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称',
`type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型',
`is_delete` tinyint(4) NULL DEFAULT 0 COMMENT '是否删除',
`creator_id` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`editor_id` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
`edit_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 551 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment