79 lines
3.7 KiB
MySQL
79 lines
3.7 KiB
MySQL
|
/*
|
|||
|
Navicat Premium Data Transfer
|
|||
|
|
|||
|
Source Server : vitual-box-mysql-5.1.51
|
|||
|
Source Server Type : MySQL
|
|||
|
Source Server Version : 50151 (5.1.51-log)
|
|||
|
Source Host : 192.168.4.254:3306
|
|||
|
Source Schema : hjems
|
|||
|
|
|||
|
Target Server Type : MySQL
|
|||
|
Target Server Version : 50151 (5.1.51-log)
|
|||
|
File Encoding : 65001
|
|||
|
|
|||
|
Date: 31/05/2024 15:41:17
|
|||
|
*/
|
|||
|
|
|||
|
SET NAMES utf8;
|
|||
|
SET FOREIGN_KEY_CHECKS = 0;
|
|||
|
|
|||
|
-- ----------------------------
|
|||
|
-- Table structure for tbl_device_dict
|
|||
|
-- ----------------------------
|
|||
|
DROP TABLE IF EXISTS `tbl_device_dict`;
|
|||
|
CREATE TABLE `tbl_device_dict_` (
|
|||
|
`device_id` int(11) NOT NULL,
|
|||
|
`device_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|||
|
PRIMARY KEY (`device_id`) USING BTREE
|
|||
|
) ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
|||
|
|
|||
|
-- ----------------------------
|
|||
|
-- Records of tbl_device_dict
|
|||
|
-- ----------------------------
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (1, '高压配电');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (2, '低压配电(交流配电箱)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (3, '交流配电屏');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (4, '直流配电屏');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (5, '柴油发电机组');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (6, '开关电源');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (7, '蓄电池组');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (8, 'UPS设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (9, 'UPS配电屏');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (10, 'UPS电池');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (11, '240V直流系统');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (12, '专用空调(风冷)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (13, '中央空调(水冷)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (14, '专用空调(通冷冻水型)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (15, '普通空调');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (16, '智能电表(交流)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (17, '门禁系统');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (18, '机房/基站环境');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (19, '监控设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (20, '新能源供电系统(太阳能、风能)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (21, '燃气轮机发电机组');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (22, '风力发电设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (23, '智能通风系统');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (24, '新风设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (25, '热交换设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (26, '热管设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (27, '蓄电池温控柜');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (28, '防雷设备/防雷箱');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (29, '燃料电池');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (30, '模块化UPS');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (31, '240V电池');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (32, '铁锂电池');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (33, '逆变器');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (34, '280V直流远供系统-局端升压');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (35, '280V直流远供系统-远端降压');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (36, '智能电表(直流)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (37, '铁塔');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (38, '智能动环监控设备(FSU)');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (39, 'reserved');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (40, 'reserved');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (81, '智能温湿度传感器');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (85, 'HJWL门磁烟感水浸传感器');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (98, 'FSU设备');
|
|||
|
INSERT INTO `tbl_device_dict` VALUES (99, '非智能门禁');
|
|||
|
|
|||
|
SET FOREIGN_KEY_CHECKS = 1;
|