| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * 匹配模块
- * @author wesmiler
- */
- namespace app\weixin\controller;
- class MatchController extends BaseController
- {
- /**
- * 单身推荐
- * @return mixed
- */
- public function index(){
- return $this->fetch();
- }
- /**
- * 每日推荐匹配
- * @return mixed
- */
- public function hearts(){
- return $this->fetch();
- }
- }
- ?>
|