tapi/app/controller/admin/xm/InstitutionController.php
2025-09-11 22:43:23 +08:00

27 lines
622 B
PHP

<?php
namespace app\controller\admin\xm;
use app\BaseController;
use app\service\CurdService;
use think\response\Json;
class InstitutionController extends BaseController
{
public function page(): Json
{
try{
$model = \app\entity\XmInstitution::withSearch([], [
'name' => $this->request->get('name/s', ''),
]);
$paginate = CurdService::getPaginate($this->request, $model);
}catch (\Exception $e){
return $this->writeError($e->getMessage());
}
return $this->writeSuccess('success', $paginate);
}
}