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.

SchoolCalendarIBLL.cs 2.3 KiB

4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using Learun.Util;
  2. using System.Data;
  3. using System.Collections.Generic;
  4. namespace Learun.Application.TwoDevelopment.EducationalAdministration
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  8. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2019-07-03 14:31
  11. /// 描 述:校历管理
  12. /// </summary>
  13. public interface SchoolCalendarIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表分页数据
  18. /// <summary>
  19. /// <param name="pagination">查询参数</param>
  20. /// <param name="queryJson">查询参数</param>
  21. /// <returns></returns>
  22. IEnumerable<SchoolCalendarEntity> GetPageList(Pagination pagination, string queryJson);
  23. /// <summary>
  24. /// 获取页面显示列表数据
  25. /// <summary>
  26. /// <param name="queryJson">查询参数</param>
  27. /// <returns></returns>
  28. IEnumerable<SchoolCalendarEntity> GetList(string queryJson);
  29. /// <summary>
  30. /// 获取SchoolCalendar表实体数据
  31. /// <param name="keyValue">主键</param>
  32. /// <summary>
  33. /// <returns></returns>
  34. SchoolCalendarEntity GetSchoolCalendarEntity(string keyValue);
  35. /// <summary>
  36. /// 获取列表
  37. /// </summary>
  38. /// <returns>返回列表</returns>
  39. IEnumerable<SchoolCalendarEntity> GetList();
  40. /// <summary>
  41. /// 根据学年获取SchoolCalendar表实体数据
  42. /// <param name="keyValue">主键</param>
  43. /// <summary>
  44. /// <returns></returns>
  45. SchoolCalendarEntity GetSchoolCalendarEntityByNo(string academicYearNo, string semester);
  46. #endregion
  47. #region 提交数据
  48. /// <summary>
  49. /// 删除实体数据
  50. /// <param name="keyValue">主键</param>
  51. /// <summary>
  52. /// <returns></returns>
  53. void DeleteEntity(string keyValue);
  54. /// <summary>
  55. /// 保存实体数据(新增、修改)
  56. /// <param name="keyValue">主键</param>
  57. /// <summary>
  58. /// <returns></returns>
  59. void SaveEntity(UserInfo userInfo, string keyValue, SchoolCalendarEntity entity);
  60. #endregion
  61. }
  62. }