xzh.js
1.06 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'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);
});
};
const yohoBoysReal = (req, res) => {
return req.ctx(XzhIndexModel).yohoBoysReal().then(result => {
return res.json(result);
});
};
const marsReal = (req, res) => {
return req.ctx(XzhIndexModel).marsReal().then(result => {
return res.json(result);
});
};
module.exports = {
index,
yohoGirlsAll,
yohoBoysAll,
marsAll,
yohoBoysReal,
marsReal
};