|
|
@ -177,6 +177,58 @@ CREATE TABLE `sys_message_type` (
|
|
|
|
`message_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '报文字段类型',
|
|
|
|
`message_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '报文字段类型',
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 47 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '车辆报文类型表' ROW_FORMAT = Dynamic;
|
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 47 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '车辆报文类型表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
|
|
|
-- Records of sys_message_type
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (1, 'vin', 'VIN码', 'identification', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (2, 'timestamp', '时间戳', 'identification', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (3, 'longitude', '经度', 'identification', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (4, 'latitude', '纬度', 'identification', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (5, 'speed', '车速', 'identification', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (6, 'TM', '总里程', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (7, 'TV', '总电压', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (8, 'CC', '总电流', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (9, 'IR', '绝缘电阻', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (10, 'GP', '档位', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (11, 'APTV', '加速踏板行程值', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (12, 'BPTV', '制动踏板行程值', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (13, 'SFC', '燃料消耗率', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (14, 'MCT', '电机控制器温度', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (15, 'MS', '电机转速', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (16, 'MTO', '电机转矩', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (17, 'MTE', '电机温度', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (18, 'MV', '电机电压', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (19, 'MC', '电机电流', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (20, 'PBRSOC', '动力电池剩余电量SOC', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (21, 'MACSFP', '当前状态允许的最大反馈功率', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (22, 'CSATMDP', '当前状态允许最大放电功率', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (23, 'BMS', 'BMS自检计数器', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (24, 'CADC', '动力电池充放电电流', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (25, 'PBLETVV3', '动力电池负载端总电压V3', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (26, 'SMV', '单次最大电压', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (27, 'MVOAB', '单体电池最低电压', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (28, 'MAXBT', '单体电池最高温度', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (29, 'MINBT', '单体电池最低温度', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (30, 'PBAC', '动力电池可用容量', 'information', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (31, 'VS', '车辆状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (32, 'CS', '充电状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (33, 'RS', '运行状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (34, 'SOC', 'SOC', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (35, 'RESDWC', '可充电储能装置工作状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (36, 'EAS', 'EAS', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (37, 'PTC', 'PTC', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (38, 'EPS', 'EPS', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (39, 'ABS', 'ABS', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (40, 'MCU', 'MCU', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (41, 'PBHS', '动力电池加热状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (42, 'PBCS', '动力电池当前状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (43, 'PBIS', '动力电池保温状态', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (44, 'DCDC', 'DCDC', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (45, 'CHG', 'CHG', 'status', 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (46, 'CHB', '校验位', NULL, 'String');
|
|
|
|
|
|
|
|
INSERT INTO `sys_message_type` VALUES (47, 'CUB', '截止位', NULL, 'String');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|
|
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
-- ----------------------------
|
|
|
|
-- Table structure for warn_logs
|
|
|
|
-- Table structure for warn_logs
|
|
|
|