[新增]AI: 写作管理

This commit is contained in:
hhhero
2024-07-14 23:22:10 +08:00
parent d266b99e9e
commit 1f22e0b88d
5 changed files with 279 additions and 29 deletions

5
types/global.d.ts vendored
View File

@ -50,4 +50,9 @@ declare global {
name: string
children?: Tree[] | any[]
}
// 分页数据公共返回
interface PageResult<T> {
list: T // 数据
total: number // 总量
}
}