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.

VaccinationInfoIBLL.cs 1.7 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. /// 日 期:2022-07-18 17:52
  11. /// 描 述:疫情
  12. /// </summary>
  13. public interface VaccinationInfoIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表数据
  18. /// </summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<VaccinationInfoEntity> GetPageList(Pagination pagination, string queryJson);
  22. IEnumerable<VaccinationInfoEntity> GetPageListForTeacher(Pagination pagination, string queryJson);
  23. /// <summary>
  24. /// 获取VaccinationInfo表实体数据
  25. /// </summary>
  26. /// <param name="keyValue">主键</param>
  27. /// <returns></returns>
  28. VaccinationInfoEntity GetVaccinationInfoEntity(string keyValue);
  29. #endregion
  30. #region 提交数据
  31. /// <summary>
  32. /// 删除实体数据
  33. /// </summary>
  34. /// <param name="keyValue">主键</param>
  35. void DeleteEntity(string keyValue);
  36. /// <summary>
  37. /// 保存实体数据(新增、修改)
  38. /// </summary>
  39. /// <param name="keyValue">主键</param>
  40. /// <param name="entity">实体</param>
  41. void SaveEntity(string keyValue, VaccinationInfoEntity entity);
  42. #endregion
  43. /// <summary>
  44. /// 生成
  45. /// </summary>
  46. void CreateEntity(string userId,string Description);
  47. }
  48. }