Files
kami_frontend/src/api/generated/docs/KamiApiCamelOilV1GetSettingsRes.md
danial 00c06d461d refactor(prefetch): 优化预拉取订单日志展示和设置逻辑
- 移除响应数据详情弹窗,改为日志文本方式展示全部响应数据
- 新增复制日志和清空日志功能及按钮
- 移除日志分页,直接显示全部日志数据
- 设置界面新增豪猪平台用户名和密码字段,支持条件校验
- 优化设置表单逻辑,加载、提交和重置均由组件内部管理
- 删除多余API响应字段如statusText等,简化数据结构
- 统一预拉取订单列表和日志的代码风格及样式调整
- 增加日志复制和操作的用户提示信息
2025-12-06 00:13:40 +08:00

2.4 KiB

KamiApiCamelOilV1GetSettingsRes

Properties

Name Type Description Notes
useHaozhuPlatform boolean 是否从豪猪平台获取手机号登录 [optional] [default to undefined]
haozhuUsername string 豪猪平台用户名 [optional] [default to undefined]
haozhuPassword string 豪猪平台密码 [optional] [default to undefined]
loginAccountCount number 要登录的手机号数量 [optional] [default to undefined]
prefetchConcurrencyAccounts number 提前拉单并发的账号数量 [optional] [default to undefined]
singleAccountConcurrency number 单个账号的并发数量 [optional] [default to undefined]
targetDenominations Array<KamiApiCamelOilV1DenominationSetting> 要获取的面额和对应库存设置列表 [optional] [default to undefined]

Example

import { KamiApiCamelOilV1GetSettingsRes } from './api';

const instance: KamiApiCamelOilV1GetSettingsRes = {
  useHaozhuPlatform,
  haozhuUsername,
  haozhuPassword,
  loginAccountCount,
  prefetchConcurrencyAccounts,
  singleAccountConcurrency,
  targetDenominations
};

[Back to Model list] [Back to API list] [Back to README]