表名: iotme_group
| 字段标识 | 字段类型 |字段长度| 备注|
| --- | --- |---|---|
| id | int | 10 | ID |
| parent_id| int| 10| 父ID |
| title| varchar| 20| 分组名称|
| user_id| int| 10| 用户ID |
| listorder| tinyint| 3| 排序|
| status| tinyint| 1| 状态;0禁用;1启用|
| create_time| int| 10| 创建时间 |
```
CREATE TABLE `sys_iotme_group` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) NOT NULL DEFAULT '0' COMMENT '父ID',
`title` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '分组名称',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户ID',
`listorder` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态;0禁用;1启用',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户分组表'
```
- 数据库结构
- 产品表
- 设备类型表
- 产品模型表
- 事件模型表
- soe表
- 网关表(动态生成)
- 设备表(动态生成)
- 历史数据表
- 用户分组表
- 用户设备表
- 用户分组权限表
- 智能网关数据库
- driver_group
- driver
- point_group_dz
- point_dz
- point_group_yc
- point_yc
- point_group_yx
- point_yx
- point_group_yk
- point_yk
- point_group_yt
- point_yt
- point_group_soe
- point_soe
- point_merge
- collect
- collect_device
- relay
- relay_device
- relay_point
- soe_data
- device_data
- users
- config
- network
- firewall
- logs
- robot
- robot_preset
- device_logs