|
@@ -125,13 +125,13 @@ public class WxCheckService extends BaseService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public void saveReportResultData(String startDay, String endDay, boolean isSpecialCheckinDay) throws Exception {
|
|
|
+ public void saveReportResultData(String startDay, String endDay, boolean specialCheckinDay) throws Exception {
|
|
|
Map<String, Object> param = Maps.newHashMap();
|
|
|
param.put("startDay", startDay);
|
|
|
param.put("endDay", endDay);
|
|
|
param.put("startDayT", startDay.replace("-", ""));
|
|
|
param.put("endDayT", endDay.replace("-", ""));
|
|
|
- param.put("isSpecialCheckinDay", isSpecialCheckinDay);
|
|
|
+ param.put("specialCheckinDay", specialCheckinDay);
|
|
|
|
|
|
// 生成报表数据
|
|
|
update("SapCheckMapper.deleteCheckReport", param);
|