using SlnMesnac.Model.domain; using SlnMesnac.Repository.service.@base; using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Repository.service { public interface IRecordStaffCommuteService : IBaseService { /// /// 获取记录员工上下班打卡信息 /// /// List GetRecordStaffCommutes(); /// /// 根据员工id和时长查找对应记录 /// /// /// /// RecordStaffCommute GetStaffCommuteByIdAndDuration(string id,string currentTime); } }