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.

NWFConfluenceIBLL.cs 1.2 KiB

4 years ago
1234567891011121314151617181920212223242526272829303132333435363738
  1. 
  2. using System.Collections.Generic;
  3. namespace Learun.Application.WorkFlow
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架
  7. /// Copyright (c) 2013-2018 上海力软信息技术有限公司
  8. /// 创建人:力软-框架开发组
  9. /// 日 期:2018.12.10
  10. /// 描 述:会签记录操作
  11. /// </summary>
  12. public interface NWFConfluenceIBLL
  13. {
  14. #region 获取数据
  15. /// <summary>
  16. /// 获取会签记录
  17. /// </summary>
  18. /// <param name="processId">流程实例主键</param>
  19. /// <param name="nodeId">节点主键</param>
  20. /// <returns></returns>
  21. IEnumerable<NWFConfluenceEntity> GetList(string processId, string nodeId);
  22. #endregion
  23. #region 提交数据
  24. /// <summary>
  25. /// 保存成功的会前记录
  26. /// </summary>
  27. /// <param name="entity">实体</param>
  28. void SaveEntity(NWFConfluenceEntity entity);
  29. /// <summary>
  30. /// 删除会签节点数据
  31. /// </summary>
  32. /// <param name="processId">实例主键</param>
  33. /// <param name="nodeId">节点主键</param>
  34. void DeleteEntity(string processId, string nodeId);
  35. #endregion
  36. }
  37. }