HouseAuth.php 753 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\api\controller\v1;
  3. use app\api\controller\Base;
  4. use app\hander\HelpHander;
  5. use think\Db;
  6. class HouseAuth extends Base
  7. {
  8. // 新增
  9. public function save(){
  10. model('HouseAuth')->add();
  11. HelpHander::success([],'操作成功');
  12. }
  13. // 删除
  14. public function del(){
  15. $id = input('id/d',0);
  16. model('HouseAuth')->del($id);
  17. HelpHander::success([],'操作成功');
  18. }
  19. //列表
  20. public function list(){
  21. $page = input('page/d',1);
  22. $size = input('size/d',10);
  23. $title = input('title','','trim');
  24. $type = input('type/d',0);
  25. $ret = model('HouseAuth')->lists($page,$size,$title,$type,$this->orgId);
  26. HelpHander::success($ret);
  27. }
  28. }