using System.Collections.Generic; namespace Learun.Application.WorkFlow { /// /// 版 本 PIT-ADMS V7.0.3 敏捷开发框架 /// Copyright (c) 2013-2018 Hexagon PPM /// 创建人:研发部 /// 日 期:2018.12.10 /// 描 述:会签记录操作 /// public interface NWFConfluenceIBLL { #region 获取数据 /// /// 获取会签记录 /// /// 流程实例主键 /// 节点主键 /// IEnumerable GetList(string processId, string nodeId); #endregion #region 提交数据 /// /// 保存成功的会前记录 /// /// 实体 void SaveEntity(NWFConfluenceEntity entity); /// /// 删除会签节点数据 /// /// 实例主键 /// 节点主键 void DeleteEntity(string processId, string nodeId); #endregion } }