12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
module.exports = {
|
|
doc: "角色表",
|
|
api: true,//是否需要生成api接口
|
|
model: {
|
|
rid: {type: "INTEGER", comment: '角色id', primaryKey: true},
|
|
name: {type: "STRING", comment: '角色名称'},
|
|
to_oid: {type: "STRING", comment: '所属组织id'},
|
|
},
|
|
}
|
|
|
|
|