|
|
|
|
@ -123,7 +123,8 @@ public class DataVCaseVerifController {
|
|
|
|
|
@GetMapping("/getConfinementBar") |
|
|
|
|
public Result<JSONObject> getConfinementBar(@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd") Date beginTime, |
|
|
|
|
@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd") Date endTime){ |
|
|
|
|
List<EchartsVo> list =dataCaseVerifMapper.getConfinementData(beginTime,endTime); |
|
|
|
|
endTime = DateUtil.endOfDay(endTime); |
|
|
|
|
List<EchartsVo> list =dataCaseVerifMapper.getConfinementData(beginTime,endTime); |
|
|
|
|
JSONObject jsonObject =new JSONObject().fluentPut("confinementList",list); |
|
|
|
|
return Result.success(jsonObject); |
|
|
|
|
} |
|
|
|
|
|