Commit 7c37c4c4 authored by xinglei's avatar xinglei

*)增加查询巡检接口

parent 32e7af7c
...@@ -224,7 +224,6 @@ public class InputItem extends BasicEntity { ...@@ -224,7 +224,6 @@ public class InputItem extends BasicEntity {
/** /**
* 扩展属性 * 扩展属性
*/ */
@Transient
private String ext; private String ext;
public Integer getItemStart() { public Integer getItemStart() {
...@@ -515,6 +514,7 @@ public class InputItem extends BasicEntity { ...@@ -515,6 +514,7 @@ public class InputItem extends BasicEntity {
this.checkTypeId = checkTypeId; this.checkTypeId = checkTypeId;
} }
@Transient
public String getExt() { public String getExt() {
return ext; return ext;
} }
......
...@@ -302,9 +302,9 @@ public class LatentDangerController extends AbstractBaseController { ...@@ -302,9 +302,9 @@ public class LatentDangerController extends AbstractBaseController {
} }
@TycloudOperation(ApiLevel = UserType.AGENCY) @TycloudOperation(ApiLevel = UserType.AGENCY)
@ApiOperation(value = "查询巡检隐患信息", notes = "查询巡检隐患信息") @ApiOperation(value = "查询巡检信息", notes = "查询巡检信息")
@GetMapping(value = "/patrol/danger/info") @PostMapping(value = "/patrol/danger/info")
public CommonResponse getPatrolDangerInfo(@RequestParam JSONObject param) { public CommonResponse getPatrolDangerInfo(@RequestBody(required = false) JSONObject param) {
return CommonResponseUtil.success(iLatentDangerService.getPatrolDangerInfo(param)); return CommonResponseUtil.success(iLatentDangerService.getPatrolDangerInfo(param));
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment