数据模型
数据模型表示 API 处理的数据的结构。 这些模型定义了客户端和服务器之间交换的数据实体的形式。
例如,在这个图书管理 API 项目中,可以定义一个 Book
模型:
创建 src/model/book.ts:
// Book 接口表示图书的结构
export interface Book {
id: number;
title: string;
author: string;
published_at: string;
description: string;
isbn: string;
total_pages: number;
created_at: Date;
updated_at: Date;
}