PostApply.php 400 B

12345678910111213141516171819
  1. <?php
  2. namespace app\api\controller\v1;
  3. use app\api\controller\Base;
  4. use app\hander\HelpHander;
  5. class PostApply extends Base
  6. {
  7. // 列表
  8. public function list(){
  9. $page = input('page/d',1);
  10. $size = input('size/d',10);
  11. $type = input('type','','trim');
  12. $ret = model('PostApply')->lists($page,$size,$type,$this->orgId);
  13. HelpHander::success($ret);
  14. }
  15. }