PtlMailInfo.ts 629 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <<<<<<< Updated upstream
  2. /**
  3. * 请求邮件信息
  4. */
  5. =======
  6. // 定义请求参数
  7. >>>>>>> Stashed changes
  8. export interface ReqMailInfo {
  9. }
  10. <<<<<<< Updated upstream
  11. /**
  12. * 返回邮件信息列表
  13. */
  14. =======
  15. // 定义返回字段
  16. >>>>>>> Stashed changes
  17. export interface ResMailInfo {
  18. [id:string]:MailInfo
  19. }
  20. export interface MailInfo {
  21. id: string
  22. title: string //标题
  23. content: string //内容
  24. items: number[][] //道具列表
  25. fts: number //发送时间
  26. rts: number //读取时间
  27. ets: number //过期时间
  28. dts: number //删除时间
  29. }
  30. export const conf = {
  31. connet: "ws"
  32. }