| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using Abp.Web.Models;
- using WeEngine.CommonDto;
- using WePlatform.Configuration;
- using WePlatform.DataCenter.SjPackage.Dto;
- namespace WePlatform.DataCenter.SjPackage
- {
- /// <summary>
- /// 方案包API
- /// </summary>
- //[ShowApi]
- [DontWrapResult]
- public interface ISjPackageAppService :IDataCenterAppService
- {
-
- #region SJ
- /// <summary>
- /// 导入方案包(松江沙盘演练)
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- Task<string> Export(SjExportPackage input);
- /// <summary>
- /// 查询方案包(松江沙盘演练)
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- Task<SjExportPackage> Query(EntityDto<string> input);
- /// <summary>
- /// 查询方案包(松江沙盘演练)
- /// </summary>
- /// <param name="no"></param>
- /// <returns></returns>
- Task<SjExportPackage> QueryByNo(string no);
- #endregion
- }
- }
|