Commit 9a5d3f08 authored by suhuiguang's avatar suhuiguang

Merge branch 'develop_dl_plan6_temp' of…

Merge branch 'develop_dl_plan6_temp' of http://39.98.45.134:8090/moa/amos-boot-biz into develop_dl_plan6_temp
parents ed9c0061 73669075
...@@ -105,5 +105,9 @@ public class CheckInfoPageParam extends CommonPageable{ ...@@ -105,5 +105,9 @@ public class CheckInfoPageParam extends CommonPageable{
private String bizOrgCode; private String bizOrgCode;
private String searchDay;
} }
...@@ -108,6 +108,12 @@ ...@@ -108,6 +108,12 @@
<if test="bizOrgCode != null and bizOrgCode != ''"> <if test="bizOrgCode != null and bizOrgCode != ''">
and a.org_code LIKE CONCAT(#{bizOrgCode},'%') and a.org_code LIKE CONCAT(#{bizOrgCode},'%')
</if> </if>
<if test="searchDay != null and searchDay != ''">
and date_format(
a.check_time,
'%Y-%m-%d'
) = curdate()
</if>
</trim> </trim>
</select> </select>
...@@ -311,6 +317,12 @@ ...@@ -311,6 +317,12 @@
<if test="bizOrgCode != null and bizOrgCode != ''"> <if test="bizOrgCode != null and bizOrgCode != ''">
and a.org_code LIKE CONCAT(#{bizOrgCode},'%') and a.org_code LIKE CONCAT(#{bizOrgCode},'%')
</if> </if>
<if test="searchDay != null and searchDay != ''">
and date_format(
a.check_time,
'%Y-%m-%d'
) = curdate()
</if>
</trim> </trim>
order by ${orderBy} order by ${orderBy}
<choose> <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