Your Name
2023-07-04 d3e23e26fcfc17e770fca7c29b290ef5082e5734
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
 
     /**
      * 考勤明细
      * @param info
      * @return
      */
     List<Map> getMonthAttendanceDetail(Map info);
}