using LeaRun.Application.Entity.FlowManage; using System.Collections.Generic; using System.Data; namespace LeaRun.Application.IService.FlowManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:陈彬彬 /// 日 期:2016.03.04 16:58 /// 描 述:工作流模板内容表操作接口(支持:SqlServer) /// public interface WFSchemeContentIService { /// /// 获取对象 /// /// 关联id /// 模板版本号 /// WFSchemeContentEntity GetEntity(string contentid, string version); /// /// 获取对象列表 /// /// 工作流模板信息表Id /// IEnumerable GetEntityList(string wfSchemeInfoId); /// /// 获取对象列表(不包括模板内容) /// /// 工作流模板信息表Id /// DataTable GetTableList(string wfSchemeInfoId); /// /// 保存对象 /// /// /// /// int SaveEntity(WFSchemeContentEntity entity, string keyValue); } }