| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Muchinfo.MTPClient.Data;
- namespace Muchinfo.MTPClient.IService
- {
- public interface IErmcpService
- {
- /// <summary>
- /// 获取登录ID
- /// </summary>
- /// <param name="username">可传入“登录账号”、“登录代码”和“手机号码”</param>
- /// <param name="successAction">成功能回调</param>
- /// <param name="errorAction">失败回调</param>
- void GetLoginId(string username, Action<string> successAction, Action<ErrorEntity> errorAction);
- /// <summary>
- /// CTP获取系统信息
- /// </summary>
- /// <returns></returns>
- byte[] GetSystemInfo();
- }
- }
|