PtlMailInfo.ts 471 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * 请求邮件信息
  3. */
  4. export interface ReqMailInfo {
  5. }
  6. /**
  7. * 返回邮件信息列表
  8. */
  9. export interface ResMailInfo {
  10. [id:string]:MailInfo
  11. }
  12. export interface MailInfo {
  13. id: string
  14. title: string //标题
  15. content: string //内容
  16. items: number[][] //道具列表
  17. fts: number //发送时间
  18. rts: number //读取时间
  19. ets: number //过期时间
  20. dts: number //删除时间
  21. }
  22. export const conf = {
  23. connet: "ws"
  24. }