- 添加 jdv2-prefetch-api,支持获取预拉取订单日志及订单列表 - 添加 jdv2-settings-api,支持获取及更新骆驼模块设置 - 更新生成的 API 文件列表,包含新增接口及相关模型和文档 - 修改本地设置文件,增加 prettier 格式化相关命令支持
80 lines
1.4 KiB
TypeScript
80 lines
1.4 KiB
TypeScript
/* 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
|
||
}
|