Files
bamboo/sqlite/model/PermissionsPage.js
T
robin 96333ae7a9 up
2022-05-21 06:48:12 +08:00

16 lines
416 B
JavaScript

module.exports = {
doc : "页面权限表",
model: {
code : {type: "STRING", comment: '角色代码'},
key : {type: "STRING", comment: '页面标识,一般是页面url',unique: true},
value: {
type : "ENUM", comment: '状态',
values: [
0, // 禁止
1, //通行
],
defaultValue: 0,
},
}
}