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.
 
 
 
 
 
 

40 lines
1.2 KiB

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