瀏覽代碼

考勤详情修改

wangchao 4 年之前
父節點
當前提交
78caba4d27

+ 2 - 2
security-protection-service/src/main/java/com/ai/bss/security/protection/controller/AttendanceReportController.java

@ -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;