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.
 
 
 
 
 
 

39 lines
1.2 KiB

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