iailab-module-model/iailab-module-model-biz/src/main/java/com/iailab/module/model/api/controller/admin/McsApiController.java
@@ -150,7 +150,7 @@ return CommonResult.success(data); } @GetMapping("/alarm-suggest/page") @PostMapping("/alarm-suggest/page") @Operation(summary = "获取预警信息和调度建议分页列表") public CommonResult<PageResult<StAlarmAndSuggestRespVO>> getAlarmAndSuggestPage(@RequestBody StAlarmAndSuggestPageReqVO reqVO) { PageResult<StAlarmAndSuggestRespVO> page = mcsApi.getAlarmAndSuggestPage(reqVO); iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml
@@ -18,13 +18,13 @@ ) t <where> <if test="params.obj != null and params.obj != ''"> and t.obj = #{obj} and t.obj = #{params.obj} </if> <if test="params.startTime != null and params.startTime != ''"> and t.time >= #{startTime} <if test="params.startTime != null"> and t.time >= #{params.startTime} </if> <if test="params.endTime != null and params.endTime != ''"> and t.time <= #{endTime} <if test="params.endTime != null"> and t.time <= #{params.endTime} </if> </where> order by t.time desc