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.

DemoleaveIBLL.cs 1.2 KiB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839
  1. 
  2. using Learun.Util;
  3. using System.Collections.Generic;
  4. namespace Learun.Application.TwoDevelopment.SystemDemo
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  8. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  9. /// 创建人:陈彬彬
  10. /// 日 期:2017.04.17
  11. /// 描 述:系统表单-请假单
  12. /// </summary>
  13. public interface DemoleaveIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取请假数据列表
  18. /// </summary>
  19. /// <param name="pagination">分页</param>
  20. /// <returns></returns>
  21. IEnumerable<DemoleaveEntity> GetPageList(Pagination pagination);
  22. /// <summary>
  23. /// 根据流程实例获取表单数据
  24. /// </summary>
  25. /// <param name="processId"></param>
  26. /// <returns></returns>
  27. DemoleaveEntity GetEntity(string processId);
  28. #endregion
  29. #region 提交数据
  30. /// <summary>
  31. /// 保存更新数据
  32. /// </summary>
  33. /// <param name="keyValue">主键</param>
  34. /// <param name="entity">实体对象</param>
  35. void SaveEntity(string keyValue, DemoleaveEntity entity);
  36. #endregion
  37. }
  38. }