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