style(backend): 格式化模型文件代码 style(frontend): 调整组件代码格式 chore: 删除旧 ESLint 配置并添加新配置 refactor(backend): 重构模型定义语法 style: 统一箭头函数和对象属性简写
53 lines
1020 B
JavaScript
53 lines
1020 B
JavaScript
const { DataTypes } = require('sequelize');
|
|
const { sequelize } = require('../db');
|
|
|
|
const Permission = sequelize.define(
|
|
'Permission',
|
|
{
|
|
permissionId: {
|
|
type: DataTypes.STRING,
|
|
primaryKey: true,
|
|
allowNull: false,
|
|
},
|
|
permissionName: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
},
|
|
permissionCode: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
unique: true,
|
|
},
|
|
parentId: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true,
|
|
},
|
|
type: {
|
|
type: DataTypes.ENUM('menu', 'button'),
|
|
defaultValue: 'button',
|
|
},
|
|
path: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true,
|
|
},
|
|
icon: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true,
|
|
},
|
|
sort: {
|
|
type: DataTypes.INTEGER,
|
|
defaultValue: 0,
|
|
},
|
|
status: {
|
|
type: DataTypes.ENUM('active', 'inactive'),
|
|
defaultValue: 'active',
|
|
},
|
|
},
|
|
{
|
|
tableName: 'permissions',
|
|
timestamps: true,
|
|
}
|
|
);
|
|
|
|
module.exports = Permission;
|