|
@@ -56,6 +56,27 @@ public class NewPipeAndNodeController {
|
|
|
return ResultRespone.success ( customNewPipeAndNodeService.getPictureList(page,prjId,userName,code,departmentId,photoType,beginDate,endDate));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping("/getPictureListAll" )
|
|
|
+ @ApiOperation(value = "图片列表分页查询(不区分项目)")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "userName", value = "用户名称", required = false, dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "code", value = "code", required = true, dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "departmentId", value = "科室id", required = false, dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "photoType", value = "照片", required = false, dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "beginDate", value = "开始时间", required = false, dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "endDate", value = "结束时间", required = false, dataType = "String")
|
|
|
+ })
|
|
|
+ public ResultRespone getPictureListAll(Page page, String userName,
|
|
|
+ @RequestParam(value="code") String code,
|
|
|
+ String departmentId,
|
|
|
+ String photoType,
|
|
|
+ String beginDate,
|
|
|
+ String endDate) {
|
|
|
+ return ResultRespone.success ( customNewPipeAndNodeService.getPictureList(page,null,userName,code,departmentId,photoType,beginDate,endDate));
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/progressShow" )
|
|
|
@ApiOperation(value = "进度查看")
|
|
|
@ApiImplicitParams({
|