liusheng
2025-12-28 73f5b82df781d2b061ba24d29182f6898b5535d9
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
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.ServiceAttendancerecords;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 考勤记录Mapper接口
 *
 * @author ls
 * @date 2025-12-28
 */
@Mapper
public interface ServiceAttendancerecordsMapper extends BaseMapper<ServiceAttendancerecords>
{
    /**
     * 查询考勤记录列表
     *
     * @param serviceAttendancerecords 考勤记录
     * @return 考勤记录集合
     */
    public List<ServiceAttendancerecords> selectServiceAttendancerecordsList(ServiceAttendancerecords serviceAttendancerecords);
}