123456789101112131415161718192021222324252627282930313233 |
- /**
- * 请求邮件信息
- */
- export interface ReqMailInfo {
- }
- /**
- * 返回邮件信息列表
- */
- export interface ResMailInfo {
- [id:string]:MailInfo
- }
- export interface MailInfo {
- id: string
- title: string //标题
- content: string //内容
- items: number[][] //道具列表
- fts: number //发送时间
- rts: number //读取时间
- ets: number //过期时间
- dts: number //删除时间
- }
- export const conf = {
- connet: "ws"
- }
|