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

13 lines
267 B

module.exports = function(db,callback){
// 用户模型
db.define("CategoryModel",{
cat_id : {type: 'serial', key: true},
cat_name : String,
cat_pid : Number,
cat_level : Number,
cat_deleted: Boolean
},{
table : "sp_category"
});
return callback();
}