16 lines
416 B
JavaScript
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,
|
|
},
|
|
}
|
|
}
|