平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IAttendanceService.cs 722 B

4 月之前
3 月之前
4 月之前
3 月之前
4 月之前
1234567891011121314151617181920212223
  1. namespace SafeCampus.Application.Services.Business.AttendanceService;
  2. public interface IAttendanceService:ITransient
  3. {
  4. /// <summary>
  5. /// 添加考勤记录
  6. /// </summary>
  7. /// <param name="input"></param>
  8. /// <returns></returns>
  9. Task<bool> Add(AttendanceDto input);
  10. /// <summary>
  11. /// 分页获取考勤列表
  12. /// </summary>
  13. /// <param name="search"></param>
  14. /// <returns></returns>
  15. Task<SqlSugarPagedList<AttendanceList>> GetPageList(AttendanceSearch search);
  16. /// <summary>
  17. /// 不分页获取考勤列表
  18. /// </summary>
  19. /// <param name="search"></param>
  20. /// <returns></returns>
  21. Task<List<AttendanceList>> GetNoPageList(AttendanceSearch search);
  22. }