主要变更: 1. 所有 Entity/DTO/VO 添加 @Schema 注解,完善 API 文档 2. 新增前端 API 封装模块 (src/apis),包含 fetch.ts 和 apis.ts 3. 生成完整的 TypeScript 类型定义(100+ 个模型) 4. pom.xml 添加 Maven 编译配置和 UTF-8 编码支持 5. 更新 CLAUDE.md 开发文档,新增接口规范和 Swagger 注解规范 6. 清理旧的文档文件和 Flyway 迁移脚本 技术细节: - 后端:27 个实体类 + 所有 DTO/Response 添加 Swagger 注解 - 前端:新增 orval 生成的 API 客户端类型 - 构建:配置 Maven compiler plugin 和 Spring Boot 插件的 JVM 参数 - 数据库:新增 schema 导出文件,删除旧 Flyway 迁移脚本 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
526 B
TypeScript
23 lines
526 B
TypeScript
/**
|
|
* Generated by orval v7.13.2 🍺
|
|
* Do not edit manually.
|
|
* Reading Platform API
|
|
* Reading Platform Backend Service API Documentation
|
|
* OpenAPI spec version: 1.0.0
|
|
*/
|
|
import type { TaskCompletionInfoResponse } from './taskCompletionInfoResponse';
|
|
|
|
/**
|
|
* 分页响应
|
|
*/
|
|
export interface CommonPageResponseTaskCompletionInfoResponse {
|
|
/** 数据列表 */
|
|
items?: TaskCompletionInfoResponse[];
|
|
/** 总数 */
|
|
total?: number;
|
|
/** 当前页码 */
|
|
page?: number;
|
|
/** 每页大小 */
|
|
pageSize?: number;
|
|
}
|