fix: 优化尊享包记录

This commit is contained in:
Gsh
2025-11-16 21:30:37 +08:00
parent ffb2f2fb4c
commit d95c14c903
3 changed files with 77 additions and 190 deletions

View File

@@ -22,6 +22,10 @@ export interface PremiumTokenUsageDto {
purchaseAmount: number;
/** 备注 */
remark?: string;
/** 创建时间 */
creationTime?: string;
/** 创建者ID */
creatorId?: string;
}
// 查询参数接口 - 匹配后端 PagedAllResultRequestDto
@@ -38,6 +42,10 @@ export interface PremiumTokenUsageQueryParams {
skipCount?: number;
/** 最大返回数量(分页) */
maxResultCount?: number;
/** 是否免费 */
isFree?: boolean;
// 是否为升序排序
isAscending?: boolean;
}
// 分页响应接口