💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
表名: 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='用户分组表' ```