using System.Collections.Generic; using System.Threading.Tasks; using Abp.Application.Services.Dto; using ContractService.LegalCase.Dto; using IwbZero.AppServiceBase; namespace ContractService.LegalCase { public interface ILegalCaseAppService : IIwbZeroAsyncCrudAppService { Task> GetAllCase(List input); /// /// 变更状态 /// /// /// Task ChangeState(ChangeStaterDto input); /// /// 分配员工 /// /// /// Task SetStaff(SetStaffLawyerDto input); /// /// 查询项目的辅助律师 /// /// /// Task> GetCaseStaffs(string no); /// /// 项目备注 /// /// /// Task CreateNote(CaseNoteDto input); /// /// 项目备注 /// /// /// Task> QueryNote(LazyQueryDto input); #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion } }