ISjPackageAppService.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Abp.Application.Services.Dto;
  4. using Abp.Web.Models;
  5. using WeEngine.CommonDto;
  6. using WePlatform.Configuration;
  7. using WePlatform.DataCenter.SjPackage.Dto;
  8. namespace WePlatform.DataCenter.SjPackage
  9. {
  10. /// <summary>
  11. /// 方案包API
  12. /// </summary>
  13. //[ShowApi]
  14. [DontWrapResult]
  15. public interface ISjPackageAppService :IDataCenterAppService
  16. {
  17. #region SJ
  18. /// <summary>
  19. /// 导入方案包(松江沙盘演练)
  20. /// </summary>
  21. /// <param name="input"></param>
  22. /// <returns></returns>
  23. Task<string> Export(SjExportPackage input);
  24. /// <summary>
  25. /// 查询方案包(松江沙盘演练)
  26. /// </summary>
  27. /// <param name="input"></param>
  28. /// <returns></returns>
  29. Task<SjExportPackage> Query(EntityDto<string> input);
  30. /// <summary>
  31. /// 查询方案包(松江沙盘演练)
  32. /// </summary>
  33. /// <param name="no"></param>
  34. /// <returns></returns>
  35. Task<SjExportPackage> QueryByNo(string no);
  36. #endregion
  37. }
  38. }