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.

PsychologyInfoIBLL.cs 2.0 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-06 12:18
  11. /// 描 述:心里预约功能
  12. /// </summary>
  13. public interface PsychologyInfoIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取列表数据
  18. /// </summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<PsychologyInfoEntity> GetList( string queryJson );
  22. /// <summary>
  23. /// 获取列表分页数据
  24. /// </summary>
  25. /// <param name="pagination">分页参数</param>
  26. /// <param name="queryJson">查询参数</param>
  27. /// <returns></returns>
  28. IEnumerable<PsychologyInfoEntity> GetPageList(Pagination pagination, string queryJson);
  29. /// <summary>
  30. /// 获取实体数据
  31. /// </summary>
  32. /// <param name="keyValue">主键</param>
  33. /// <returns></returns>
  34. PsychologyInfoEntity GetEntity(string keyValue);
  35. PsychologyInfoEntity GetEntityForView(string keyValue);
  36. #endregion
  37. #region 提交数据
  38. /// <summary>
  39. /// 删除实体数据
  40. /// </summary>
  41. /// <param name="keyValue">主键</param>
  42. void DeleteEntity(string keyValue);
  43. /// <summary>
  44. /// 保存实体数据(新增、修改)
  45. /// </summary>
  46. /// <param name="keyValue">主键</param>
  47. /// <param name="entity">实体</param>
  48. void SaveEntity(string keyValue, PsychologyInfoEntity entity);
  49. /// <summary>
  50. /// 提交实体数据
  51. /// </summary>
  52. /// <param name="keyValue">主键</param>
  53. void SubmitEntity(string keyValue);
  54. #endregion
  55. }
  56. }