| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using ContractService.Client.Staff.Dto;
- using ContractService.LegalCase.Dto;
- using IwbZero.AppServiceBase;
- using ContractService.LegalContract.KeyPoint.Dto;
- namespace ContractService.LegalContract.KeyPoint
- {
- public interface ILegalContractKeyPointAppService : IIwbZeroAsyncCrudAppService<LegalContractKeyPointDto, string, IwbPagedRequestDto, LegalContractKeyPointCreateDto, LegalContractKeyPointUpdateDto >
- {
- #region Get
- Task<LegalContractKeyPointInfo> GetEntity(EntityDto<string> input);
- Task<LegalContractKeyPointInfo> GetEntityById(string id);
- Task<LegalContractKeyPointInfo> GetEntityByNo(string no);
- #endregion
- Task<LegalContractKeyPointDto> CreateKp(LegalContractKeyPointCreateDto input);
- /// <summary>
- /// 变更状态
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- Task ChangeState(ChangeStaterDto input);
- /// <summary>
- /// 分配关键点
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- Task SetKeyPointOrg(KeyPointOrgDto input);
- /// <summary>
- /// 查询分配的关键点
- /// </summary>
- /// <param name="no"></param>
- /// <returns></returns>
- ClientStaffDto GetKeyPointOrg(string no);
- /// <summary>
- /// 获取子关键点
- /// </summary>
- /// <param name="contractNo"></param>
- /// <returns></returns>
- Task<List<LegalContractKeyPointDto>> GetKeyPoints(string contractNo);
- /// <summary>
- /// 获取关键点
- /// </summary>
- /// <returns></returns>
- Task<List<LegalContractKeyPointDto>> GetKeyPointsByType(int type);
- /// <summary>
- /// 变更材料(证据)
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- Task CreateSupplement(KpSupplementDto input);
- }
- }
|