PtlPlatLogin.ts 510 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * 平台登录
  3. */
  4. export interface ReqPlatLogin {
  5. pid:string; //包ID
  6. param:string[]; //参数
  7. }
  8. /**
  9. * 返回平台登录信息
  10. */
  11. export interface ResPlatLogin {
  12. openId:string //唯一标识
  13. token:string //唯一标识对应的token
  14. noticeWais:Notices[] //登陆界面公告
  15. }
  16. export interface Notices {
  17. type: number; //公告类型
  18. title: string; //这里是公告标题
  19. content: string; //这里是公告内容
  20. }
  21. export const conf = {
  22. connet: "http"
  23. }