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/PermissionAPIModel.js

14 lines
285 B

module.exports = function(db,callback) {
// 用户模型
db.define("PermissionAPIModel",{
id : {type: 'serial', key: true},
ps_id : Number,
ps_api_service : String,
ps_api_action : String,
ps_api_order : Number
},{
table : "sp_permission_api"
});
return callback();
}