12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\api\controller;
-
-
- use app\common\basics\Api;
- use app\common\logic\SystemNoticeLogic;
- use app\common\server\JsonServer;
-
- class Notice extends Api
- {
-
-
-
- public function index()
- {
- return JsonServer::success('获取成功', SystemNoticeLogic::index($this->user_id));
- }
-
-
-
-
- public function lists()
- {
- $type = $this->request->get('type');
- $lists = SystemNoticeLogic::lists($this->user_id, $type, $this->page_no, $this->page_size);
- return JsonServer::success('获取成功', $lists);
- }
-
- }
|