declare namespace API { // 分页模型 interface Pagination { size?: number current?: number total?: number } // 时间模型 interface TimeInfo { createdAt?: string updatedAt?: string } // 基础ID interface BaseID { id?: string } // 验证码请求 interface CaptchaReq { captchaId: string captcha: string } }