IPlatformDataService.cs 353 B

1234567891011121314
  1. using System.Threading.Tasks;
  2. using GxPress.Result.DataCenter;
  3. namespace GxPress.Service.Interface.PlatformData
  4. {
  5. public interface IPlatformDataService:IService
  6. {
  7. /// <summary>
  8. /// 平台运营数据
  9. /// </summary>
  10. /// <returns></returns>
  11. Task<PlatformOperationDataResult> GetPlatformDataAsync();
  12. }
  13. }