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.
 
 
 
 
 
 

63 lines
1.9 KiB

  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 V7.0.6 力软敏捷开发框架
  8. /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2023-03-16 11:49
  11. /// 描 述:校级奖学金
  12. /// </summary>
  13. public interface SchoolLevelScholarshipIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表数据
  18. /// </summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<SchoolLevelScholarshipEntity> GetPageList(Pagination pagination, string queryJson);
  22. /// <summary>
  23. /// 获取SchoolLevelScholarship表实体数据
  24. /// </summary>
  25. /// <param name="keyValue">主键</param>
  26. /// <returns></returns>
  27. SchoolLevelScholarshipEntity GetSchoolLevelScholarshipEntity(string keyValue);
  28. #endregion
  29. #region 提交数据
  30. /// <summary>
  31. /// 删除实体数据
  32. /// </summary>
  33. /// <param name="keyValue">主键</param>
  34. void DeleteEntity(string keyValue);
  35. /// <summary>
  36. /// 保存实体数据(新增、修改)
  37. /// </summary>
  38. /// <param name="keyValue">主键</param>
  39. /// <param name="entity">实体</param>
  40. void SaveEntity(string keyValue, SchoolLevelScholarshipEntity entity);
  41. /// <summary>
  42. /// 提交
  43. /// </summary>
  44. /// <param name="keyValue">主键</param>
  45. void DoSubmit(string keyValue, string status, string step);
  46. /// <summary>
  47. /// 退回
  48. /// </summary>
  49. /// <param name="keyValue">主键</param>
  50. void DoBack(string keyValue, string status, string step);
  51. #endregion
  52. }
  53. }