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.

StuMailIBLL.cs 2.1 KiB

4 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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-12-25 10:39
  11. /// 描 述:校长信箱
  12. /// </summary>
  13. public interface StuMailIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表分页数据
  18. /// <summary>
  19. /// <param name="pagination">查询参数</param>
  20. /// <param name="queryJson">查询参数</param>
  21. /// <returns></returns>
  22. IEnumerable<StuMailEntity> GetPageList(Pagination pagination, string queryJson);
  23. /// <summary>
  24. /// 获取页面显示列表分页数据
  25. /// <summary>
  26. /// <param name="pagination">分页参数</param>
  27. /// <param name="queryJson">查询参数</param>
  28. /// <returns></returns>
  29. IEnumerable<StuMailEntity> GetPageListByUserId(Pagination pagination, string queryJson, string userId);
  30. /// <summary>
  31. /// 获取页面显示列表数据
  32. /// <summary>
  33. /// <param name="queryJson">查询参数</param>
  34. /// <returns></returns>
  35. IEnumerable<StuMailEntity> GetList(string queryJson);
  36. /// <summary>
  37. /// 获取StuMail表实体数据
  38. /// <param name="keyValue">主键</param>
  39. /// <summary>
  40. /// <returns></returns>
  41. StuMailEntity GetStuMailEntity(string keyValue);
  42. #endregion
  43. #region 提交数据
  44. /// <summary>
  45. /// 删除实体数据
  46. /// <param name="keyValue">主键</param>
  47. /// <summary>
  48. /// <returns></returns>
  49. void DeleteEntity(string keyValue);
  50. /// <summary>
  51. /// 保存实体数据(新增、修改)
  52. /// <param name="keyValue">主键</param>
  53. /// <summary>
  54. /// <returns></returns>
  55. void SaveEntity(UserInfo userInfo, string keyValue, StuMailEntity entity);
  56. #endregion
  57. }
  58. }