1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.java110.report.dao;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * @ClassName ICommunityServiceDao
| * @Description TODO
| * @Author wuxw
| * @Date 2020/10/15 22:10
| * @Version 1.0
| * add by wuxw 2020/10/15
| **/
| public interface IReportAttendanceServiceDao {
|
|
|
| int getMonthAttendanceCount(Map info);
|
|
| List<Map> getMonthAttendance(Map info);
| }
|
|