|
@@ -1,5 +1,6 @@
|
|
package com.onemap.apply.controller.tdgy;
|
|
package com.onemap.apply.controller.tdgy;
|
|
|
|
|
|
|
|
+import com.onemap.apply.domain.tdgy.vo.IdleLandListVo;
|
|
import com.onemap.apply.domain.tdgy.vo.LandIdleConfirmVo;
|
|
import com.onemap.apply.domain.tdgy.vo.LandIdleConfirmVo;
|
|
import com.onemap.apply.domain.tdgy.vo.LandIdleDisposalVo;
|
|
import com.onemap.apply.domain.tdgy.vo.LandIdleDisposalVo;
|
|
import com.onemap.apply.domain.tdgy.vo.UpdateTdgyVo;
|
|
import com.onemap.apply.domain.tdgy.vo.UpdateTdgyVo;
|
|
@@ -71,11 +72,12 @@ public class TdgyController {
|
|
RequestResult requestResult = tdgyService.addIdleLandDisposal(landIdleDisposalVo);
|
|
RequestResult requestResult = tdgyService.addIdleLandDisposal(landIdleDisposalVo);
|
|
return requestResult;
|
|
return requestResult;
|
|
}
|
|
}
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 闲置土地列表
|
|
* 闲置土地列表
|
|
*/
|
|
*/
|
|
@GetMapping("/idleLandList")
|
|
@GetMapping("/idleLandList")
|
|
- public RequestResult idleLandList(@Param("key") String key) {
|
|
|
|
|
|
+ public RequestResult idleLandList(@Valid @RequestBody IdleLandListVo idleLandListVo) {
|
|
// RequestResult requestResult = tdgyService.idleLandList(key);
|
|
// RequestResult requestResult = tdgyService.idleLandList(key);
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|