/** * Generated by orval v7.0.1 🍺 * Do not edit manually. * Serve API * Serve应用接口文档 * OpenAPI spec version: 0.0.1-SNAPSHOT */ import type { UserVo } from "./userVo"; /** * 后端统一的响应实体 */ export interface ResponseUserVo { /** 状态码;200:成功 */ code?: number; /** 响应的具体数据 */ data?: UserVo; /** 响应附加信息 */ message?: string; }