|
|
|
@ -45,7 +45,7 @@ public class OtherRecordsController { |
|
|
|
@RequestMapping(value = "/queryList", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<List<OtherRecordsVo.TypeAndComment>> queryList(@ApiParam @Validated @RequestBody QueryDto<OtherRecordsDto.QueryId> params){ |
|
|
|
log.info("查询上传图片和记录:{}", params); |
|
|
|
List<OtherRecordsVo.TypeAndComment> list = iOtherRecordsService.query(params.getParam()); |
|
|
|
List<OtherRecordsVo.TypeAndComment> list = iOtherRecordsService.queryList(params.getParam()); |
|
|
|
log.info("查询上传图片和记录成功"); |
|
|
|
return JsonResponse.newInstance().ok(list); |
|
|
|
} |
|
|
|
|