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 { /// /// 方案包API /// //[ShowApi] [DontWrapResult] public interface ISjPackageAppService :IDataCenterAppService { #region SJ /// /// 导入方案包(松江沙盘演练) /// /// /// Task Export(SjExportPackage input); /// /// 查询方案包(松江沙盘演练) /// /// /// Task Query(EntityDto input); /// /// 查询方案包(松江沙盘演练) /// /// /// Task QueryByNo(string no); #endregion } }