xzh.js
768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
/**
* [百度熊掌号]
* @type {[type]}
*/
const XzhIndexModel = require('../../models/xzh/index');
const index = (req, res) => {
return req.ctx(XzhIndexModel).index().then(result => {
return res.json(result);
});
};
const yohoGirlsAll = (req, res) => {
return req.ctx(XzhIndexModel).yohoGirlsAll().then(result => {
return res.json(result);
});
};
const yohoBoysAll = (req, res) => {
return req.ctx(XzhIndexModel).yohoBoysAll().then(result => {
return res.json(result);
});
};
const marsAll = (req, res) => {
return req.ctx(XzhIndexModel).marsAll().then(result => {
return res.json(result);
});
};
module.exports = {
index,
yohoGirlsAll,
yohoBoysAll,
marsAll,
};