Commit 7c37c4c4 authored by xinglei's avatar xinglei

*)增加查询巡检接口

parent 32e7af7c
......@@ -224,7 +224,6 @@ public class InputItem extends BasicEntity {
/**
* 扩展属性
*/
@Transient
private String ext;
public Integer getItemStart() {
......@@ -515,6 +514,7 @@ public class InputItem extends BasicEntity {
this.checkTypeId = checkTypeId;
}
@Transient
public String getExt() {
return ext;
}
......
......@@ -302,9 +302,9 @@ public class LatentDangerController extends AbstractBaseController {
}
@TycloudOperation(ApiLevel = UserType.AGENCY)
@ApiOperation(value = "查询巡检隐患信息", notes = "查询巡检隐患信息")
@GetMapping(value = "/patrol/danger/info")
public CommonResponse getPatrolDangerInfo(@RequestParam JSONObject param) {
@ApiOperation(value = "查询巡检信息", notes = "查询巡检信息")
@PostMapping(value = "/patrol/danger/info")
public CommonResponse getPatrolDangerInfo(@RequestBody(required = false) JSONObject 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