You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat Premium Dump SQL
Source Server : 10.10.14.210
Source Server Type : MySQL
Source Server Version : 50742 (5.7.42-log)
Source Host : 10.10.14.210:22066
Source Schema : yltcharge
Target Server Type : MySQL
Target Server Version : 50742 (5.7.42-log)
File Encoding : 65001
Date: 12/08/2024 11:45:06
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for t_ext_ketuo_station
-- ----------------------------
DROP TABLE IF EXISTS `t_ext_ketuo_station`;
CREATE TABLE `t_ext_ketuo_station` (
`station_sn` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车场号',
`station_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车场名称',
`b_use` int(11) NOT NULL DEFAULT 1 COMMENT '是否启用',
PRIMARY KEY (`station_sn`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '与科拓闸机对接充电结束免费2小时停车费用。' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of t_ext_ketuo_station
-- ----------------------------
INSERT INTO `t_ext_ketuo_station` VALUES ('2201002022121', '驿来特充电站(中东港站)', 1);
SET FOREIGN_KEY_CHECKS = 1;