修改管理后台

This commit is contained in:
shenquanyi
2025-09-12 20:08:42 +08:00
parent 39d61c6f9b
commit 80a24c2d60
286 changed files with 75316 additions and 9452 deletions

View File

@@ -88,6 +88,12 @@ Role.init({
description: {
type: DataTypes.TEXT,
allowNull: true
},
status: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: true,
comment: '角色状态true-启用false-禁用'
}
}, {
sequelize,