Commit 73669075 authored by chenzhao's avatar chenzhao

修改运维统计跳转bug

parent eb608aea
......@@ -105,5 +105,9 @@ public class CheckInfoPageParam extends CommonPageable{
private String bizOrgCode;
private String searchDay;
}
......@@ -108,6 +108,12 @@
<if test="bizOrgCode != null and bizOrgCode != ''">
and a.org_code LIKE CONCAT(#{bizOrgCode},'%')
</if>
<if test="searchDay != null and searchDay != ''">
and date_format(
a.check_time,
'%Y-%m-%d'
) = curdate()
</if>
</trim>
</select>
......@@ -311,6 +317,12 @@
<if test="bizOrgCode != null and bizOrgCode != ''">
and a.org_code LIKE CONCAT(#{bizOrgCode},'%')
</if>
<if test="searchDay != null and searchDay != ''">
and date_format(
a.check_time,
'%Y-%m-%d'
) = curdate()
</if>
</trim>
order by ${orderBy}
<choose>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment