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

29 lines
726 B
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 KamiApiCamelOilV1DenominationSetting {
/**
* 面额值如100、200、500等
*/
denomination?: number;
/**
* 该面额预拉取订单最小库存阈值(当库存低于此值时触发补充)
*/
minCapacity?: number;
/**
* 该面额预拉取订单目标库存(补充时的目标数量)
*/
targetCapacity?: number;
}