| | |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | *考勤管理 |
| | | */ |
| | | public interface AttendanceService { |
| | | /** |
| | | * 打卡 |
| | | * 打卡 |
| | | */ |
| | | String attendanceUpAndAdd(String studentId,String SubjectId); |
| | | String attendanceUpAndAdd(String userId,String SubjectId, String subjectName); |
| | | |
| | | /** |
| | | * 查询考勤信息 |
| | | * 查询考勤信息 |
| | | */ |
| | | List<StuStudent> findAttendanceList(Integer limit, Integer pageNum, String keyword, String subjectId); |
| | | |
| | | /** |
| | | *修改打卡状态 |
| | | *修改打卡状态 |
| | | */ |
| | | Result updateAttendanceStatus(String studentId, String attendanceStatus); |
| | | Result updateAttendanceStatus(String[] studentId, String attendanceStatus); |
| | | |
| | | int findAttendanceListCount(String keyword, String subjectId); |
| | | |