- using System.Threading.Tasks;
- using GxPress.Result.DataCenter;
- namespace GxPress.Service.Interface.PlatformData
- {
- public interface IPlatformDataService:IService
- {
- /// <summary>
- /// 平台运营数据
- /// </summary>
- /// <returns></returns>
- Task<PlatformOperationDataResult> GetPlatformDataAsync();
- }
- }
|