1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ruoyi.project.service;
|
| import java.util.List;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.project.domain.ServiceAttendancerecords;
|
| /**
| * 考勤记录Service接口
| *
| * @author ls
| * @date 2025-12-28
| */
| public interface IServiceAttendancerecordsService extends IService<ServiceAttendancerecords>
| {
|
| /**
| * 查询考勤记录列表
| *
| * @param serviceAttendancerecords 考勤记录
| * @return 考勤记录集合
| */
| public List<ServiceAttendancerecords> queryList(ServiceAttendancerecords serviceAttendancerecords);
| }
|
|