|
@@ -23,8 +23,8 @@ public class ZhcxApiController {
|
|
|
|
|
|
@RequestMapping("/getOutsideInspectionList")
|
|
|
public R getOutsideInspectionList(@RequestBody Map<String,Object> map){
|
|
|
- if(!map.containsKey("projectname")){
|
|
|
- return R.error("projectname参数必填");
|
|
|
+ if(!map.containsKey("projectcode")){
|
|
|
+ return R.error("projectcode参数必填");
|
|
|
}
|
|
|
List<ZhcxOutsideInspectionVo> outsideInspectionList = zhcxApiService.getOutsideInspectionList(map);
|
|
|
return R.ok(outsideInspectionList);
|