/** 消息类型 */ export type MessageType = 'system' | 'order' | 'activity' /** 消息 */ export interface ShopMessage { /** 消息ID */ id: string /** 消息类型 */ type: MessageType /** 消息标题 */ title: string /** 消息内容 */ content: string /** 是否已读 */ isRead: boolean /** 创建时间 */ createdAt: string /** 相关链接(可选) */ link?: string }