suggestFeedBack-api.js
399 Bytes
/**
* suggestFeedBack model
* @author: gxh<xuhui.ge@yoho.cn>
* @date: 2017/04/06
*/
'use strict';
const service = global.yoho.ServiceAPI;
const URL_ACTIVITY_QUESTION = '/activity/question/';
/**
* 获取用户信息
* @param uid
* @return string
*/
const feedBackApi = () => {
return service.get(URL_ACTIVITY_QUESTION + 'questionList', {});
};
module.exports = {
feedBackApi
};