Files
kami_frontend/src/api/generated/models/kami-api-camel-oil-v1-account-list-item.ts
danial 5c1505449b feat(api): 添加 JDV2 Token 管理接口及相关模型
- 新增 JDV2TokenManagementApi 接口文件,包含创建、删除、获取及列出 Token 的功能
- 添加与 Token 相关的请求和响应模型,如 CreateTokenReq/Res、DeleteTokenReq/Res 等
- 在 api.ts 中导出新的 JDV2TokenManagementApi 模块
- 更新 default-api.ts,移除已弃用的 iTunes 充值回调和处理接口
- 增加了 Token 绑卡记录查询接口及对应的数据模型
- 调整了部分枚举值顺序以符合业务逻辑
- 升级 Node.js 版本至 24.11.1 并更新 pnpm 至 10.23.0
2025-11-22 20:57:10 +08:00

89 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* tslint:disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface KamiApiCamelOilV1AccountListItem {
/**
* 账号ID
*/
accountId?: number;
/**
* 账号名称
*/
accountName?: string;
/**
* 手机号(脱敏)
*/
phone?: string;
/**
* 状态
*/
status?: KamiApiCamelOilV1AccountListItemStatusEnum;
/**
* 状态文本
*/
statusText?: string;
/**
* 当日下单数
*/
dailyOrderCount?: number;
/**
* 当日日期
*/
dailyOrderDate?: string;
/**
* 累计下单数
*/
totalOrderCount?: number;
/**
* 最后使用时间
*/
lastUsedAt?: string;
/**
* 最后登录时间
*/
lastLoginAt?: string;
/**
* Token过期时间
*/
tokenExpireAt?: string;
/**
* 剩余可下单数10-dailyOrderCount
*/
remainingOrders?: number;
/**
* 失败原因
*/
failureReason?: string;
/**
* 备注
*/
remark?: string;
/**
* 创建时间
*/
createdAt?: string;
/**
* 更新时间
*/
updatedAt?: string;
}
export enum KamiApiCamelOilV1AccountListItemStatusEnum {
NUMBER_4 = 4,
NUMBER_2 = 2,
NUMBER_3 = 3,
NUMBER_0 = 0,
NUMBER_1 = 1
}