企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
#role (角色表) |字段|类型|Null|默认|注释| | -- | -- | -- | -- | -- | |id auto_increment|int(11) unsigned|否||自增ID| |name|varchar(20)|否||角色名称| |pid|smallint(6)|||父角色ID| |status|tinyint(1) unsigned|||状态| |remark|varchar(255)|||备注| |create_time|int(11) unsigned|否|0|创建时间| |update_time|int(11) unsigned|否|0|更新时间| |listorder|int(3)|否|0|排序字段| 相关的SQL语句如下: ``` DROP TABLE IF EXISTS `new_role`; CREATE TABLE `new_role` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL COMMENT '角色名称', `pid` smallint(6) DEFAULT NULL COMMENT '父角色ID', `status` tinyint(1) unsigned DEFAULT NULL COMMENT '状态', `remark` varchar(255) DEFAULT NULL COMMENT '备注', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `listorder` int(3) NOT NULL DEFAULT '0' COMMENT '排序字段', PRIMARY KEY (`id`), KEY `parentId` (`pid`), KEY `status` (`status`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='角色表'; ```