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.

HealthPunchTimeIBLL.cs 1.6 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-06-17 09:17
  11. /// 描 述:健康打卡时段
  12. /// </summary>
  13. public interface HealthPunchTimeIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表数据
  18. /// </summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<HealthPunchTimeEntity> GetPageList(Pagination pagination, string queryJson);
  22. /// <summary>
  23. /// 获取HealthPunchTime表实体数据
  24. /// </summary>
  25. /// <param name="keyValue">主键</param>
  26. /// <returns></returns>
  27. HealthPunchTimeEntity GetHealthPunchTimeEntity(string keyValue);
  28. HealthPunchTimeEntity GetTypeEntity(string Type);
  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, HealthPunchTimeEntity entity);
  42. void EnableEntity(string keyValue);
  43. #endregion
  44. }
  45. }