using SlnMesnac.Model.domain; using SlnMesnac.Repository.service.@base; using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Repository.service { public interface IBaseStaffService : IBaseService { /// /// 获取所有员工信息 /// /// List GetStaffInfos(); /// /// 通过卡号获取员工信息 /// /// /// BaseStaffInfo GetStaffInfoByCardId(string cardId); /// /// 通过员工号获取员工信息 /// /// /// BaseStaffInfo GetStaffInfoByStaffId(string staffId); /// /// 找出班组的班长 /// /// /// BaseStaffInfo GetMonitorByTeamCode(string teamCode); } }