Commit 3145d6f6 by 徐高华

社群

parent 8842516e
...@@ -77,10 +77,10 @@ public class GroupChatPlanController { ...@@ -77,10 +77,10 @@ public class GroupChatPlanController {
} }
Date _startDate = null ; Date _startDate = null ;
Date _endDate = null; Date _endDate = null;
if(null != startDate) { if(StringUtils.isNotBlank(startDate)) {
_startDate = DateUtil.strToDate(startDate,"yyyy-MM-dd") ; _startDate = DateUtil.strToDate(startDate,"yyyy-MM-dd") ;
} }
if(null != endDate) { if(StringUtils.isNotBlank(endDate)) {
_endDate = DateUtil.strToDate(endDate,"yyyy-MM-dd") ; _endDate = DateUtil.strToDate(endDate,"yyyy-MM-dd") ;
_endDate = DateUtil.getEndTimeOfDay(_endDate) ; _endDate = DateUtil.getEndTimeOfDay(_endDate) ;
} }
......
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