using SlnMesnac.Model.domain; using SlnMesnac.Repository.service.@base; using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Repository.service { public interface IRecordStaffAttendanceService : IBaseService { /// /// 获取记录员工打卡信息 /// /// List GetRecordStaffAttendances(); /// /// 根据员工id查询 /// /// /// RecordStaffAttendance GetRecordStaffAttendanceByStaffId(string staffId); /// /// 验证添加员工打卡记录 /// /// /// bool InsertRecordStaffAttendance(List recordStaffAttendances); /// /// 获取最后的上班记录 /// /// RecordStaffAttendance GetLastestOnRecord(); /// /// 获取最后的下班记录 /// /// RecordStaffAttendance GetLastestOffRecord(); } }