using Learun.Util; using System.Collections.Generic; namespace Learun.Application.WorkFlow { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.04.17 /// 描 述:工作流委托规则 /// public interface WfDelegateRuleIBLL { #region 获取数据 /// /// 获取分页列表 /// /// 分页参数 /// 关键字(被委托人) /// 用户信息 /// IEnumerable GetPageList(Pagination pagination, string keyword, UserInfo userInfo); /// /// 根据委托人获取委托记录 /// /// IEnumerable GetList(UserInfo userInfo); /// /// 获取关联的模板数据 /// /// IEnumerable GetRelationList(string keyValue); #endregion #region 提交数据 /// /// 删除实体 /// /// 主键 void DeleteEntity(string keyValue); /// /// 保存实体 /// /// 主键 /// 实体数据 /// 关联模板主键 void SaveEntity(string keyValue, WfDelegateRuleEntity wfDelegateRuleEntity, string[] schemeInfoList); /// /// 更新委托规则状态信息 /// /// 主键 /// void UpdateState(string keyValue, int state); #endregion } }