using System.Collections.Generic; using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using WePlatform.WeLib.Knowledge.Plan.Dto; namespace WePlatform.WeLib.Knowledge.Plan { public interface IEmergencyPlanAppService : IIwbZeroAsyncCrudAppService { /// /// 获取子预案 /// /// /// Task> GetChildPlan(EntityDto input); /// /// 查下预案内容 /// /// /// Task> GetPlanContent(QueryContentDto input); /// /// 添加(更新)预案内容 /// /// /// Task UpdatePlanContent(PlanContentDto input); /// /// 删除内容 /// /// /// Task DeletePlanContent(EntityDto input); /// /// 设为当前使用 /// /// /// Task SetUse(EntityDto input); #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion } }