1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace app\controller\admin\v1\wechat;
- use app\controller\admin\AuthController;
- class WechatMessage extends AuthController
- {
-
- public function index()
- {
- $where = $this->getMore([
- ['page', 1],
- ['limit', 20],
- ['nickname', ''],
- ['type', ''],
- ['data', ''],
- ]);
- return $this->success([]);
- }
-
- public function operate()
- {
- return $this->success([]);
- }
- }
|