mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
fix: 修复支付可能存在的缺陷
This commit is contained in:
9
src/types/mongoSchema.d.ts
vendored
9
src/types/mongoSchema.d.ts
vendored
@@ -85,3 +85,12 @@ export interface BillSchema {
|
||||
textLen: number;
|
||||
price: number;
|
||||
}
|
||||
|
||||
export interface PaySchema {
|
||||
_id: string;
|
||||
userId: string;
|
||||
createTime: Date;
|
||||
price: number;
|
||||
orderId: string;
|
||||
status: 'SUCCESS' | 'REFUND' | 'NOTPAY' | 'CLOSED';
|
||||
}
|
||||
|
Reference in New Issue
Block a user