You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vue-shop-admin-work/models/RoleModel.js

13 lines
254 B

module.exports = function(db,callback){
// 用户模型
db.define("RoleModel",{
role_id : {type: 'serial', key: true},
role_name : String,
ps_ids : String,
ps_ca : String,
role_desc : String
},{
table : "sp_role"
});
return callback();
}