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);
|
}
|