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(); /// /// 验证添加员工打卡记录 /// /// /// bool InsertRecordStaffAttendance(List recordStaffAttendances); } }