平安校园
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.

IIndexService.cs 729 B

2 月之前
1234567891011121314151617181920212223242526272829303132333435363738
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// 首页服务
  6. /// </summary>
  7. public interface IIndexService : ITransient
  8. {
  9. /// <summary>
  10. /// 添加日程
  11. /// </summary>
  12. /// <param name="input">日程参数</param>
  13. /// <returns></returns>
  14. Task AddSchedule(ScheduleAddInput input);
  15. /// <summary>
  16. /// 删除日程
  17. /// </summary>
  18. /// <param name="input">id列表</param>
  19. /// <returns></returns>
  20. Task DeleteSchedule(BaseIdListInput input);
  21. /// <summary>
  22. /// 获取日程列表
  23. /// </summary>
  24. /// <param name="input">查询参数</param>
  25. /// <returns>日程列表</returns>
  26. Task<List<ScheduleListOutput>> ScheduleList(ScheduleListInput input);
  27. }