You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
356 B
MySQL
10 lines
356 B
MySQL
2 days ago
|
CREATE TABLE `iec_104_point` (
|
||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
|
`eqmid` int(11) DEFAULT NULL,
|
||
|
`field` varchar(45) DEFAULT NULL,
|
||
|
`stype` varchar(45) DEFAULT NULL COMMENT '类型 1:遥信 2:遥测',
|
||
|
`sadr` int(11) DEFAULT NULL COMMENT '点位',
|
||
|
`create_time` datetime DEFAULT NULL,
|
||
|
PRIMARY KEY (`id`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|