12345678910111213141516171819 |
- <?php
- namespace app\api\controller\v1;
- use app\api\controller\Base;
- use app\hander\HelpHander;
- class PostApply extends Base
- {
- // 列表
- public function list(){
- $page = input('page/d',1);
- $size = input('size/d',10);
- $type = input('type','','trim');
- $ret = model('PostApply')->lists($page,$size,$type,$this->orgId);
- HelpHander::success($ret);
- }
- }
|