Commit 1f057135 authored by 周健威's avatar 周健威

修改代码

parent 87d76c81
......@@ -175,12 +175,16 @@ public class RscpImageDataTotalController extends BaseController<RscpImageDataTo
public void setStartDate(String startDate) {
this.startDate = startDate;
this.startDateTime = DateUtil.beginOfDay(DateUtil.parseDate(startDate)).toString();
if(null != startDate) {
this.startDateTime = DateUtil.beginOfDay(DateUtil.parseDate(startDate)).toString();
}
}
public void setEndDate(String endDate) {
this.endDate = endDate;
this.endDateTime = DateUtil.endOfDay(DateUtil.parseDate(endDate)).toString();
if(null != endDate) {
this.endDateTime = DateUtil.endOfDay(DateUtil.parseDate(endDate)).toString();
}
}
public void setAreaNo(String areaNo) {
......
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