brand-service.js
316 Bytes
/**
* Created by TaoHuang on 2016/6/14.
*/
'use strict';
const Api = require('./brand-api');
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
this.api = new Api(ctx);
this.getBannerInfoAsync = this.api.getBannerInfoAsync.bind(this.api);
}
};