|
@@ -4,7 +4,7 @@ import com.ruoyi.common.core.web.controller.BaseController;
|
|
|
import com.ruoyi.common.core.web.domain.AjaxResult;
|
|
|
import com.ruoyi.common.core.web.page.PageDomain;
|
|
|
import com.ruoyi.common.core.web.page.TableSupport;
|
|
|
-import com.sooka.sponest.comprehensive.api.comprehensiveActualPeople.domain.ComprehensiveRhfRentalHousing;
|
|
|
+import com.sooka.sponest.comprehensive.api.comprehensiveActualPeople.domain.ComprehensiveRhfOverseasPersonInfo;
|
|
|
import com.sooka.sponest.comprehensive.api.comprehensiveActualPeople.service.RemoteOverseasPersonInfoService;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -28,11 +28,11 @@ public class AppOverseasPersonInfoController extends BaseController {
|
|
|
* 查询境外人员列表
|
|
|
*/
|
|
|
@GetMapping("/info/list")
|
|
|
- public AjaxResult list(ComprehensiveRhfRentalHousing comprehensiveRhfRentalHousing) {
|
|
|
+ public AjaxResult list(ComprehensiveRhfOverseasPersonInfo comprehensiveRhfOverseasPersonInfo) {
|
|
|
PageDomain pageDomain = TableSupport.buildPageRequest();
|
|
|
Integer pageNum = pageDomain.getPageNum();
|
|
|
Integer pageSize = pageDomain.getPageSize();
|
|
|
- return AjaxResult.success(remoteOverseasPersonInfoService.selectComprehensiveRhfOverseasPersonInfoList(pageNum, pageSize, comprehensiveRhfRentalHousing.getName(), comprehensiveRhfRentalHousing.getHouseNumber(), comprehensiveRhfRentalHousing.getPhone()).getRows());
|
|
|
+ return AjaxResult.success(remoteOverseasPersonInfoService.selectComprehensiveRhfOverseasPersonInfoList(pageNum, pageSize, comprehensiveRhfOverseasPersonInfo.getIdentityNumber(), comprehensiveRhfOverseasPersonInfo.getPhone()).getRows());
|
|
|
}
|
|
|
|
|
|
|