Files
kami_frontend/src/api/generated/models/kami-api-camel-oil-v1-prefetch-order-list-item.ts
danial 6d25b11074 feat(api): 新增预拉取订单和设置接口模块
- 添加 jdv2-prefetch-api,支持获取预拉取订单日志及订单列表
- 添加 jdv2-settings-api,支持获取及更新骆驼模块设置
- 更新生成的 API 文件列表,包含新增接口及相关模型和文档
- 修改本地设置文件,增加 prettier 格式化相关命令支持
2025-12-05 22:13:07 +08:00

80 lines
1.4 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 KamiApiCamelOilV1PrefetchOrderListItem {
/**
* 主键ID
*/
id?: number;
/**
* 拉取时使用的账号ID
*/
accountId?: number;
/**
* 账号名称
*/
accountName?: string;
/**
* 预拉取订单金额
*/
amount?: number;
/**
* 骆驼平台订单号
*/
platformOrderNo?: string;
/**
* 支付宝支付链接
*/
alipayUrl?: string;
/**
* 预拉取订单状态1待匹配 2已匹配 3已过期 4已失效
*/
status?: KamiApiCamelOilV1PrefetchOrderListItemStatusEnum;
/**
* 匹配后的订单号
*/
orderNo?: string;
/**
* 匹配时间
*/
matchedAt?: string;
/**
* 预拉取订单过期时间
*/
expireAt?: string;
/**
* 失败原因
*/
failureReason?: string;
/**
* 备注信息
*/
remark?: string;
/**
* 创建时间
*/
createdAt?: string;
/**
* 更新时间
*/
updatedAt?: string;
}
export enum KamiApiCamelOilV1PrefetchOrderListItemStatusEnum {
NUMBER_3 = 3,
NUMBER_4 = 4,
NUMBER_2 = 2,
NUMBER_1 = 1
}