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

13 lines
266 B

module.exports = function(db,callback){
// 用户模型
db.define("GoodPicModel",{
pics_id : {type: 'serial', key: true},
goods_id : Number,
pics_big : String,
pics_mid : String,
pics_sma : String
},{
table : "sp_goods_pics"
});
return callback();
}