Commit fb3f9428 authored by chenzhao's avatar chenzhao

修改代码

parent a9862370
......@@ -69,7 +69,7 @@ public class RequestData {
private String code;
@ApiModelProperty(value = "筛选条件-视频名称")
private String remark;
private String equipmentName;
@ApiModelProperty(value = "筛选条件-所属单位")
private String bizOrgCode;
......
......@@ -261,6 +261,16 @@ public interface EquipFeignClient {
@RequestParam(value = "current") int current,
@RequestParam(value = "size") int size);
@RequestMapping(value = "/building/video/pageList", method = RequestMethod.POST)
ResponseModel<Page<Map<String, Object>>> getVideopagList( @RequestParam("current") String current,
@RequestParam("size") String size,
@RequestParam(value = "buildingId",required = false) String buildingId,
@RequestParam(value = "code",required = false) String code,
@RequestParam(value = "equipmentName",required = false) String equipmentName,
@RequestParam(value = "bizOrgCode",required = false) String bizOrgCode,
@RequestParam(value = "type",required = false) String type
);
/**
*
......
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