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.

42 lines
1.9 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: 13/08/2024 08:15:10
*/
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_id` int(11) NOT NULL COMMENT '车场ID',
`station_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车场名称',
`third_party_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '第三方道闸的供应商名称',
`third_party_station_id` int(255) NOT NULL DEFAULT 0 COMMENT '第三方的车场ID',
`third_party_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '第三方车场对接的URL',
`third_party_appId` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '第三方车场对接的appId',
`third_party_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '第三方车场对接的pwd',
`b_use` int(11) NOT NULL DEFAULT 1 COMMENT '是否启用',
PRIMARY KEY (`station_id`) 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 (114, '驿来特充电站(中东港站)', '科拓', 431008480, 'http://kp-open.keytop.cn/unite-api', '13492', '28a2b82f3e9c48338eafbf84fecf8f9b', 1);
SET FOREIGN_KEY_CHECKS = 1;