潘志宝
3 天以前 10edab49cfd859ea4928c969da658b4a548f5b71
getAlarmAndSuggestPage问题修复
已修改2个文件
12 ■■■■ 文件已修改
iailab-module-model/iailab-module-model-biz/src/main/java/com/iailab/module/model/api/controller/admin/McsApiController.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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 &gt;= #{startTime}
            <if test="params.startTime != null">
                and t.time &gt;= #{params.startTime}
            </if>
            <if test="params.endTime != null and params.endTime != ''">
                and t.time &lt;= #{endTime}
            <if test="params.endTime != null">
                and t.time &lt;= #{params.endTime}
            </if>
        </where>
        order by t.time desc