潘志宝
2 天以前 10edab49cfd859ea4928c969da658b4a548f5b71
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