Commit 9544ef36 authored by liqin's avatar liqin 💬

Merge branch 'master' of http://111.203.232.171:8888/lee/chnmuseum-party into master

parents 94969947 a12a884c
...@@ -243,7 +243,7 @@ public class TBoardStatisticController extends BaseController { ...@@ -243,7 +243,7 @@ public class TBoardStatisticController extends BaseController {
trend.setOrganCode(null); trend.setOrganCode(null);
} }
// 如果查询日志为空,则默认当月 // 如果查询日志为空,则默认当月
if (StringUtils.isEmpty(trend.getPlayDate())){ if (StringUtils.isEmpty(trend.getBeginDate())){
trend.setBeginDate(DateUtil.getCurrentDate("yyyy")+"01"); trend.setBeginDate(DateUtil.getCurrentDate("yyyy")+"01");
trend.setEndDate(DateUtil.getCurrentDate("yyyyMM")); trend.setEndDate(DateUtil.getCurrentDate("yyyyMM"));
} }
......
...@@ -80,8 +80,8 @@ ...@@ -80,8 +80,8 @@
<if test="tBoxOperation.areaName != null and tBoxOperation.areaName != '' "> <if test="tBoxOperation.areaName != null and tBoxOperation.areaName != '' ">
and b.area_id LIKE concat(#{tBoxOperation.areaName}, '%') and b.area_id LIKE concat(#{tBoxOperation.areaName}, '%')
</if> </if>
<if test="tBoxOperation.orgCode != null and tBoxOperation.orgCode != '' "> <if test="tBoxOperation.organCode != null and tBoxOperation.organCode != '' ">
and r.code LIKE concat(#{tBoxOperation.orgCode}, '%') and r.code LIKE concat(#{tBoxOperation.organCode}, '%')
</if> </if>
order by b.create_time desc order by b.create_time desc
</select> </select>
......
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