using Myshipping.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 服务流程 /// internal interface IServiceWorkFlowBaseService { /// /// 保存 /// /// 服务流程详情 /// 返回回执 Task Save(ServiceWorkFlowBaseDto info); /// /// 保存并启用 /// /// 服务流程详情 /// 返回回执 Task SaveAndEnable(ServiceWorkFlowBaseDto info); /// /// 启用 /// /// 服务流程主键 /// 返回回执 Task SetEnable(string pkId); /// /// 取消启用 /// /// 服务流程主键 /// 返回回执 Task SetUnEnable(string pkId); /// /// 删除 /// /// 服务流程主键 /// 返回回执 Task Delete(string pkId); /// /// 复制 /// /// 服务流程主键 /// 返回回执 Task Copy(string pkId); /// /// 获取服务流程详情 /// /// 服务流程主键 /// 返回回执 Task GetInfo(string pkId); /// /// 检索服务流程列表 /// /// 检索值 /// 最大返回行数(默认15) /// 返回回执 Task QueryList(string queryItem, int topNum = 15); /// /// 服务流程台账查询 /// /// 服务流程台账查询请求 /// 返回结果 Task> GetPageAsync(QueryServiceWorkFlowBaseDto QuerySearch); /// /// 发布服务流程 /// /// 服务流程主键 /// 返回回执 Task PublishRelease(string pkId); /// /// 获取展示服务流程时间轴列表 /// /// 服务流程主键 /// 返回回执 Task GetShowTimeLine(string pkId); } }