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.

StuFellowshipIBLL.cs 2.3 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-13 10:37
  11. /// 描 述:定制功能助学金
  12. /// </summary>
  13. public interface StuFellowshipIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取列表数据
  18. /// </summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<StuFellowshipEntity> GetList( string queryJson );
  22. /// <summary>
  23. /// 获取列表分页数据
  24. /// </summary>
  25. /// <param name="pagination">分页参数</param>
  26. /// <param name="queryJson">查询参数</param>
  27. /// <returns></returns>
  28. IEnumerable<StuFellowshipEntity> GetPageList(Pagination pagination, string queryJson);
  29. /// <summary>
  30. /// 获取实体数据
  31. /// </summary>
  32. /// <param name="keyValue">主键</param>
  33. /// <returns></returns>
  34. StuFellowshipEntity GetEntity(string keyValue);
  35. /// <summary>
  36. /// 获取统计列表数据
  37. /// </summary>
  38. /// <param name="queryJson">条件参数</param>
  39. /// <returns></returns>
  40. IEnumerable<StuFellowshipEntity> GetStatisticList(string queryJson);
  41. #endregion
  42. #region 提交数据
  43. /// <summary>
  44. /// 删除实体数据
  45. /// </summary>
  46. /// <param name="keyValue">主键</param>
  47. void DeleteEntity(string keyValue);
  48. /// <summary>
  49. /// 保存实体数据(新增、修改)
  50. /// </summary>
  51. /// <param name="keyValue">主键</param>
  52. /// <param name="entity">实体</param>
  53. void SaveEntity(string keyValue, StuFellowshipEntity entity);
  54. /// <summary>
  55. /// 提交
  56. /// </summary>
  57. /// <param name="keyValue">主键</param>
  58. void DoSubmit(string keyValue, string status, string step);
  59. /// <summary>
  60. /// 退回
  61. /// </summary>
  62. /// <param name="keyValue">主键</param>
  63. void DoBack(string keyValue, string status, string step);
  64. #endregion
  65. }
  66. }