|
@ -127,8 +127,8 @@ public class AttendanceReportController {
|
127
|
127
|
@RequestMapping("/queryAttendanceDetailReport")
|
128
|
128
|
public CommonResponse<List<Map<String, Object>>> queryAttendanceDetailReport(@ModelAttribute AttendanceReport attendanceReport) throws Exception {
|
129
|
129
|
Map<String, Object> params = new HashMap<>();
|
130
|
|
params.put("beginDay",attendanceReport.getMonth());
|
131
|
|
params.put("endDay",attendanceReport.getOrgId());
|
|
130
|
params.put("beginDay",attendanceReport.getBeginDay());
|
|
131
|
params.put("endDay",attendanceReport.getEndDay());
|
132
|
132
|
params.put("id",attendanceReport.getId());
|
133
|
133
|
CommonResponse<List<Map<String, Object>>> commonResponse = attendanceReportService.queryAttendanceDetailReport(params);
|
134
|
134
|
return commonResponse;
|