IDeviceMgPlansApplicationService.cs 596 B

123456789101112131415161718192021
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.CompanyInfo.DeviceInfo.Dto;
  5. namespace ShwasherSys.CompanyInfo.DeviceInfo
  6. {
  7. public interface IDeviceMgPlanAppService : IIwbZeroAsyncCrudAppService<DeviceMgPlanDto, int, IwbPagedRequestDto, DeviceMgPlanCreateDto, DeviceMgPlanUpdateDto >
  8. {
  9. Task Maintain(MaintainDto input);
  10. #region Get
  11. Task<DeviceMgPlan> GetEntity(EntityDto<int> input);
  12. Task<DeviceMgPlan> GetEntityById(int id);
  13. Task<DeviceMgPlan> GetEntityByNo(string no);
  14. #endregion
  15. }
  16. }