mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
feat: 账单模块
This commit is contained in:
9
src/types/mongoSchema.d.ts
vendored
9
src/types/mongoSchema.d.ts
vendored
@@ -75,3 +75,12 @@ export interface ChatPopulate extends ChatSchema {
|
||||
userId: UserModelSchema;
|
||||
modelId: ModelSchema;
|
||||
}
|
||||
|
||||
export interface BillSchema {
|
||||
_id: string;
|
||||
userId: string;
|
||||
chatId: string;
|
||||
time: number;
|
||||
textLen: number;
|
||||
price: number;
|
||||
}
|
||||
|
Reference in New Issue
Block a user