using LeaRun.Application.Entity.FlowManage; using LeaRun.Util.WebControl; using System.Data; namespace LeaRun.Application.IService.FlowManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:陈彬彬 /// 日 期:2016.01.14 11:02 /// 描 述:工作流委托记录操作接口(支持:SqlServer) /// public interface WFDelegateRecordIService { #region 获取数据 /// /// 获取分页数据(type 1:委托记录,其他:被委托记录) /// /// /// /// /// /// DataTable GetPageList(Pagination pagination, string queryJson, int type, string userId = null); #endregion #region 提交数据 /// /// 保存实体数据 /// /// /// /// int SaveEntity(string keyValue, WFDelegateRecordEntity entity); #endregion } }