1234567891011121314151617181920 |
- <?php
- namespace app\api\controller\v1;
- use app\api\controller\Base;
- use app\hander\HelpHander;
- class NoticeLog extends Base
- {
- // 列表
- public function list(){
- $page = input('page/d',1);
- $size = input('size/d',10);
- $status = input('status/d',-1);
- $noticeId = input('noticeId/d',0);
- $ret = model('Notice')->noticeLog($page,$size,$noticeId,$status);
- HelpHander::success($ret);
- }
- }
|