This commit is contained in:
chashaobao
2025-12-02 21:18:50 +08:00
parent a07b015d8e
commit 288521ebd9
10 changed files with 381 additions and 143 deletions

View File

@ -8,13 +8,18 @@ export interface DeclarationTypeResult {
}
export interface ProductInfo {
productCode: ProductType;
productId: ProductType;
// productCode: ProductType;
// productId: ProductType;
balance: number;
created: number;
updated: number;
isPaidVip?: boolean;
// 报单类型信息,只有 use 接口返回值才有
plaidBalance: number;
freeBalance: number;
content: string;
created: string;
updated: string;
isPaidVip: boolean;
isCreateResume: boolean;
allowBuyProduct: boolean;
declarationTypeResult?: DeclarationTypeResult;
}
@ -110,11 +115,12 @@ export interface GetOrderInfoRequest {
export interface ProductSpecResult {
productId: string;
productSpecId: string;
productSpecId: ProductSpecId;
productType: ProductType;
productName: string;
title: string;
priceText: string;
expire: number;
payPrice: number; // 分
showPrice: number;
originalPrice: number;