From 9001490da1de0f712e91c8aa82c11ee30754c150 Mon Sep 17 00:00:00 2001 From: shenyifei Date: Fri, 9 Jan 2026 17:59:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(dealer):=20=E6=B7=BB=E5=8A=A0=E7=BB=8F?= =?UTF-8?q?=E9=94=80=E5=95=86=E5=BA=94=E6=94=B6=E8=B4=A6=E6=AC=BE=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=B9=B6=E4=BC=98=E5=8C=96=E8=AE=A2=E5=8D=95=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E5=8D=95=E7=9B=B8=E5=85=B3=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 DealerAccountRecordList 组件用于展示经销商应收账款记录 - 在 DealerList 中添加应收账款标签页和相关组件 - 为 OrderShipList 和 OrderShipModal 添加应收金额和调整金额列 - 新增 OrderSupplierSelectList 替代原有的 OrderSupplierInvoiceList - 重构 ReconciliationSummary 使用 ProForm 组件并优化抹零功能 - 更新对账单创建页面逻辑,使用新的应收金额和调整金额字段 - 添加 ReceivablesDetail 页面用于查看应收账款明细 - 优化发货单选择列表的列配置和渲染方式 --- .claude/commands/create-page-component.md | 626 ++++++++++++++++++ .claude/rules/services-generated.md | 80 +++ .claude/rules/swagger-json.md | 31 + CLAUDE.md | 22 +- .../Dealer/DealerAccountRecordList.tsx | 203 ++++++ .../src/components/Dealer/DealerList.tsx | 13 + .../src/components/Dealer/index.ts | 5 +- .../src/components/Order/OrderShipList.tsx | 39 ++ .../src/components/Order/OrderShipModal.tsx | 46 ++ .../components/Order/OrderShipSelectList.tsx | 183 +++-- .../Order/OrderSupplierSelectList.tsx | 135 ++++ .../src/components/Order/index.ts | 3 +- .../PaymentTask/OrderSupplierInvoiceList.tsx | 84 --- .../PaymentTask/PaymentTaskCreate.tsx | 5 +- .../PaymentTask/PaymentTaskList.tsx | 8 +- .../components/PaymentTask/PaymentTaskPay.tsx | 4 +- .../src/components/PaymentTask/index.ts | 1 - .../Reconciliation/ReconciliationShipCard.tsx | 7 +- .../Reconciliation/ReconciliationSummary.tsx | 145 ++-- .../src/components/Reconciliation/typing.ts | 26 +- packages/app-operation/src/locales/zh-CN.ts | 28 + .../src/pages/ReceivablesDetail.tsx | 5 + .../src/pages/ReconciliationCreate.tsx | 182 ++--- .../src/services/auth/typings.d.ts | 6 +- .../src/services/business/typings.d.ts | 79 ++- swagger/business.json | 2 +- 26 files changed, 1587 insertions(+), 381 deletions(-) create mode 100644 .claude/commands/create-page-component.md create mode 100644 .claude/rules/services-generated.md create mode 100644 .claude/rules/swagger-json.md create mode 100644 packages/app-operation/src/components/Dealer/DealerAccountRecordList.tsx create mode 100644 packages/app-operation/src/components/Order/OrderSupplierSelectList.tsx delete mode 100644 packages/app-operation/src/components/PaymentTask/OrderSupplierInvoiceList.tsx create mode 100644 packages/app-operation/src/pages/ReceivablesDetail.tsx diff --git a/.claude/commands/create-page-component.md b/.claude/commands/create-page-component.md new file mode 100644 index 0000000..1ef9dd5 --- /dev/null +++ b/.claude/commands/create-page-component.md @@ -0,0 +1,626 @@ +# /create-page-component Command + +当使用此命令时,创建一个新的页面组件及其相关的业务组件。 + +## 目的 + +在 ERPTurbo_Admin 项目中快速创建一个标准的页面组件,包括: +1. 业务组件(基于 BizContainer) +2. 页面组件 +3. 国际化翻译 +4. 组件导出配置 + +## 前置条件 + +- 项目使用 UmiJS Max + Ant Design + TypeScript +- 已有 BizContainer 核心业务组件 +- 已有 API 服务层(通过 OpenAPI 自动生成) + +## 使用方法 + +``` +/create-page-component <页面名称> +``` + +**参数说明:** +- `<页面名称>`: 页面名称,如 `ReceivablesDetail` +- ``: API 服务名称,如 `dealerAccountRecord` + +## 执行步骤 + +### 1. 分析现有代码结构 + +首先查找类似页面作为参考: +- 查看目标页面组件(如 `FarmerPayment.tsx`)的实现模式 +- 确定业务组件应该放在哪个目录(如 `components/Dealer/`) +- 查找 API 服务定义(如 `services/business/dealerAccountRecord.ts`) +- 查看 API 类型定义(`services/business/typings.d.ts` 中的 VO 类型) + +### 2. 创建业务组件 + +在 `packages/app-operation/src/components/<业务目录>/` 下创建 `List.tsx`: + +**组件结构模板:** +```tsx +import { BizContainer, BizValueType, ModeType } from '@/components'; +import { business } from '@/services'; +import { useIntl } from '@@/exports'; +import { ProColumns } from '@ant-design/pro-components'; +import { ProDescriptionsItemProps } from '@ant-design/pro-descriptions'; +import React from 'react'; + +interface IComponentNameListProps { + ghost?: boolean; + // 筛选参数 + xxxId?: BusinessAPI.XXXVO['xxxId']; + search?: boolean; + onValueChange?: () => void; + mode?: ModeType; + trigger?: () => React.ReactNode; +} + +export default function ComponentNameList(props: IComponentNameListProps) { + const { + ghost = false, + xxxId, + search = true, + mode = 'page', + trigger, + onValueChange, + } = props; + const intl = useIntl(); + const intlPrefix = 'componentName'; // 国际化前缀 + + // 定义表格列 + const columns: ProColumns[] = [ + { + title: intl.formatMessage({ id: intlPrefix + '.column.xxx' }), + dataIndex: 'xxx', + key: 'xxx', + valueType: 'text', // text|money|dateTime|select等 + }, + // 更多列... + ]; + + const detailColumns: ProDescriptionsItemProps< + BusinessAPI.XXXVO, + BizValueType + >[] = columns as ProDescriptionsItemProps< + BusinessAPI.XXXVO, + BizValueType + >[]; + + return ( + + rowKey={'id'} + permission={'operation-xxx'} + func={business.apiService} + method={'apiService'} + methodUpper={'ApiService'} + intlPrefix={intlPrefix} + modeType={mode} + onValueChange={onValueChange} + container={{ ghost }} + status={false} + page={{ + fieldProps: { + bordered: true, + ghost, + search, + params: { + ...(xxxId && { xxxId }), + }, + }, + columns, + options: () => [], + }} + create={false} // 根据需要启用 + update={false} + destroy={false} + detail={{ + rowId: xxxId, + formType: 'drawer', + columns: detailColumns, + trigger, + }} + /> + ); +} +``` + +**关键点:** +- 使用 `BizContainer` 作为容器组件 +- 定义 `columns` 用于列表展示 +- 定义 `detailColumns` 用于详情展示 +- 通过 `params` 传递筛选条件 +- 根据需求配置 `create/update/destroy` + +### 3. 导出业务组件 + +在 `packages/app-operation/src/components/<业务目录>/index.ts` 中添加导出: + +```typescript +export { default as ComponentNameList } from './ComponentNameList'; +``` + +### 4. 创建页面组件 + +在 `packages/app-operation/src/pages/` 下创建 `.tsx`: + +```tsx +import { ComponentNameList } from '@/components'; + +export default function Page() { + return ; +} +``` + +**关键点:** +- 文件名与路由一致 +- 导出为 `Page` 函数 +- 直接渲染业务组件 + +### 5. 添加国际化翻译 + +在 `packages/app-operation/src/locales/zh-CN.ts` 中添加翻译: + +```typescript +componentName: { + column: { + // 列标题 + fieldName: '字段名称', + // 枚举值 + 'enum.key': '枚举值显示文本', + option: '操作', + }, + modal: { + view: { + title: '查看详情', + button: '详情', + }, + }, +}, +``` + +**关键点:** +- 使用 `intlPrefix` 作为顶级键 +- `column` 中包含所有列的翻译 +- 枚举值使用 `'enum.key'` 格式 +- 添加 `modal` 相关翻译 + +## 常见 BizContainer 配置 + +### 如何判断是否有内置 valueType + +**快速检查方法:** +查看 `packages/app-operation/src/components/Biz/typing.ts` 中的 `BizValueType` 类型定义(第 18-28 行)。 + +**内置 valueType 列表:** +```typescript +export type BizValueType = + | 'user' // 用户 + | 'customField' // 自定义字段 + | 'status' // 状态 + | 'remark' // 备注 + | 'order' // 采购单 ✅ + | 'dealer' // 经销商 ✅ + | 'paymentTask' // 付款任务 ✅ + | 'company' // 公司 ✅ + | 'orderCost' // 订单费用 ✅ + | 'supplier'; // 供应商 ✅ +``` + +**判断流程:** +``` +1. 检查关联对象类型(如 orderVO、dealerVO、orderShipVO) + ↓ +2. 去掉 "VO" 后缀,得到类型名(order → order, orderShip → orderShip) + ↓ +3. 在 BizValueType 中查找 + ↓ +4a. 找到 → 使用对应的 valueType + ↓ +4b. 未找到 → 使用嵌套 dataIndex 数组 +``` + +**示例:** +- `orderVO` → 去掉 "VO" → `order` → 在列表中 ✅ → 使用 `valueType: 'order'` +- `dealerVO` → 去掉 "VO" → `dealer` → 在列表中 ✅ → 使用 `valueType: 'dealer'` +- `orderShipVO` → 去掉 "VO" → `orderShip` → 不在列表 ❌ → 使用 `dataIndex: ['orderShipVO', 'orderSn']` + +### valueType 类型 + +| 类型 | 说明 | dataIndex 格式 | key 格式 | 适用场景 | +|------|------|----------------|----------|----------| +| `text` | 文本 | `fieldName` | `fieldName` | 普通文本字段 | +| `money` | 金额 | `amount` | `amount` | 自动格式化货币 | +| `dateTime` | 日期时间 | `createdAt` | `createdAt` | 格式化时间戳 | +| `select` | 下拉选择 | `type` | `type` | 配合 valueEnum | +| `switch` | 开关 | `status` | `status` | 布尔值显示 | +| `order` | 采购单 | `orderVO` | `orderId` | orderVO 对象 | +| `dealer` | 经销商 | `dealerVO` | `dealerId` | dealerVO 对象 | +| `company` | 公司 | `companyVO` | `companyId` | companyVO 对象 | +| `paymentTask` | 付款任务 | `paymentTaskVO` | `paymentTaskId` | paymentTaskVO 对象 | +| `orderCost` | 订单费用 | `orderCostVO` | `orderCostId` | orderCostVO 对象 | +| `supplier` | 供应商 | `supplierVO` | `supplierId` | supplierVO 对象 | + +### 对象关联列配置(xxxVO 模式) + +项目中大量使用对象关联模式,当 VO 类型中包含嵌套的 `xxxVO` 对象时,优先使用内置 valueType。 + +#### 通用规则 + +**有内置 valueType 的情况:** +```tsx +// 1. 检查 BizValueType 是否包含对应类型 +// 2. 如果包含,使用 xxxVO + xxxId + xxx 模式 + +{ + dataIndex: 'orderVO', // 完整的 VO 字段名 + key: 'orderId', // 对应的主键字段 + valueType: 'order', // BizValueType 中定义的类型 +} +``` + +**无内置 valueType 的情况:** +```tsx +// 1. BizValueType 中没有对应类型 +// 2. 使用嵌套 dataIndex 数组直接访问子字段 + +{ + dataIndex: ['orderShipVO', 'orderSn'], // 嵌套路径 + key: 'orderShipId', + // 不需要 valueType,默认为文本 +} +``` + +**示例对照表:** + +| VO 字段 | 是否有 valueType | dataIndex | key | valueType | 说明 | +|---------|-----------------|-----------|-----|-----------|------| +| `orderVO?: OrderVO` | ✅ 是 | `orderVO` | `orderId` | `order` | 采购单信息 | +| `dealerVO?: DealerVO` | ✅ 是 | `dealerVO` | `dealerId` | `dealer` | 经销商信息 | +| `companyVO?: CompanyVO` | ✅ 是 | `companyVO` | `companyId` | `company` | 公司信息 | +| `supplierVO?: SupplierVO` | ✅ 是 | `supplierVO` | `supplierId` | `supplier` | 供应商信息 | +| `orderShipVO?: OrderShipVO` | ❌ 否 | `['orderShipVO', 'orderSn']` | `orderShipId` | - | 发货单信息 | +| `paymentTaskVO?: PaymentTaskVO` | ✅ 是 | `paymentTaskVO` | `paymentTaskId` | `paymentTask` | 付款任务信息 | +| `orderCostVO?: OrderCostVO` | ✅ 是 | `orderCostVO` | `orderCostId` | `orderCost` | 订单费用信息 | + +#### order 列(采购单关联) + +```tsx +{ + title: intl.formatMessage({ id: intlPrefix + '.column.order' }), + dataIndex: 'orderVO', + key: 'orderId', + valueType: 'order', +}, +``` + +**要点:** +- BizContainer 内部会自动处理订单链接和展示 +- 支持点击跳转到订单详情页 +- 自动显示订单编号或关键信息 + +**参考文件:** `components/Order/OrderSupplierList.tsx:54-59` + +#### dealer 列(经销商关联) + +```tsx +{ + title: intl.formatMessage({ id: intlPrefix + '.column.dealer' }), + dataIndex: 'dealerVO', + key: 'dealerId', + valueType: 'dealer', + hidden: !!dealerId, // 可选:如果已传入 dealerId,则隐藏此列 +}, +``` + +**要点:** +- 显示经销商名称链接 +- 支持点击跳转到经销商详情 +- 可根据业务需求使用 `hidden` 属性控制显示 + +**参考文件:** +- `components/Dealer/DealerPaymentAccountList.tsx:44-48` +- `components/Order/OrderShipList.tsx:41-45` + +#### company 列(公司关联) + +```tsx +{ + title: intl.formatMessage({ id: intlPrefix + '.column.company' }), + dataIndex: 'companyVO', + key: 'companyId', + valueType: 'company', +}, +``` + +**要点:** +- 显示公司名称链接 +- 支持点击跳转到公司详情 +- 常用于展示入账公司、销售公司等 + +**参考文件:** `components/Order/OrderShipList.tsx:47-51` + +#### 无内置 valueType 的关联列 + +对于 BizValueType 中没有定义的类型(如 `orderShipVO`),使用嵌套 dataIndex 数组: + +```tsx +{ + title: intl.formatMessage({ id: intlPrefix + '.column.orderShip' }), + dataIndex: ['orderShipVO', 'orderSn'], // 直接访问嵌套字段 + key: 'orderShipId', + // 不需要指定 valueType +}, +``` + +**优点:** +- ✅ 简洁:无需自定义 render 函数 +- ✅ 类型安全:利用 ProTable 的嵌套字段访问 +- ✅ 自动处理空值:ProTable 自动处理 undefined 情况 + +**更多嵌套示例:** +```tsx +// 访问嵌套对象的单个字段 +{ dataIndex: ['orderShipVO', 'orderSn'] } // 发货单编号 +{ dataIndex: ['dealerVO', 'shortName'] } // 经销商简称 +{ dataIndex: ['companyVO', 'fullName'] } // 公司全称 +{ dataIndex: ['orderVO', 'orderVehicle', 'plate'] } // 多层嵌套:订单的车辆车牌 +``` + +**参考文件:** `components/Dealer/DealerAccountRecordList.tsx:73-77` + +#### 条件隐藏关联列 + +当组件已通过 props 传入关联对象的 ID 时,可以隐藏该列避免冗余: + +```tsx +// 接收 props +interface IDealerAccountRecordListProps { + dealerId?: BusinessAPI.DealerAccountRecordVO['dealerId']; + orderId?: BusinessAPI.DealerAccountRecordVO['orderId']; +} + +// 列配置 +{ + dataIndex: 'dealerVO', + key: 'dealerId', + valueType: 'dealer', + hidden: !!dealerId, // 如果已传入 dealerId,则隐藏此列 +}, +``` + +**使用场景:** +- 列表作为详情页的子组件时 +- 已知特定经销商/订单的记录列表 +- 避免显示冗余的关联信息 + +#### select 列(枚举类型) + +对于有固定选项的枚举字段: + +```tsx +{ + title: intl.formatMessage({ id: intlPrefix + '.column.targetType' }), + dataIndex: 'targetType', + key: 'targetType', + valueType: 'select', + valueEnum: { + VALUE_1: { text: '选项1', status: 'Processing' }, + VALUE_2: { text: '选项2', status: 'Success' }, + }, +}, +``` + +#### money 列(金额格式化) + +金额字段会自动格式化,也可以自定义渲染: + +```tsx +{ + title: intl.formatMessage({ id: intlPrefix + '.column.amount' }), + dataIndex: 'amount', + key: 'amount', + valueType: 'money', + search: false, + render: (_, record) => ( + = 0 ? 'text-green-600' : 'text-red-600'}> + {formatCurrency(record.amount)} + + ), +}, +``` + +### 权限配置格式 + +``` +operation-<资源>-<操作> +例如: operation-dealer-account-record-view +``` + +### 国际化前缀命名规范 + +- 页面级别: 使用小写+连字符,如 `dealer-account-record` +- 组件级别: 使用驼峰式,如 `dealerAccountRecord` +- 保持与 API 服务名称一致 + +## 快速参考:关联列配置决策树 + +``` +需要显示关联对象(xxxVO)? + ↓ +检查 BizValueType 是否包含对应类型 + ↓ +┌─────────────┬─────────────────┐ +│ 包含 ✅ │ 不包含 ❌ │ +├─────────────┼─────────────────┤ +│ 使用 │ 使用嵌套 │ +│ valueType │ dataIndex 数组 │ +├─────────────┼─────────────────┤ +│ 示例: │ 示例: │ +│ dataIndex: │ dataIndex: │ +│ 'orderVO' │ ['orderShipVO',│ +│ valueType: │ 'orderSn'] │ +│ 'order' │ │ +└─────────────┴─────────────────┘ +``` + +## 常见关联列配置速查表 + +| 场景 | dataIndex | key | valueType | 备注 | +|------|-----------|-----|-----------|------| +| **有内置 valueType** | +| 采购单 | `orderVO` | `orderId` | `order` | 自动显示订单链接 | +| 经销商 | `dealerVO` | `dealerId` | `dealer` | 自动显示经销商链接 | +| 公司 | `companyVO` | `companyId` | `company` | 自动显示公司链接 | +| 供应商 | `supplierVO` | `supplierId` | `supplier` | 自动显示供应商链接 | +| 付款任务 | `paymentTaskVO` | `paymentTaskId` | `paymentTask` | 自动显示任务链接 | +| 订单费用 | `orderCostVO` | `orderCostId` | `orderCost` | 自动显示费用链接 | +| **无内置 valueType** | +| 发货单编号 | `['orderShipVO', 'orderSn']` | `orderShipId` | - | 直接访问嵌套字段 | +| 经销商简称 | `['dealerVO', 'shortName']` | `dealerId` | - | 直接访问嵌套字段 | +| 车牌号 | `['orderVO', 'orderVehicle', 'plate']` | - | - | 支持多层嵌套 | + +## 示例参考 + +查看以下文件作为参考: +- 业务组件: `components/Dealer/DealerAccountRecordList.tsx` +- 页面组件: `pages/ReceivablesDetail.tsx` +- 组件导出: `components/Dealer/index.ts` +- 国际化: `locales/zh-CN.ts` 中的 `dealerAccountRecord` 部分 + +### DealerAccountRecordList 组件示例 + +该组件展示了以下特性: +- ✅ **dealer 列**: 展示关联的经销商(第 60-66 行) + - 使用 `valueType: 'dealer'` + - 条件隐藏:当已传入 `dealerId` 时隐藏此列 +- ✅ **order 列**: 展示关联的采购单(第 67-72 行) + - 使用 `valueType: 'order'` +- ✅ **orderShip 列**: 使用嵌套 dataIndex 访问发货单字段(第 73-77 行) + - 使用 `dataIndex: ['orderShipVO', 'orderSn']` + - 无需自定义 render 函数 + - 无需 valueType(BizValueType 中未定义 orderShip) +- ✅ **枚举类型列**: 变动类型使用 Tag 和颜色区分(第 89-103 行) +- ✅ **金额格式化**: 使用 formatCurrency 格式化金额(第 110-144 行) +- ✅ **动态样式**: 根据正负值显示不同颜色和图标 +- ✅ **筛选条件**: 支持 dealerId 和 orderId 筛选(第 182-185 行) + +## 验证清单 + +- [ ] 业务组件已创建在正确的目录 +- [ ] 组件已正确导出 +- [ ] 页面组件已创建 +- [ ] 国际化翻译已添加 +- [ ] API 服务和类型定义已确认存在 +- [ ] 权限配置正确 +- [ ] 组件 props 支持所需的筛选条件 + +## 故障排除 + +### 问题: 组件找不到 +**解决**: 检查 `components/index.ts` 是否正确导出了业务组件目录 + +### 问题: 翻译未生效 +**解决**: 检查 `intlPrefix` 是否与国际化文件中的键一致 + +### 问题: API 类型错误 +**解决**: +1. 确认 API 服务文件存在于 `services/business/` +2. 检查类型定义是否存在于 `typings.d.ts` +3. 确保 `business.apiService` 导入正确 + +### 问题: 权限报错 +**解决**: 确认 `permission` 属性格式为 `operation--` + +### 问题: order 列不显示或报错 +**原因分析**: +1. TypeScript 类型定义中可能没有 `orderVO` 字段 +2. API 返回数据时实际包含 `orderVO` 字段(后端动态扩展) + +**解决方案**: +- 方案1: 如果类型定义中缺少 `orderVO`,可以在组件中扩展类型: + ```tsx + // 在组件顶部添加类型扩展 + declare module '@/services/business' { + namespace BusinessAPI { + interface DealerAccountRecordVO { + orderVO?: OrderVO; + } + } + } + ``` + +- 方案2: 使用类型断言(不推荐,但可用): + ```tsx + const columns: ProColumns[] = [ + // ... + ]; + ``` + +- 方案3: 联系后端更新 OpenAPI 规范,确保 `orderVO` 字段在类型定义中 + +### 问题: dealer 列不显示经销商名称 +**原因**: BizContainer 内部会自动处理,但需要确保 `dealerVO` 字段存在 + +**解决**: +1. 确认 API 返回数据包含 `dealerVO` 对象 +2. 检查 `dataIndex` 使用的是 `dealerVO` 而不是 `dealerId` +3. 检查 `valueType` 是否设置为 `dealer` + +### 问题: 自定义关联列(如 orderShip)显示为 [object Object] +**原因**: 直接渲染对象而没有提取具体字段 + +**解决**: +```tsx +// ❌ 错误写法 - 直接渲染整个对象 +{ + dataIndex: 'orderShipVO', + render: (_, record) => {record.orderShipVO}, +} + +// ❌ 错误写法 - 使用自定义 render 访问字段 +{ + dataIndex: 'orderShipVO', + render: (_, record) => + record.orderShipVO ? ( + {record.orderShipVO.orderSn} + ) : null, +} + +// ✅ 正确写法 - 使用嵌套 dataIndex 数组 +{ + dataIndex: ['orderShipVO', 'orderSn'], // 直接访问嵌套字段 + key: 'orderShipId', + // 不需要 render,ProTable 自动处理 +} +``` + +**优势对比:** +- ❌ render 方式:代码冗长,需要手动处理空值 +- ✅ 嵌套 dataIndex:简洁清晰,ProTable 自动处理所有情况 + +### 问题: 关联列在嵌套组件中重复显示 +**原因**: 当列表作为详情页的子组件时,父组件已通过 props 传入 ID + +**解决**: 使用 `hidden` 属性条件隐藏 +```tsx +{ + dataIndex: 'dealerVO', + key: 'dealerId', + valueType: 'dealer', + hidden: !!dealerId, // 如果已传入 dealerId,则隐藏此列 +}, +``` + +### 问题: order 列点击后不跳转 +**解决**: +1. 确认 `dataIndex` 使用的是 `orderVO` 而不是 `orderId` +2. 确认 `key` 使用的是 `orderId` +3. 检查 BizContainer 配置中 `detail` 是否正确启用 diff --git a/.claude/rules/services-generated.md b/.claude/rules/services-generated.md new file mode 100644 index 0000000..fc6c479 --- /dev/null +++ b/.claude/rules/services-generated.md @@ -0,0 +1,80 @@ +--- +paths: src/services/**/*.ts +--- +# 规则:不要直接修改 src/services 目录,使用 typings.d.ts 获取类型 + +## 规则说明 + +`packages/app-operation/src/services/` 目录下的文件由 OpenAPI 自动生成,不应手动修改。 + +## 目录结构 + +``` +src/services/ +├── index.ts # 导出入口(自动生成) +├── business/ # 业务 API +│ ├── index.ts # 模块导出(自动生成) +│ ├── order.ts # API 实现(自动生成) +│ └── typings.d.ts # 类型定义(从 typings.d.ts 读取) +├── auth/ +│ ├── index.ts +│ ├── user.ts +│ └── typings.d.ts +└── ... +``` + +## 禁止行为 + +- ❌ 直接修改 `src/services/**/*.ts` 文件 +- ❌ 在 `.ts` 文件中添加、删除或修改 API 函数 +- ❌ 手动编辑类型定义 + +## 正确做法 + +### 1. 获取类型信息 + +当需要查看或使用 API 类型时,**必须**使用 Glob/Grep 工具读取 `typings.d.ts` 文件: + +```bash +# 正确:读取类型定义文件 +Glob pattern: "packages/app-operation/src/services/**/typings.d.ts" +Grep pattern: "OrderVO" path: "packages/app-operation/src/services/business/typings.d.ts" + +# 错误:直接读取 .ts 实现文件 +Read file: "packages/app-operation/src/services/business/typings.d.ts" +``` + +### 2. 查找 API 函数 + +查找 API 函数时,通过模块名推断文件位置,使用 Grep 搜索: + +```bash +# 查找订单相关 API +Grep path: "packages/app-operation/src/services" pattern: "order" +``` + +### 3. 更新 API + +如需更新 API 类型定义,运行: + +```bash +cd packages/app-operation +pnpm openapi +``` + +## 类型命名规范 + +`typings.d.ts` 中的类型遵循以下命名模式: + +| 类型后缀 | 用途 | 示例 | +|---------|------|------| +| `VO` | 视图对象(响应) | `OrderVO` | +| `Qry` | 查询参数 | `OrderPageQry` | +| `Cmd` | 命令参数(创建/更新) | `OrderCreateCmd` | +| `PageQry` | 分页查询 | `OrderPageQry` | + +## 违反此规则的后果 + +- 手动修改会在 `pnpm openapi` 后被覆盖 +- 可能导致 API 类型与后端不一致 +- 破坏自动生成机制的完整性 diff --git a/.claude/rules/swagger-json.md b/.claude/rules/swagger-json.md new file mode 100644 index 0000000..44abe26 --- /dev/null +++ b/.claude/rules/swagger-json.md @@ -0,0 +1,31 @@ +--- +paths: swagger/*.json +--- +# 规则:不要加载或修改 swagger/*.json 文件 + +## 规则说明 + +`swagger/` 目录下的 JSON 文件是后端服务自动生成的 OpenAPI 规范文件,由后端团队维护。 + +## 禁止行为 + +- ❌ 直接读取 `swagger/*.json` 文件 +- ❌ 修改 `swagger/*.json` 文件 +- ❌ 在前端代码中依赖这些文件 +- ❌ 将 swagger JSON 文件纳入版本控制(如需跟踪,应由后端处理) + +## 正确做法 + +1. **更新 API 类型**:如需更新前端 API 类型定义,运行命令: + ```bash + cd packages/app-operation + pnpm openapi + ``` + +2. **使用生成的 services**:前端应使用 `src/services/` 目录下自动生成的 API 客户端代码,而非直接解析 swagger 文件 + +## 违反此规则的后果 + +- 可能导致前端与后端 API 不同步 +- 手动修改的 swagger 文件会在下次后端同步时被覆盖 +- 破坏前后端约定的 OpenAPI 规范 diff --git a/CLAUDE.md b/CLAUDE.md index 4bfa265..6f87980 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -272,27 +272,30 @@ pnpm test ## 开发注意事项 1. **不要直接修改 services/ 目录** - - 这些文件由 OpenAPI 自动生成 - - 修改 swagger/ 规范后重新生成 + - 这些文件由 OpenAPI 自动生成,修改后会被覆盖 + - 详细规则见 [.claude/rules/services-generated.md](./.claude/rules/services-generated.md) -2. **遵循组件命名约定** +2. **不要加载或修改 swagger/*.json 文件** + - 详细规则见 [.claude/rules/swagger-json.md](./.claude/rules/swagger-json.md) + +3. **遵循组件命名约定** - 页面组件:文件名 + `Page` 后缀,导出为 `Page` - 业务组件:语义化命名,如 `NewComponentList` -3. **国际化是必需的** +4. **国际化是必需的** - 所有用户可见文本必须使用 `useIntl()` 和 `intl.formatMessage()` - 定义 `intlPrefix` 前缀 -4. **权限控制** +5. **权限控制** - 页面使用 `PageContainer` 包装 - 操作按钮使用 `ButtonAccess` 包装 - 权限标识格式:`operation-{resource}-{action}` -5. **响应式设计** +6. **响应式设计** - 使用 `isMobile` 属性自动适配移动端 - 表单宽度和布局会自动调整 -6. **状态管理** +7. **状态管理** - 使用 UmiJS 内置状态管理(initialState、model) - 组件间通信使用 `actionRef` @@ -316,9 +319,14 @@ pnpm test ## 相关文档 +### 开发规则 +- services 自动生成规则:[.claude/rules/services-generated.md](./.claude/rules/services-generated.md) +- 不要查看或修改 swagger JSON:[.claude/rules/swagger-json.md](./.claude/rules/swagger-json.md) - 项目架构设计:`.lingma/rules/design.md` - Biz 组件设计规则:`.lingma/rules/biz.md` - 添加新页面指南:`.lingma/rules/add-new-page.md` + +### 官方文档 - UmiJS Max 文档:https://umijs.org/docs/max/introduce - Ant Design 文档:https://ant.design - PNPM 文档:https://pnpm.io diff --git a/packages/app-operation/src/components/Dealer/DealerAccountRecordList.tsx b/packages/app-operation/src/components/Dealer/DealerAccountRecordList.tsx new file mode 100644 index 0000000..a8066ad --- /dev/null +++ b/packages/app-operation/src/components/Dealer/DealerAccountRecordList.tsx @@ -0,0 +1,203 @@ +import { BizContainer, BizValueType, ModeType } from '@/components'; +import { business } from '@/services'; +import { formatCurrency } from '@/utils/format'; +import { useIntl } from '@@/exports'; +import { ArrowDownOutlined, ArrowUpOutlined } from '@ant-design/icons'; +import { ProColumns } from '@ant-design/pro-components'; +import { ProDescriptionsItemProps } from '@ant-design/pro-descriptions'; +import { Tag } from 'antd'; +import React from 'react'; + +interface IDealerAccountRecordListProps { + ghost?: boolean; + dealerVO?: BusinessAPI.DealerVO; + orderVO?: BusinessAPI.OrderVO; + dealerAccountRecordId: BusinessAPI.DealerAccountRecordVO['dealerAccountRecordId']; + search?: boolean; + onValueChange?: () => void; + mode?: ModeType; + trigger?: () => React.ReactNode; +} + +export default function DealerAccountRecordList( + props: IDealerAccountRecordListProps, +) { + const { + ghost = false, + dealerVO, + orderVO, + dealerAccountRecordId, + search = true, + mode = 'page', + trigger, + onValueChange, + } = props; + const intl = useIntl(); + const intlPrefix = 'dealerAccountRecord'; + + // 变动类型映射 + const targetTypeMap: Record = { + ORIGIN_PURCHASE_SHIP: { + label: intl.formatMessage({ + id: intlPrefix + '.targetType.originPurchaseShip', + }), + color: 'blue', + }, + MARKET_PURCHASE_SHIP: { + label: intl.formatMessage({ + id: intlPrefix + '.targetType.marketPurchaseShip', + }), + color: 'green', + }, + MARKET_TRANSFER_SHIP: { + label: intl.formatMessage({ + id: intlPrefix + '.targetType.marketTransferShip', + }), + color: 'orange', + }, + }; + + const columns: ProColumns[] = + [ + { + title: intl.formatMessage({ id: intlPrefix + '.column.dealer' }), + dataIndex: 'dealerVO', + key: 'dealerId', + valueType: 'dealer', + hidden: !!dealerVO, // 如果已传入 dealerId,则隐藏此列 + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.order' }), + dataIndex: 'orderVO', + key: 'orderId', + valueType: 'order', + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.orderShip' }), + dataIndex: ['orderShipVO', 'orderSn'], + key: 'targetId', + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.recordSn' }), + dataIndex: 'recordSn', + key: 'recordSn', + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.targetType' }), + dataIndex: 'targetType', + key: 'targetType', + valueType: 'select', + valueEnum: Object.entries(targetTypeMap).reduce( + (acc, [key, value]) => ({ + ...acc, + [key]: { text: value.label, status: value.color as any }, + }), + {}, + ), + render: (_, record) => { + const typeInfo = targetTypeMap[record.targetType]; + return typeInfo ? ( + {typeInfo.label} + ) : ( + {record.targetType} + ); + }, + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.beforeAmount' }), + dataIndex: 'beforeAmount', + key: 'beforeAmount', + valueType: 'money', + search: false, + render: (_, record) => ( + + ¥{formatCurrency(record.beforeAmount)} + + ), + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.amount' }), + dataIndex: 'amount', + key: 'amount', + valueType: 'money', + search: false, + render: (_, record) => ( + = 0 ? 'text-green-600' : 'text-red-600'} + > + {record.amount >= 0 ? : } + + ¥{formatCurrency(Math.abs(record.amount))} + + + ), + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.afterAmount' }), + dataIndex: 'afterAmount', + key: 'afterAmount', + valueType: 'money', + search: false, + render: (_, record) => ( + + ¥{formatCurrency(record.afterAmount)} + + ), + }, + ]; + + const detailColumns: ProDescriptionsItemProps< + BusinessAPI.DealerAccountRecordVO, + BizValueType + >[] = columns as ProDescriptionsItemProps< + BusinessAPI.DealerAccountRecordVO, + BizValueType + >[]; + + return ( + + rowKey={'dealerAccountRecordId'} + permission={'operation-dealer-account-record'} + func={business.dealerAccountRecord} + method={'dealerAccountRecord'} + methodUpper={'DealerAccountRecord'} + intlPrefix={intlPrefix} + modeType={mode} + onValueChange={onValueChange} + container={{ + ghost, + }} + remark={{ + mode: 'editor', + }} + status={false} + page={{ + fieldProps: { + bordered: true, + ghost, + //@ts-ignore + search, + params: { + ...(dealerVO && { dealerId: dealerVO.dealerId }), + ...(orderVO && { orderId: orderVO.orderId }), + }, + }, + columns, + options: () => [], + }} + create={false} + update={false} + destroy={false} + detail={{ + rowId: dealerAccountRecordId, + formType: 'drawer', + columns: detailColumns, + trigger, + }} + /> + ); +} diff --git a/packages/app-operation/src/components/Dealer/DealerList.tsx b/packages/app-operation/src/components/Dealer/DealerList.tsx index a5d774d..9301b3c 100644 --- a/packages/app-operation/src/components/Dealer/DealerList.tsx +++ b/packages/app-operation/src/components/Dealer/DealerList.tsx @@ -1,6 +1,7 @@ import { BizContainer, BizValueType, + DealerAccountRecordList, DealerPaymentAccountList, DealerPurchaseSetting, DealerRebateCustomerList, @@ -367,6 +368,18 @@ export default function DealerList(props: IDealerListProps) { onValueChange: () => void, ) => { return [ + { + label: `应收账款`, + key: 'dealerAccountRecord', + children: ( + + ), + }, { label: `结算账户`, key: 'dealerPaymentAccountList', diff --git a/packages/app-operation/src/components/Dealer/index.ts b/packages/app-operation/src/components/Dealer/index.ts index 6b48b26..1084b2a 100644 --- a/packages/app-operation/src/components/Dealer/index.ts +++ b/packages/app-operation/src/components/Dealer/index.ts @@ -1,12 +1,13 @@ +export { default as DealerAccountRecordList } from './DealerAccountRecordList'; export { default as DealerFormItem } from './DealerFormItem'; export { default as DealerList } from './DealerList'; export { default as DealerModal } from './DealerModal'; export type { IDealerModalProps } from './DealerModal'; export { default as DealerPaymentAccountList } from './DealerPaymentAccountList'; +export { default as DealerPurchaseSetting } from './DealerPurchaseSetting'; export { default as DealerRebateCustomerList } from './DealerRebateCustomerList'; export { default as DealerSearch } from './DealerSearch'; export { default as DealerSelect } from './DealerSelect'; +export { default as DealerStallList } from './DealerStallList'; export { default as DealerWarehouseList } from './DealerWarehouseList'; export { default as DeliveryTemplate } from './DeliveryTemplate'; -export { default as DealerPurchaseSetting } from './DealerPurchaseSetting'; -export { default as DealerStallList } from './DealerStallList'; diff --git a/packages/app-operation/src/components/Order/OrderShipList.tsx b/packages/app-operation/src/components/Order/OrderShipList.tsx index 340536c..7515873 100644 --- a/packages/app-operation/src/components/Order/OrderShipList.tsx +++ b/packages/app-operation/src/components/Order/OrderShipList.tsx @@ -1,6 +1,8 @@ import { BizContainer, BizValueType, ModeType } from '@/components'; import { business } from '@/services'; +import { formatCurrency } from '@/utils/format'; import { useIntl } from '@@/exports'; +import { ArrowDownOutlined, ArrowUpOutlined } from '@ant-design/icons'; import { ProColumns } from '@ant-design/pro-components'; import { ProDescriptionsItemProps } from '@ant-design/pro-descriptions'; import React, { useState } from 'react'; @@ -86,6 +88,43 @@ export default function OrderShipList(props: IOrderShipListProps) { key: 'watermelonGrade', search: false, }, + { + title: intl.formatMessage({ + id: intlPrefix + '.column.receivableAmount', + }), + dataIndex: 'receivableAmount', + key: 'receivableAmount', + search: false, + valueType: 'money', + render: (_, record) => ( + + ¥{formatCurrency(record.receivableAmount)} + + ), + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.adjustedAmount' }), + dataIndex: 'adjustedAmount', + key: 'adjustedAmount', + search: false, + valueType: 'money', + render: (_, record) => ( + = 0 ? 'text-green-600' : 'text-red-600' + } + > + {record.adjustedAmount >= 0 ? ( + + ) : ( + + )} + + ¥{formatCurrency(Math.abs(record.adjustedAmount))} + + + ), + }, { title: intl.formatMessage({ id: intlPrefix + '.column.type' }), dataIndex: 'type', diff --git a/packages/app-operation/src/components/Order/OrderShipModal.tsx b/packages/app-operation/src/components/Order/OrderShipModal.tsx index 0e09df8..0e597aa 100644 --- a/packages/app-operation/src/components/Order/OrderShipModal.tsx +++ b/packages/app-operation/src/components/Order/OrderShipModal.tsx @@ -1,5 +1,6 @@ import { SelectModal } from '@/components'; import { business } from '@/services'; +import { formatCurrency } from '@/utils/format'; import { formatParam } from '@/utils/formatParam'; import { pagination } from '@/utils/pagination'; import { useIntl } from '@@/exports'; @@ -7,6 +8,7 @@ import { ActionType, LightFilter, ProColumns, + ProFormDateRangePicker, ProFormSelect, } from '@ant-design/pro-components'; import { Alert, ModalProps, Space, Tag } from 'antd'; @@ -99,6 +101,8 @@ export default function OrderShipModal(props: IOrderShipModalProps) { dataIndex: 'shippingDate', key: 'shippingDate', valueType: 'date', + sorter: true, + defaultSortOrder: 'ascend', }, { title: intl.formatMessage({ @@ -114,6 +118,38 @@ export default function OrderShipModal(props: IOrderShipModalProps) { key: 'watermelonGrade', search: false, }, + { + title: intl.formatMessage({ + id: intlPrefix + '.column.receivableAmount', + }), + dataIndex: 'receivableAmount', + key: 'receivableAmount', + search: false, + valueType: 'money', + render: (_, record) => ( + + ¥{formatCurrency(record.receivableAmount)} + + ), + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.adjustedAmount' }), + dataIndex: 'adjustedAmount', + key: 'adjustedAmount', + search: false, + valueType: 'money', + render: (_, record) => ( + = 0 ? 'text-green-600' : 'text-red-600' + } + > + + ¥{formatCurrency(Math.abs(record.adjustedAmount))} + + + ), + }, { title: intl.formatMessage({ id: intlPrefix + '.column.type' }), dataIndex: 'type', @@ -329,6 +365,16 @@ export default function OrderShipModal(props: IOrderShipModalProps) { }} > {extraFilter} + {/* 发货时间筛选 */} + ; +type IOrderShipSelectListProps = ProTableProps< + BusinessAPI.OrderShipVO, + BusinessAPI.OrderShipPageQry, + BizValueType +>; export default function OrderShipSelectList(props: IOrderShipSelectListProps) { const intl = useIntl(); @@ -11,69 +21,24 @@ export default function OrderShipSelectList(props: IOrderShipSelectListProps) { const { ...tableProps } = props; // 订单列表列定义 - const orderColumns = [ + const orderColumns: ProColumns[] = [ { title: intl.formatMessage({ id: intlPrefix + '.column.order' }), + dataIndex: 'orderVO', key: 'orderId', - render: (orderShipVO: BusinessAPI.OrderShipVO) => { - const orderVO = orderShipVO.orderVO; - return ( - orderVO && ( - ( - - - {`${orderVO.orderVehicle?.dealerName} | 第 ${orderVO.orderVehicle?.vehicleNo || '暂无'} 车 | ${orderVO.orderSn || '暂无'}`} - - - )} - /> - ) - ); - }, + valueType: 'order', }, { title: intl.formatMessage({ id: intlPrefix + '.column.dealer' }), + dataIndex: 'dealerVO', key: 'dealerId', - render: (orderShipVO: BusinessAPI.OrderShipVO) => { - return ( - orderShipVO && ( - ( - - {orderShipVO.dealerName} - - )} - /> - ) - ); - }, + valueType: 'dealer', }, { title: intl.formatMessage({ id: intlPrefix + '.column.company' }), + dataIndex: 'companyVO', key: 'companyId', - render: (orderShipVO: BusinessAPI.OrderShipVO) => { - return ( - orderShipVO && ( - ( - - {orderShipVO.companyName} - - )} - /> - ) - ); - }, + valueType: 'company', }, { title: intl.formatMessage({ id: intlPrefix + '.column.orderSn' }), @@ -112,35 +77,111 @@ export default function OrderShipSelectList(props: IOrderShipSelectListProps) { key: 'watermelonGrade', search: false, }, + { + title: intl.formatMessage({ + id: intlPrefix + '.column.receivableAmount', + }), + dataIndex: 'receivableAmount', + key: 'receivableAmount', + search: false, + valueType: 'money', + render: (_, record) => ( + + ¥{formatCurrency(record.receivableAmount)} + + ), + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.adjustedAmount' }), + dataIndex: 'adjustedAmount', + key: 'adjustedAmount', + search: false, + valueType: 'money', + render: (_, record) => ( + = 0 ? 'text-green-600' : 'text-red-600' + } + > + {record.adjustedAmount >= 0 ? ( + + ) : ( + + )} + + ¥{formatCurrency(Math.abs(record.adjustedAmount))} + + + ), + }, { title: intl.formatMessage({ id: intlPrefix + '.column.type' }), + dataIndex: 'type', key: 'type', - render: (orderShipVO: BusinessAPI.OrderShipVO) => { - return intl.formatMessage({ - id: `${intlPrefix}.type.${camelCase(orderShipVO.type) || 'unknown'}`, - }); + valueType: 'select', + valueEnum: { + PURCHASE_SHIP: intl.formatMessage({ + id: intlPrefix + '.column.type.enum.purchaseShip', + }), + TRANSFER_SHIP: intl.formatMessage({ + id: intlPrefix + '.column.type.enum.transferShip', + }), + CHANGE_SHIP: intl.formatMessage({ + id: intlPrefix + '.column.type.enum.changeShip', + }), + RETURN_SHIP: intl.formatMessage({ + id: intlPrefix + '.column.type.enum.returnShip', + }), }, }, { title: intl.formatMessage({ id: intlPrefix + '.column.state' }), + dataIndex: 'state', key: 'state', + valueType: 'select', search: false, - render: (orderShipVO: BusinessAPI.OrderShipVO) => { - return intl.formatMessage({ - id: `${intlPrefix}.state.${camelCase(orderShipVO.state) || 'unknown'}`, - }); + valueEnum: { + DRAFT: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.draft', + }), + WAIT_SHIPMENT: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.waitShipment', + }), + WAIT_PAYMENT: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.waitPayment', + }), + PARTIAL_PAYMENT: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.partialPayment', + }), + FULL_PAYMENT: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.fullPayment', + }), + REJECT_FINISH: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.rejectFinish', + }), + FINISH: intl.formatMessage({ + id: intlPrefix + '.column.state.enum.finish', + }), }, }, ...(tableProps.columns || []), ]; return ( - + + + ); } diff --git a/packages/app-operation/src/components/Order/OrderSupplierSelectList.tsx b/packages/app-operation/src/components/Order/OrderSupplierSelectList.tsx new file mode 100644 index 0000000..b04ce54 --- /dev/null +++ b/packages/app-operation/src/components/Order/OrderSupplierSelectList.tsx @@ -0,0 +1,135 @@ +import { BizValueType, CompanyList } from '@/components'; +import BizProvider from '@/components/Biz/BizProvider'; +import { business } from '@/services'; +import { useIntl } from '@@/exports'; +import { + ProColumns, + ProTable, + ProTableProps, +} from '@ant-design/pro-components'; + +type IOrderSupplierSelectListProps = ProTableProps< + BusinessAPI.OrderSupplierVO, + BusinessAPI.OrderSupplierPageQry, + BizValueType +>; + +export default function OrderSupplierSelectList( + props: IOrderSupplierSelectListProps, +) { + const intl = useIntl(); + const intlPrefix = 'orderSupplier'; + const { ...tableProps } = props; + // 订单列表列定义 + const orderColumns: ProColumns[] = + [ + { + title: intl.formatMessage({ id: intlPrefix + '.column.order' }), + dataIndex: 'orderVO', + key: 'orderId', + valueType: 'order', + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.name' }), + dataIndex: 'name', + key: 'name', + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.invoiceAmount' }), + dataIndex: 'invoiceAmount', + key: 'invoiceAmount', + valueType: 'money', + search: false, + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.depositAmount' }), + dataIndex: 'depositAmount', + key: 'depositAmount', + valueType: 'money', + search: false, + }, + // 剩余付款金额 + { + title: intl.formatMessage({ + id: intlPrefix + '.column.remainingAmount', + }), + dataIndex: 'remainingAmount', + key: 'remainingAmount', + valueType: 'money', + search: false, + renderText: (_, record) => { + return record.invoiceAmount - record.depositAmount || 0; + }, + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.orderCompany' }), + dataIndex: 'orderCompany', + valueType: 'select', + request: async (params) => { + const { data } = await business.company.listCompany({ + companyListQry: { + ...params, + }, + }); + + return ( + data?.map((item) => { + return { + label: item.fullName, + value: item.companyId, + }; + }) || [] + ); + }, + render: (_, record) => { + return ( + {record.orderCompany.fullName}} + /> + ); + }, + }, + { + title: intl.formatMessage({ id: intlPrefix + '.column.isPaid' }), + dataIndex: 'isPaid', + key: 'isPaid', + valueType: 'select', + valueEnum: { + true: { + text: intl.formatMessage({ + id: intlPrefix + '.column.isPaid.paid', + }), + status: 'success', + }, + false: { + text: intl.formatMessage({ + id: intlPrefix + '.column.isPaid.unpaid', + }), + status: 'processing', + }, + }, + }, + ...(tableProps.columns || []), + ]; + + return ( + + + + ); +} diff --git a/packages/app-operation/src/components/Order/index.ts b/packages/app-operation/src/components/Order/index.ts index 0fc4098..6bce103 100644 --- a/packages/app-operation/src/components/Order/index.ts +++ b/packages/app-operation/src/components/Order/index.ts @@ -11,7 +11,8 @@ export { default as OrderSelect } from './OrderSelect'; export { default as OrderShipList } from './OrderShipList'; export { default as OrderShipModal } from './OrderShipModal'; export type { IOrderShipModalProps } from './OrderShipModal'; +export { default as OrderShipSelectList } from './OrderShipSelectList'; export { default as OrderStallList } from './OrderStallList'; export { default as OrderSupplierList } from './OrderSupplierList'; export { default as OrderSupplierModal } from './OrderSupplierModal'; -export { default as OrderShipSelectList } from './OrderShipSelectList'; +export { default as OrderSupplierSelectList } from './OrderSupplierSelectList'; diff --git a/packages/app-operation/src/components/PaymentTask/OrderSupplierInvoiceList.tsx b/packages/app-operation/src/components/PaymentTask/OrderSupplierInvoiceList.tsx deleted file mode 100644 index 106159b..0000000 --- a/packages/app-operation/src/components/PaymentTask/OrderSupplierInvoiceList.tsx +++ /dev/null @@ -1,84 +0,0 @@ -import { OrderList, SupplierFarmerList } from '@/components'; -import { Space, Table, TableProps } from 'antd'; - -type IOrderSupplierInvoiceListProps = TableProps; - -export default function OrderSupplierInvoiceList( - props: IOrderSupplierInvoiceListProps, -) { - const { ...tableProps } = props; - // 订单列表列定义 - const orderColumns = [ - { - title: '采购单', - dataIndex: 'orderVO', - key: 'orderId', - render: (orderVO: BusinessAPI.OrderVO) => { - return ( - orderVO && ( - ( - - - {`${orderVO.orderVehicle?.dealerName} | 第 ${orderVO.orderVehicle?.vehicleNo || '暂无'} 车 | ${orderVO.orderSn || '暂无'}`} - - - )} - /> - ) - ); - }, - }, - { - title: '瓜农名称', - key: 'name', - render: (orderSupplierVO: BusinessAPI.OrderSupplierVO) => { - return ( - orderSupplierVO && ( - {orderSupplierVO.name}} - /> - ) - ); - }, - }, - { - title: '货款金额(元)', - dataIndex: 'invoiceAmount', - key: 'invoiceAmount', - valueType: 'money', - }, - { - title: '定金金额(元)', - dataIndex: 'depositAmount', - key: 'depositAmount', - valueType: 'money', - }, - { - title: '应付金额(元)', - key: 'remainingAmount', - valueType: 'money', - search: false, - render: (record: BusinessAPI.OrderSupplierVO) => { - return record.invoiceAmount - record.depositAmount || 0; - }, - }, - ...(tableProps.columns || []), - ]; - - return ( -
- ); -} diff --git a/packages/app-operation/src/components/PaymentTask/PaymentTaskCreate.tsx b/packages/app-operation/src/components/PaymentTask/PaymentTaskCreate.tsx index e39a8eb..c57d883 100644 --- a/packages/app-operation/src/components/PaymentTask/PaymentTaskCreate.tsx +++ b/packages/app-operation/src/components/PaymentTask/PaymentTaskCreate.tsx @@ -2,7 +2,7 @@ import { BizEditor, ButtonAccess, InsertPosition, - OrderSupplierInvoiceList, + OrderSupplierSelectList, SupplierFarmerList, SupplierInvoiceList, SupplierSelect, @@ -241,7 +241,7 @@ export default function PaymentTaskCreate(props: IPaymentTaskCreateProps) { style={{ marginBottom: 16 }} > {selectedOrderSupplierList.length > 0 ? ( - ( - - - {intl.formatMessage({ + name={'roundOffEnabled'} + /> + + {({ roundOffEnabled }) => + roundOffEnabled && ( + <> + - - - - - - - - - {intl.formatMessage({ + - onRoundOffRemarkChange?.(e.target.value)} + fieldProps={{ + autoSize: { minRows: 3, maxRows: 6 }, + showCount: true, + maxLength: 200, + }} /> - - - - - )} + + ) + } + + - {/* 调整总额 */} - - - {intl.formatMessage({ - id: `${intlPrefix}.summary.adjustmentTotal`, - })} - - - {formatCurrency(adjustmentTotal)} - - + {/*/!* 调整总额 *!/*/} + {/**/} + {/* */} + {/* {intl.formatMessage({*/} + {/* id: `${intlPrefix}.summary.adjustmentTotal`,*/} + {/* })}*/} + {/* */} + {/* */} + {/* {formatCurrency(adjustmentTotal)}*/} + {/* */} + {/**/} {/* 实际应收总额 */} void; } +/** 抹零数据 */ +export interface RoundOff { + /** 是否抹零 */ + roundOffEnabled?: boolean; + /** 抹零金额 */ + roundOffAmount?: number; + /** 抹零备注 */ + roundOffRemark?: string; +} + /** 对账汇总Props */ export interface ReconciliationSummaryProps { /** 发货单列表 */ shipOrders: BusinessAPI.OrderShipVO[]; /** 调整项数据 Map<发货单ID, 调整项数组> */ adjustmentsMap: Record; - /** 是否抹零 */ - roundOffEnabled?: boolean; - /** 抹零值变化回调 */ - onRoundOffChange?: (enabled: boolean) => void; - /** 抹零金额 */ - roundOffAmount?: number; - /** 抹零金额变化回调 */ - onRoundOffAmountChange?: (amount: number | null) => void; - /** 抹零备注 */ - roundOffRemark?: string; - /** 抹零备注变化回调 */ - onRoundOffRemarkChange?: (remark: string) => void; + /** 抹零数据 */ + roundOff?: RoundOff; + /** 抹零注变化回调 */ + onFinish?: (roundOff: RoundOff) => void; } diff --git a/packages/app-operation/src/locales/zh-CN.ts b/packages/app-operation/src/locales/zh-CN.ts index 4ee25a3..70848fa 100644 --- a/packages/app-operation/src/locales/zh-CN.ts +++ b/packages/app-operation/src/locales/zh-CN.ts @@ -1209,6 +1209,32 @@ export default { }, }, }, + dealerAccountRecord: { + column: { + dealer: '经销商', + order: '采购单', + orderShip: '发货单', + recordSn: '流水编号', + targetType: '变动类型', + beforeAmount: '变动前金额', + amount: '变动金额', + afterAmount: '变动后金额', + remark: '备注', + createdAt: '创建时间', + option: '操作', + }, + targetType: { + originPurchaseShip: '产地采购发货单', + marketPurchaseShip: '市场采购发货单', + marketTransferShip: '市场调货发货单', + }, + modal: { + view: { + title: '查看账款明细', + button: '详情', + }, + }, + }, boxSpec: { column: { name: '规格名称', @@ -2117,6 +2143,8 @@ export default { shippingDate: '发货日期', estimatedArrivalDate: '预计到仓时间', watermelonGrade: '西瓜品级', + receivableAmount: '应收金额(元)', + adjustedAmount: '调整金额(元)', company: '入账公司', type: '发货单类型', 'type.enum.purchaseShip': '采购发货单', diff --git a/packages/app-operation/src/pages/ReceivablesDetail.tsx b/packages/app-operation/src/pages/ReceivablesDetail.tsx new file mode 100644 index 0000000..deb78ec --- /dev/null +++ b/packages/app-operation/src/pages/ReceivablesDetail.tsx @@ -0,0 +1,5 @@ +import { DealerAccountRecordList } from '@/components'; + +export default function Page() { + return ; +} diff --git a/packages/app-operation/src/pages/ReconciliationCreate.tsx b/packages/app-operation/src/pages/ReconciliationCreate.tsx index bb2b432..71a815e 100644 --- a/packages/app-operation/src/pages/ReconciliationCreate.tsx +++ b/packages/app-operation/src/pages/ReconciliationCreate.tsx @@ -2,15 +2,15 @@ import { OrderShipSelectList, PageContainer, ReconciliationAdjustment, - ReconciliationShipCard, ReconciliationSummary, + ReconciliationSummaryProps, } from '@/components'; import DealerModal from '@/components/Dealer/DealerModal'; import OrderShipModal from '@/components/Order/OrderShipModal'; import { formatCurrency } from '@/utils/format'; import { ProCard, ProFormTextArea } from '@ant-design/pro-components'; import { Button, Col, Row, Space, Steps, Table, Tag } from 'antd'; -import { useCallback, useState } from 'react'; +import { useState } from 'react'; export default function Page() { const [current, setCurrent] = useState(0); @@ -35,45 +35,47 @@ export default function Page() { ); const [roundOffRemark, setRoundOffRemark] = useState(''); - // 添加调整项 - const handleAddAdjustment = useCallback((shipOrderId: string) => { - const newAdjustment: ReconciliationAdjustment = { - id: `${Date.now()}-${Math.random().toString(36).substring(2, 11)}`, - type: 'LOSS', - quantity: 0, - unitPrice: 0, - amount: 0, - remark: '', - }; - setAdjustmentsMap((prev) => ({ - ...prev, - [shipOrderId]: [...(prev[shipOrderId] || []), newAdjustment], - })); - }, []); - - // 删除调整项 - const handleRemoveAdjustment = useCallback( - (shipOrderId: string, adjustmentId: string) => { - setAdjustmentsMap((prev) => ({ - ...prev, - [shipOrderId]: (prev[shipOrderId] || []).filter( - (adj) => adj.id !== adjustmentId, - ), - })); - }, - [], - ); + // // 添加调整项 + // const handleAddAdjustment = useCallback((shipOrderId: string) => { + // const newAdjustment: ReconciliationAdjustment = { + // id: `${Date.now()}-${Math.random().toString(36).substring(2, 11)}`, + // type: 'LOSS', + // quantity: 0, + // unitPrice: 0, + // amount: 0, + // remark: '', + // }; + // setAdjustmentsMap((prev) => ({ + // ...prev, + // [shipOrderId]: [...(prev[shipOrderId] || []), newAdjustment], + // })); + // }, []); + // + // // 删除调整项 + // const handleRemoveAdjustment = useCallback( + // (shipOrderId: string, adjustmentId: string) => { + // setAdjustmentsMap((prev) => ({ + // ...prev, + // [shipOrderId]: (prev[shipOrderId] || []).filter( + // (adj) => adj.id !== adjustmentId, + // ), + // })); + // }, + // [], + // ); + let receivableAmount = + selectedShipOrderList?.reduce( + (sum, item) => sum + (item.receivableAmount || 0), + 0, + ) || 0; + let adjustedAmount = + selectedShipOrderList?.reduce( + (sum, item) => sum + (item.adjustedAmount || 0), + 0, + ) || 0; // 计算总金额 - const totalAmount = selectedShipOrderList.reduce((sum, order) => { - // 使用发货单明细的总金额 - const orderTotal = - order.orderShipItemList?.reduce( - (total, item) => total + (item.totalAmount || 0), - 0, - ) || 0; - return sum + orderTotal; - }, 0); + const orderCount = selectedShipOrderList.length; return ( @@ -144,16 +146,6 @@ export default function Page() { - -
-
- 经销商全称 -
-
- {selectedDealer.fullName || '-'} -
-
-
@@ -166,6 +158,16 @@ export default function Page() {
+ +
+
+ 应收金额 +
+
+ ¥{selectedDealer.receivable || '-'} +
+
+ ) : (
(
- {formatCurrency(totalAmount)} + ¥{formatCurrency(receivableAmount - adjustedAmount)}
@@ -356,31 +372,35 @@ export default function Page() { {current === 2 && ( <> {/* 对账车次清单 */} - - {selectedShipOrderList.map((shipOrder) => ( - - ))} - + {/**/} + {/* {selectedShipOrderList.map((shipOrder) => (*/} + {/* */} + {/* ))}*/} + {/**/} {/* 对账汇总 */} - setRoundOffAmount(value ?? undefined) - } - roundOffRemark={roundOffRemark} - onRoundOffRemarkChange={setRoundOffRemark} + roundOff={{ + roundOffEnabled: roundOffEnabled, + roundOffAmount: roundOffAmount, + roundOffRemark: roundOffRemark, + }} + onFinish={( + roundOff: ReconciliationSummaryProps['roundOff'], + ) => { + setRoundOffEnabled(roundOff?.roundOffEnabled || false); + setRoundOffAmount(roundOff?.roundOffAmount); + setRoundOffRemark(roundOff?.roundOffRemark || ''); + }} /> diff --git a/packages/app-operation/src/services/auth/typings.d.ts b/packages/app-operation/src/services/auth/typings.d.ts index d73fdb3..b3445c1 100644 --- a/packages/app-operation/src/services/auth/typings.d.ts +++ b/packages/app-operation/src/services/auth/typings.d.ts @@ -100,7 +100,7 @@ declare namespace AuthAPI { /** 用户ID */ userId: string; /** 角色ID */ - roleIdList: number[]; + roleIdList: string[]; /** 角色信息 */ userRoleList?: UserRoleVO[]; }; @@ -195,7 +195,7 @@ declare namespace AuthAPI { type RoleMenuTreeQry = { /** 角色权限 */ - roleId?: number[]; + roleId?: string[]; /** 平台ID */ platformId: string; }; @@ -329,7 +329,7 @@ declare namespace AuthAPI { /** 备注 */ remark?: string; /** 客户标签 */ - labelId?: number[]; + labelId?: string[]; /** 用户ID */ userId: string; }; diff --git a/packages/app-operation/src/services/business/typings.d.ts b/packages/app-operation/src/services/business/typings.d.ts index 91b2d6d..ca6017d 100644 --- a/packages/app-operation/src/services/business/typings.d.ts +++ b/packages/app-operation/src/services/business/typings.d.ts @@ -208,7 +208,7 @@ declare namespace BusinessAPI { /** 品牌图片URL */ image?: string; /** 纸箱规格ID */ - specIds?: number[]; + specIds?: string[]; /** 备注 */ remark?: string; /** 状态:1_启用;0_禁用 */ @@ -279,7 +279,7 @@ declare namespace BusinessAPI { /** 品牌图片URL */ image?: string; /** 纸箱规格ID */ - specIds?: number[]; + specIds?: string[]; /** 备注 */ remark?: string; /** 状态:1_启用;0_禁用 */ @@ -296,7 +296,7 @@ declare namespace BusinessAPI { /** 品牌图片URL */ image?: string; /** 纸箱规格ID */ - specIds?: number[]; + specIds?: string[]; /** 备注 */ remark?: string; /** 状态:1_启用;0_禁用 */ @@ -1021,7 +1021,7 @@ declare namespace BusinessAPI { /** 状态:1_启用;0_禁用 */ status: boolean; /** 成本项ID */ - costItemIds?: number[]; + costItemIds?: string[]; }; type CostDestroyCmd = { @@ -1249,7 +1249,7 @@ declare namespace BusinessAPI { /** 状态:1_启用;0_禁用 */ status: boolean; /** 成本项ID */ - costItemIds?: number[]; + costItemIds?: string[]; }; type CostVO = { @@ -1280,7 +1280,7 @@ declare namespace BusinessAPI { /** 状态:1_启用;0_禁用 */ status: boolean; /** 项目id集合 */ - costItemIds?: number[]; + costItemIds?: string[]; /** 创建时间 */ createdAt?: string; /** 项目列表 */ @@ -1364,6 +1364,19 @@ declare namespace BusinessAPI { status?: boolean; /** 经销商账款明细ID */ dealerAccountRecordId?: string; + /** 流水编号 */ + recordSn?: string; + /** 经销商ID */ + dealerId?: string; + /** 订单ID */ + orderId?: string; + /** 变动对象ID */ + targetId?: string; + /** 变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单; */ + targetType?: + | 'ORIGIN_PURCHASE_SHIP' + | 'MARKET_PURCHASE_SHIP' + | 'MARKET_TRANSFER_SHIP'; offset?: number; }; @@ -1426,6 +1439,12 @@ declare namespace BusinessAPI { remark?: string; /** 创建时间 */ createdAt?: string; + /** 经销商信息 */ + dealerVO?: DealerVO; + /** 订单信息 */ + orderVO?: OrderVO; + /** 发货单信息 */ + orderShipVO?: OrderShipVO; }; type DealerCreateCmd = { @@ -2080,7 +2099,7 @@ declare namespace BusinessAPI { /** 登录密码 */ password: string; /** 角色ID */ - roleId: number[]; + roleId: string[]; }; type EmployeeDestroyCmd = { @@ -2173,7 +2192,7 @@ declare namespace BusinessAPI { /** 用户ID */ userId: string; /** 角色ID */ - roleIdList: number[]; + roleIdList: string[]; /** 角色信息 */ userRoleList?: UserRoleVO[]; }; @@ -2610,7 +2629,7 @@ declare namespace BusinessAPI { /** 平台id */ platformId: string; /** 角色Id */ - roleId?: number[]; + roleId?: string[]; /** 是否隐藏 */ hideInMenu?: boolean; /** 权限Id */ @@ -2683,7 +2702,7 @@ declare namespace BusinessAPI { /** 平台id */ platformId: string; /** 角色Id */ - roleId?: number[]; + roleId?: string[]; /** 是否隐藏 */ hideInMenu?: boolean; /** 权限Id */ @@ -3110,7 +3129,7 @@ declare namespace BusinessAPI { | 'LOGISTICS_TYPE' | 'EXPENSE_TYPE'; /** 关联项目id */ - costItemIds?: number[]; + costItemIds?: string[]; /** 是否选中 */ selected: boolean; /** 是否已付款 */ @@ -3147,7 +3166,7 @@ declare namespace BusinessAPI { | 'LOGISTICS_TYPE' | 'EXPENSE_TYPE'; /** 关联项目id */ - costItemIds?: number[]; + costItemIds?: string[]; /** 是否付款 */ isPaid?: boolean; }; @@ -3280,7 +3299,7 @@ declare namespace BusinessAPI { | 'LOGISTICS_TYPE' | 'EXPENSE_TYPE'; /** 关联项目id */ - costItemIds?: number[]; + costItemIds?: string[]; /** 创建时间 */ createdAt: string; /** 采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭; */ @@ -3878,9 +3897,9 @@ declare namespace BusinessAPI { /** 备注 */ remark?: string; /** 应收金额(元) */ - receivableAmount?: number; + receivableAmount: number; /** 调整总额(元) */ - adjustedAmount?: number; + adjustedAmount: number; /** 创建人ID */ createdBy: string; /** 创建人姓名 */ @@ -4018,7 +4037,7 @@ declare namespace BusinessAPI { /** 产品名称 */ productName?: string; /** 关联费用id */ - costIds?: number[]; + costIds?: string[]; /** 成本模板 */ costTemplate?: string; /** 是否已付定金 */ @@ -5349,7 +5368,7 @@ declare namespace BusinessAPI { /** 产品名称 */ name: string; /** 关联成本费用id */ - costIds?: number[]; + costIds?: string[]; /** 成本模板 */ costTemplate?: string; /** 备注 */ @@ -5416,7 +5435,7 @@ declare namespace BusinessAPI { /** 产品名称 */ name: string; /** 关联成本费用id */ - costIds?: number[]; + costIds?: string[]; /** 成本模板 */ costTemplate?: string; /** 备注 */ @@ -5441,7 +5460,7 @@ declare namespace BusinessAPI { /** 状态:1_启用;0_禁用 */ status: boolean; /** 成本ID集合 */ - costIds?: number[]; + costIds?: string[]; /** 成本费用 */ costVOList?: CostVO[]; /** 成本模板 */ @@ -5468,7 +5487,7 @@ declare namespace BusinessAPI { /** 角色详情 */ description?: string; /** 角色id */ - menuId: number[]; + menuId: string[]; }; type RoleDestroyCmd = { @@ -5490,7 +5509,7 @@ declare namespace BusinessAPI { /** 角色编号 */ roleId?: string; /** 应用角色Id */ - roleIdList?: number[]; + roleIdList?: string[]; /** 平台Id */ platformId?: string; /** 平台Id */ @@ -5537,7 +5556,7 @@ declare namespace BusinessAPI { /** 角色详情 */ description?: string; /** 角色id */ - menuId: number[]; + menuId: string[]; /** 角色ID */ roleId: string; }; @@ -5558,9 +5577,9 @@ declare namespace BusinessAPI { /** 平台 */ platformVO?: PlatformVO; /** 权限列表 */ - permissionId: number[]; + permissionId: string[]; /** 菜单列表 */ - menuId: number[]; + menuId: string[]; /** 创建时间 */ createdAt: string; }; @@ -6445,7 +6464,7 @@ declare namespace BusinessAPI { /** 备注 */ remark?: string; /** 客户标签 */ - labelId?: number[]; + labelId?: string[]; }; type UserDestroyCmd = { @@ -6467,7 +6486,7 @@ declare namespace BusinessAPI { /** 状态:1_启用;0_禁用; */ status?: boolean; /** 用户ID */ - userIdList?: number[]; + userIdList?: string[]; /** 用户名 */ name?: string; }; @@ -6510,9 +6529,9 @@ declare namespace BusinessAPI { /** 是否是管理员 */ isAdmin?: boolean; /** 会员id列表 */ - userIdList?: number[]; + userIdList?: string[]; /** 排除的用户id列表 */ - excludeUserIdList?: number[]; + excludeUserIdList?: string[]; /** 小区id */ communityId?: number; offset?: number; @@ -6522,7 +6541,7 @@ declare namespace BusinessAPI { /** 用户ID */ userId: string; /** 角色ID */ - roleIdList?: number[]; + roleIdList?: string[]; /** 是否覆盖 */ cover: boolean; }; @@ -6567,7 +6586,7 @@ declare namespace BusinessAPI { /** 备注 */ remark?: string; /** 客户标签 */ - labelId?: number[]; + labelId?: string[]; /** 用户ID */ userId: string; }; diff --git a/swagger/business.json b/swagger/business.json index 08c0f7a..1932c15 100644 --- a/swagger/business.json +++ b/swagger/business.json @@ -1 +1 @@ -{"openapi":"3.1.0","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"http://localhost:8083","description":"Generated server url"}],"tags":[{"name":"Product","description":"产品管理"},{"name":"OrderRebate","description":"订单返点管理"},{"name":"Permission","description":"权限管理"},{"name":"Role","description":"应用角色管理"},{"name":"OrderSupplier","description":"订单供应商管理"},{"name":"OrderCost","description":"订单成本项管理"},{"name":"Employee","description":"员工信息管理"},{"name":"DealerAccountRecord","description":"经销商账款明细管理"},{"name":"OrderShip","description":"发货单管理"},{"name":"Order","description":"采购订单管理"},{"name":"Setting","description":"系统设置管理"},{"name":"BoxBrand","description":"纸箱品牌管理"},{"name":"BoxProduct","description":"纸箱产品管理"},{"name":"ExpenseRecord","description":"花销统计记录管理"},{"name":"BoxSpec","description":"纸箱规格管理"},{"name":"Channel","description":"渠道管理"},{"name":"Extraction","description":"信息抽取"},{"name":"Dealer","description":"经销商表管理"},{"name":"Company","description":"公司管理管理"},{"name":"PaymentTask","description":"付款任务管理"},{"name":"DealerPaymentAccount","description":"经销商付款账户管理"},{"name":"User","description":"用户管理"},{"name":"Cost","description":"费用管理"},{"name":"MaterialCategory","description":"素材分类"},{"name":"DealerWarehouse","description":"经销商仓库管理"},{"name":"Platform","description":"平台管理"},{"name":"Dictionary","description":"字典管理"},{"name":"Material","description":"素材管理"},{"name":"GiftBox","description":"礼盒管理"},{"name":"SupplierInvoice","description":"瓜农发票管理"},{"name":"DealerRebateCustomer","description":"经销商返点客户管理"},{"name":"Menu","description":"应用菜单"},{"name":"Agreement","description":"协议管理"},{"name":"Supplier","description":"供应商管理"},{"name":"PaymentRecord","description":"付款记录管理"},{"name":"Audit","description":"审核管理"},{"name":"CompanyPaymentAccount","description":"公司付款账户管理"},{"name":"CostItem","description":"费用项目管理"}],"paths":{"/operation/updateUser":{"put":{"tags":["User"],"summary":"更新用户","operationId":"updateUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}},"patch":{"tags":["User"],"summary":"更新用户","operationId":"updateUser_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}}},"/operation/updateSupplier":{"put":{"tags":["Supplier"],"summary":"供应商更新","operationId":"updateSupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}},"patch":{"tags":["Supplier"],"summary":"供应商更新","operationId":"updateSupplier_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/updateSupplierInvoice":{"put":{"tags":["SupplierInvoice"],"summary":"瓜农发票更新","operationId":"updateSupplierInvoice","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}},"patch":{"tags":["SupplierInvoice"],"summary":"瓜农发票更新","operationId":"updateSupplierInvoice_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}}},"/operation/updateSetting":{"put":{"tags":["Setting"],"summary":"系统设置更新","operationId":"updateSetting","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SettingUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSettingVO"}}}}}},"patch":{"tags":["Setting"],"summary":"系统设置更新","operationId":"updateSetting_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SettingUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSettingVO"}}}}}}},"/operation/updateProduct":{"put":{"tags":["Product"],"summary":"产品更新","operationId":"updateProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}},"patch":{"tags":["Product"],"summary":"产品更新","operationId":"updateProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}}},"/operation/updatePlatform":{"put":{"tags":["Platform"],"summary":"平台更新","operationId":"updatePlatform","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}},"patch":{"tags":["Platform"],"summary":"平台更新","operationId":"updatePlatform_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}}},"/operation/updatePaymentTask":{"put":{"tags":["PaymentTask"],"summary":"付款任务更新","operationId":"updatePaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}},"patch":{"tags":["PaymentTask"],"summary":"付款任务更新","operationId":"updatePaymentTask_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/updatePaymentRecord":{"put":{"tags":["PaymentRecord"],"summary":"付款记录更新","operationId":"updatePaymentRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}},"patch":{"tags":["PaymentRecord"],"summary":"付款记录更新","operationId":"updatePaymentRecord_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/updateOrder":{"put":{"tags":["Order"],"summary":"采购订单更新","operationId":"updateOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}},"deprecated":true},"patch":{"tags":["Order"],"summary":"采购订单更新","operationId":"updateOrder_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}},"deprecated":true}},"/operation/updateOrderSupplier":{"put":{"tags":["OrderSupplier"],"summary":"订单供应商更新","operationId":"updateOrderSupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderSupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderSupplierVO"}}}}}},"patch":{"tags":["OrderSupplier"],"summary":"订单供应商更新","operationId":"updateOrderSupplier_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderSupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderSupplierVO"}}}}}}},"/operation/updateOrderShip":{"put":{"tags":["OrderShip"],"summary":"发货单更新","operationId":"updateOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}},"patch":{"tags":["OrderShip"],"summary":"发货单更新","operationId":"updateOrderShip_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}}},"/operation/updateMenu":{"put":{"tags":["Menu"],"summary":"菜单更新","operationId":"updateMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}},"patch":{"tags":["Menu"],"summary":"菜单更新","operationId":"updateMenu_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}}},"/operation/updateMaterial":{"put":{"tags":["Material"],"summary":"素材内容更新","operationId":"updateMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}},"patch":{"tags":["Material"],"summary":"素材内容更新","operationId":"updateMaterial_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}}},"/operation/updateMaterialCategory":{"put":{"tags":["MaterialCategory"],"summary":"更新素材分类","operationId":"updateMaterialCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}},"patch":{"tags":["MaterialCategory"],"summary":"更新素材分类","operationId":"updateMaterialCategory_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}}},"/operation/updateGiftBox":{"put":{"tags":["GiftBox"],"summary":"礼盒更新","operationId":"updateGiftBox","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}},"patch":{"tags":["GiftBox"],"summary":"礼盒更新","operationId":"updateGiftBox_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}}},"/operation/updateExpenseRecord":{"put":{"tags":["ExpenseRecord"],"summary":"花销统计记录更新","operationId":"updateExpenseRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpenseRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}},"patch":{"tags":["ExpenseRecord"],"summary":"花销统计记录更新","operationId":"updateExpenseRecord_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpenseRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}}},"/operation/updateEmployee":{"put":{"tags":["Employee"],"summary":"员工信息更新","operationId":"updateEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}},"patch":{"tags":["Employee"],"summary":"员工信息更新","operationId":"updateEmployee_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}}},"/operation/updateDictionary":{"put":{"tags":["Dictionary"],"summary":"字典更新","operationId":"updateDictionary","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}},"patch":{"tags":["Dictionary"],"summary":"字典更新","operationId":"updateDictionary_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}}},"/operation/updateDealer":{"put":{"tags":["Dealer"],"summary":"经销商表更新","operationId":"updateDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}},"patch":{"tags":["Dealer"],"summary":"经销商表更新","operationId":"updateDealer_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/updateDealerWarehouse":{"put":{"tags":["DealerWarehouse"],"summary":"经销商仓库更新","operationId":"updateDealerWarehouse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}},"patch":{"tags":["DealerWarehouse"],"summary":"经销商仓库更新","operationId":"updateDealerWarehouse_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}}},"/operation/updateDealerTemplate":{"put":{"tags":["Dealer"],"summary":"更新经销商发货单模板","operationId":"updateDealerTemplate","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateTemplateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}},"patch":{"tags":["Dealer"],"summary":"更新经销商发货单模板","operationId":"updateDealerTemplate_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateTemplateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/updateDealerSettings":{"put":{"tags":["Dealer"],"summary":"更新经销商设置","operationId":"updateDealerSettings","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateSettingsCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}},"patch":{"tags":["Dealer"],"summary":"更新经销商设置","operationId":"updateDealerSettings_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateSettingsCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/updateDealerRebateCustomer":{"put":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户更新","operationId":"updateDealerRebateCustomer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}},"patch":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户更新","operationId":"updateDealerRebateCustomer_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}}},"/operation/updateDealerPaymentAccount":{"put":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户更新","operationId":"updateDealerPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}},"patch":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户更新","operationId":"updateDealerPaymentAccount_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}}},"/operation/updateDealerAccountRecord":{"put":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细更新","operationId":"updateDealerAccountRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}},"patch":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细更新","operationId":"updateDealerAccountRecord_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}}},"/operation/updateCost":{"put":{"tags":["Cost"],"summary":"费用更新","operationId":"updateCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}},"patch":{"tags":["Cost"],"summary":"费用更新","operationId":"updateCost_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}}},"/operation/updateCostItem":{"put":{"tags":["CostItem"],"summary":"费用项目更新","operationId":"updateCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}},"patch":{"tags":["CostItem"],"summary":"费用项目更新","operationId":"updateCostItem_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}}},"/operation/updateCompany":{"put":{"tags":["Company"],"summary":"公司管理更新","operationId":"updateCompany","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}},"patch":{"tags":["Company"],"summary":"公司管理更新","operationId":"updateCompany_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}}},"/operation/updateCompanyPaymentAccount":{"put":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户更新","operationId":"updateCompanyPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}},"patch":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户更新","operationId":"updateCompanyPaymentAccount_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}}},"/operation/updateChannel":{"put":{"tags":["Channel"],"summary":"渠道更新","operationId":"updateChannel","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}},"patch":{"tags":["Channel"],"summary":"渠道更新","operationId":"updateChannel_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}}},"/operation/updateBoxSpec":{"put":{"tags":["BoxSpec"],"summary":"纸箱规格更新","operationId":"updateBoxSpec","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}},"patch":{"tags":["BoxSpec"],"summary":"纸箱规格更新","operationId":"updateBoxSpec_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}}},"/operation/updateBoxProduct":{"put":{"tags":["BoxProduct"],"summary":"纸箱产品更新","operationId":"updateBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}},"patch":{"tags":["BoxProduct"],"summary":"纸箱产品更新","operationId":"updateBoxProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}}},"/operation/updateBoxBrand":{"put":{"tags":["BoxBrand"],"summary":"纸箱品牌更新","operationId":"updateBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}},"patch":{"tags":["BoxBrand"],"summary":"纸箱品牌更新","operationId":"updateBoxBrand_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}}},"/operation/updateAudit":{"put":{"tags":["Audit"],"summary":"审核更新","operationId":"updateAudit","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuditUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}},"patch":{"tags":["Audit"],"summary":"审核更新","operationId":"updateAudit_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuditUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/updateAgreement":{"put":{"tags":["Agreement"],"summary":"协议更新","operationId":"updateAgreement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}},"patch":{"tags":["Agreement"],"summary":"协议更新","operationId":"updateAgreement_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}}},"/operation/generateDocumentOrderShip":{"put":{"tags":["OrderShip"],"summary":"发货单生成单据","operationId":"generateDocumentOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipGenerateDocumentCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["OrderShip"],"summary":"发货单生成单据","operationId":"generateDocumentOrderShip_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipGenerateDocumentCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragProduct":{"put":{"tags":["Product"],"summary":"产品拖拽排序","operationId":"dragProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["Product"],"summary":"产品拖拽排序","operationId":"dragProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragDealer":{"put":{"tags":["Dealer"],"summary":"经销商表拖拽排序","operationId":"dragDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["Dealer"],"summary":"经销商表拖拽排序","operationId":"dragDealer_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragCost":{"put":{"tags":["Cost"],"summary":"费用拖拽排序","operationId":"dragCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["Cost"],"summary":"费用拖拽排序","operationId":"dragCost_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragCostItem":{"put":{"tags":["CostItem"],"summary":"费用项目拖拽排序","operationId":"dragCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["CostItem"],"summary":"费用项目拖拽排序","operationId":"dragCostItem_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragBoxProduct":{"put":{"tags":["BoxProduct"],"summary":"纸箱产品拖拽排序","operationId":"dragBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["BoxProduct"],"summary":"纸箱产品拖拽排序","operationId":"dragBoxProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragBoxBrand":{"put":{"tags":["BoxBrand"],"summary":"纸箱品牌拖拽排序","operationId":"dragBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["BoxBrand"],"summary":"纸箱品牌拖拽排序","operationId":"dragBoxBrand_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/withdrawReviewOrder":{"post":{"tags":["Order"],"summary":"采购订单撤回提审(产地/市场采购员撤回提审)","operationId":"withdrawReviewOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderWithdrawReviewCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/updateRole":{"post":{"tags":["Role"],"summary":"更新应用应用角色","operationId":"updateRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseRoleVO"}}}}}}},"/operation/updatePermission":{"post":{"tags":["Permission"],"summary":"更新权限","operationId":"updatePermission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PermissionUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePermissionVO"}}}}}}},"/operation/updateEmployeeRole":{"post":{"tags":["Employee"],"summary":"修改员工角色","operationId":"updateEmployeeRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserRoleUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/submitReviewOrder":{"post":{"tags":["Order"],"summary":"采购订单提审(产地/市场采购员提审)","operationId":"submitReviewOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderSubmitReviewCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/saveOrderStep3":{"post":{"tags":["Order"],"summary":"采购订单第三步:人工和辅料等费用信息保存","operationId":"saveOrderStep3","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderStep3Cmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/saveOrderStep2":{"post":{"tags":["Order"],"summary":"采购订单第二步:供应商信息保存","operationId":"saveOrderStep2","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderStep2Cmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/saveOrderStep1":{"post":{"tags":["Order"],"summary":"采购订单第一步:车辆信息和经销商信息保存","operationId":"saveOrderStep1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderStep1Cmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}}}},"/operation/restEmployeePassword":{"post":{"tags":["Employee"],"summary":"重置员工密码","operationId":"restEmployeePassword","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeRestPasswordCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/rejectFinalOrder":{"post":{"tags":["Order"],"summary":"采购订单驳回审批(老板驳回审批)","operationId":"rejectFinalOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderRejectFinalCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/rejectApproveOrder":{"post":{"tags":["Order"],"summary":"采购订单驳回审核(审核员驳回审核)","operationId":"rejectApproveOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderRejectApproveCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/payPaymentTask":{"post":{"tags":["PaymentTask"],"summary":"付款任务付款","operationId":"payPaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskPayCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/payOrderCost":{"post":{"tags":["OrderCost"],"summary":"费用付款","operationId":"payOrderCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCostPayCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/finalApproveOrder":{"post":{"tags":["Order"],"summary":"采购订单审批(老板审批)","operationId":"finalApproveOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderFinalApproveCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/extraction/vehicle":{"post":{"tags":["Extraction"],"summary":"智能提取物流信息","operationId":"vehicleExtraction","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VehicleExtractionCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseVehicleExtractionVO"}}}}}}},"/operation/enableUser":{"post":{"tags":["User"],"summary":"启用用户","operationId":"enableUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserEnableCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragMenu":{"post":{"tags":["Menu"],"summary":"菜单拖拽","operationId":"dragMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/disableUser":{"post":{"tags":["User"],"summary":"禁用用户","operationId":"disableUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserDisableCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/disableEmployee":{"post":{"tags":["Employee"],"summary":"封禁员工","operationId":"disableEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeDisableCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyRole":{"post":{"tags":["Role"],"summary":"删除应用角色","operationId":"destroyRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPermission":{"post":{"tags":["Permission"],"summary":"删除权限","operationId":"destroyPermission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PermissionDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/createUser":{"post":{"tags":["User"],"summary":"创建会员","operationId":"createUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}}},"/operation/createSupplier":{"post":{"tags":["Supplier"],"summary":"创建供应商","operationId":"createSupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/createSupplierInvoice":{"post":{"tags":["SupplierInvoice"],"summary":"创建发票","operationId":"createSupplierInvoice","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}}},"/operation/createRole":{"post":{"tags":["Role"],"summary":"创建应用角色","operationId":"createRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseRoleVO"}}}}}}},"/operation/createProduct":{"post":{"tags":["Product"],"summary":"创建产品","operationId":"createProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}}},"/operation/createPlatform":{"post":{"tags":["Platform"],"summary":"创建平台","operationId":"createPlatform","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}}},"/operation/createPermission":{"post":{"tags":["Permission"],"summary":"创建权限","operationId":"createPermission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PermissionCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePermissionVO"}}}}}}},"/operation/createPaymentTask":{"post":{"tags":["PaymentTask"],"summary":"创建付款任务","operationId":"createPaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/createPaymentRecord":{"post":{"tags":["PaymentRecord"],"summary":"创建付款记录","operationId":"createPaymentRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/createOrder":{"post":{"tags":["Order"],"summary":"创建采购订单(暂存)","operationId":"createOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}},"deprecated":true}},"/operation/createOrderShip":{"post":{"tags":["OrderShip"],"summary":"创建发货单","operationId":"createOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}}},"/operation/createOrderCost":{"post":{"tags":["OrderCost"],"summary":"创建订单成本项","operationId":"createOrderCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCostCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderCostVO"}}}}}}},"/operation/createMenu":{"post":{"tags":["Menu"],"summary":"创建菜单","operationId":"createMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}}},"/operation/createMaterial":{"post":{"tags":["Material"],"summary":"创建素材内容","operationId":"createMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}}},"/operation/createMaterialCategory":{"post":{"tags":["MaterialCategory"],"summary":"创建素材分类","operationId":"createMaterialCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}}},"/operation/createGiftBox":{"post":{"tags":["GiftBox"],"summary":"创建礼盒","operationId":"createGiftBox","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}}},"/operation/createExpenseRecord":{"post":{"tags":["ExpenseRecord"],"summary":"创建花销统计记录","operationId":"createExpenseRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpenseRecordCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}}},"/operation/createEmployee":{"post":{"tags":["Employee"],"summary":"创建员工信息","operationId":"createEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}}},"/operation/createDictionary":{"post":{"tags":["Dictionary"],"summary":"创建字典","operationId":"createDictionary","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}}},"/operation/createDealer":{"post":{"tags":["Dealer"],"summary":"创建经销商表","operationId":"createDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/createDealerWarehouse":{"post":{"tags":["DealerWarehouse"],"summary":"创建经销商仓库","operationId":"createDealerWarehouse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}}},"/operation/createDealerRebateCustomer":{"post":{"tags":["DealerRebateCustomer"],"summary":"创建经销商返点客户","operationId":"createDealerRebateCustomer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}}},"/operation/createDealerPaymentAccount":{"post":{"tags":["DealerPaymentAccount"],"summary":"创建经销商付款账户","operationId":"createDealerPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}}},"/operation/createDealerAccountRecord":{"post":{"tags":["DealerAccountRecord"],"summary":"创建经销商账款明细","operationId":"createDealerAccountRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}}},"/operation/createCost":{"post":{"tags":["Cost"],"summary":"创建费用","operationId":"createCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}}},"/operation/createCostItem":{"post":{"tags":["CostItem"],"summary":"创建费用项目","operationId":"createCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}}},"/operation/createCompany":{"post":{"tags":["Company"],"summary":"创建公司管理","operationId":"createCompany","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}}},"/operation/createCompanyPaymentAccount":{"post":{"tags":["CompanyPaymentAccount"],"summary":"创建公司付款账户","operationId":"createCompanyPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}}},"/operation/createChannel":{"post":{"tags":["Channel"],"summary":"创建渠道","operationId":"createChannel","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}}},"/operation/createBoxSpec":{"post":{"tags":["BoxSpec"],"summary":"创建纸箱规格","operationId":"createBoxSpec","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}}},"/operation/createBoxProduct":{"post":{"tags":["BoxProduct"],"summary":"创建纸箱产品","operationId":"createBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}}},"/operation/createBoxBrand":{"post":{"tags":["BoxBrand"],"summary":"创建纸箱品牌","operationId":"createBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}}},"/operation/createAgreement":{"post":{"tags":["Agreement"],"summary":"创建协议","operationId":"createAgreement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}}},"/operation/batchCreateMaterial":{"post":{"tags":["Material"],"summary":"创建素材内容","operationId":"batchCreateMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialBatchAddCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseMaterialVO"}}}}}}},"/operation/approveOrder":{"post":{"tags":["Order"],"summary":"采购订单审核(审核员审核)","operationId":"approveOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderApproveCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/treeMenu":{"get":{"tags":["Menu"],"summary":"菜单列表","operationId":"treeMenu","parameters":[{"name":"menuTreeQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MenuTreeQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseTreeLong"}}}}}}},"/operation/treeMaterialCategory":{"get":{"tags":["MaterialCategory"],"summary":"素材分类树","operationId":"treeMaterialCategory","parameters":[{"name":"categoryTreeQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CategoryTreeQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseTreeLong"}}}}}}},"/operation/statisticsPaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务统计","operationId":"statisticsPaymentTask","parameters":[{"name":"statisticsQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskStatisticsQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskStatisticsVO"}}}}}}},"/operation/showUser":{"get":{"tags":["User"],"summary":"获取用户","operationId":"showUser","parameters":[{"name":"userShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}}},"/operation/showSupplier":{"get":{"tags":["Supplier"],"summary":"供应商详情","operationId":"showSupplier","parameters":[{"name":"supplierShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/showSupplierInvoice":{"get":{"tags":["SupplierInvoice"],"summary":"瓜农发票详情","operationId":"showSupplierInvoice","parameters":[{"name":"supplierInvoiceShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierInvoiceShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}}},"/operation/showSetting":{"get":{"tags":["Setting"],"summary":"系统设置详情","operationId":"showSetting","parameters":[{"name":"settingShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SettingShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSettingVO"}}}}}}},"/operation/showRole":{"get":{"tags":["Role"],"summary":"查看应用角色","operationId":"showRole","parameters":[{"name":"roleShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RoleShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseRoleVO"}}}}}}},"/operation/showProduct":{"get":{"tags":["Product"],"summary":"产品详情","operationId":"showProduct","parameters":[{"name":"productShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ProductShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}}},"/operation/showPlatform":{"get":{"tags":["Platform"],"summary":"平台详情","operationId":"showPlatform","parameters":[{"name":"platformShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PlatformShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}}},"/operation/showPermission":{"get":{"tags":["Permission"],"summary":"查看权限","operationId":"showPermission","parameters":[{"name":"permissionShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PermissionShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePermissionVO"}}}}}}},"/operation/showPaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务详情","operationId":"showPaymentTask","parameters":[{"name":"paymentTaskShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/showPaymentRecord":{"get":{"tags":["PaymentRecord"],"summary":"付款记录详情","operationId":"showPaymentRecord","parameters":[{"name":"paymentRecordShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentRecordShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/showOrder":{"get":{"tags":["Order"],"summary":"采购订单详情","operationId":"showOrder","parameters":[{"name":"orderShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}}}},"/operation/showOrderShip":{"get":{"tags":["OrderShip"],"summary":"发货单详情","operationId":"showOrderShip","parameters":[{"name":"orderShipShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShipShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}}},"/operation/showOrderCost":{"get":{"tags":["OrderCost"],"summary":"订单成本项详情","operationId":"showOrderCost","parameters":[{"name":"orderCostShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderCostShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderCostVO"}}}}}}},"/operation/showMenu":{"get":{"tags":["Menu"],"summary":"菜单详情","operationId":"showMenu","parameters":[{"name":"menuShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MenuShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}}},"/operation/showMaterial":{"get":{"tags":["Material"],"summary":"素材内容详情","operationId":"showMaterial","parameters":[{"name":"materialShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MaterialShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}}},"/operation/showMaterialCategory":{"get":{"tags":["MaterialCategory"],"summary":"素材分类","operationId":"showMaterialCategory","parameters":[{"name":"categoryShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CategoryShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}}},"/operation/showGiftBox":{"get":{"tags":["GiftBox"],"summary":"礼盒详情","operationId":"showGiftBox","parameters":[{"name":"giftBoxShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GiftBoxShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}}},"/operation/showExpenseRecord":{"get":{"tags":["ExpenseRecord"],"summary":"花销统计记录详情","operationId":"showExpenseRecord","parameters":[{"name":"expenseRecordShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ExpenseRecordShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}}},"/operation/showEmployee":{"get":{"tags":["Employee"],"summary":"员工信息详情","operationId":"showEmployee","parameters":[{"name":"employeeShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EmployeeShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}}},"/operation/showDictionary":{"get":{"tags":["Dictionary"],"summary":"字典详情","operationId":"showDictionary","parameters":[{"name":"dictionaryShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DictionaryShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}}},"/operation/showDealer":{"get":{"tags":["Dealer"],"summary":"经销商表详情","operationId":"showDealer","parameters":[{"name":"dealerShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/showDealerWarehouse":{"get":{"tags":["DealerWarehouse"],"summary":"经销商仓库详情","operationId":"showDealerWarehouse","parameters":[{"name":"dealerWarehouseShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerWarehouseShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}}},"/operation/showDealerRebateCustomer":{"get":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户详情","operationId":"showDealerRebateCustomer","parameters":[{"name":"dealerRebateCustomerShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerRebateCustomerShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}}},"/operation/showDealerPaymentAccount":{"get":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户详情","operationId":"showDealerPaymentAccount","parameters":[{"name":"dealerPaymentAccountShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPaymentAccountShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}}},"/operation/showDealerAccountRecord":{"get":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细详情","operationId":"showDealerAccountRecord","parameters":[{"name":"dealerAccountRecordShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerAccountRecordShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}}},"/operation/showCost":{"get":{"tags":["Cost"],"summary":"费用详情","operationId":"showCost","parameters":[{"name":"costShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}}},"/operation/showCostItem":{"get":{"tags":["CostItem"],"summary":"费用项目详情","operationId":"showCostItem","parameters":[{"name":"costItemShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostItemShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}}},"/operation/showCompany":{"get":{"tags":["Company"],"summary":"公司管理详情","operationId":"showCompany","parameters":[{"name":"companyShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}}},"/operation/showCompanyPaymentAccount":{"get":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户详情","operationId":"showCompanyPaymentAccount","parameters":[{"name":"companyPaymentAccountShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}}},"/operation/showChannel":{"get":{"tags":["Channel"],"summary":"渠道详情","operationId":"showChannel","parameters":[{"name":"channelShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ChannelShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}}},"/operation/showBoxSpec":{"get":{"tags":["BoxSpec"],"summary":"纸箱规格详情","operationId":"showBoxSpec","parameters":[{"name":"boxSpecShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxSpecShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}}},"/operation/showBoxProduct":{"get":{"tags":["BoxProduct"],"summary":"纸箱产品详情","operationId":"showBoxProduct","parameters":[{"name":"boxProductShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxProductShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}}},"/operation/showBoxBrand":{"get":{"tags":["BoxBrand"],"summary":"纸箱品牌详情","operationId":"showBoxBrand","parameters":[{"name":"boxBrandShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxBrandShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}}},"/operation/showAudit":{"get":{"tags":["Audit"],"summary":"审核详情","operationId":"showAudit","parameters":[{"name":"auditShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AuditShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/showAgreement":{"get":{"tags":["Agreement"],"summary":"协议详情","operationId":"showAgreement","parameters":[{"name":"agreementShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AgreementShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}}},"/operation/pageUser":{"get":{"tags":["User"],"summary":"用户列表","operationId":"pageUser","parameters":[{"name":"userPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseUserVO"}}}}}}},"/operation/pageSupplier":{"get":{"tags":["Supplier"],"summary":"供应商列表","operationId":"pageSupplier","parameters":[{"name":"supplierPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseSupplierVO"}}}}}}},"/operation/pageSupplierInvoice":{"get":{"tags":["SupplierInvoice"],"summary":"瓜农发票列表","operationId":"pageSupplierInvoice","parameters":[{"name":"supplierInvoicePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierInvoicePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseSupplierInvoiceVO"}}}}}}},"/operation/pageRole":{"get":{"tags":["Role"],"summary":"应用角色分页","operationId":"pageRole","parameters":[{"name":"rolePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RolePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseRoleVO"}}}}}}},"/operation/pageProduct":{"get":{"tags":["Product"],"summary":"产品列表","operationId":"pageProduct","parameters":[{"name":"productPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ProductPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseProductVO"}}}}}}},"/operation/pagePlatform":{"get":{"tags":["Platform"],"summary":"平台列表","operationId":"pagePlatform","parameters":[{"name":"platformPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PlatformPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePlatformVO"}}}}}}},"/operation/pagePermission":{"get":{"tags":["Permission"],"summary":"权限分页","operationId":"pagePermission","parameters":[{"name":"permissionPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PermissionPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePermissionVO"}}}}}}},"/operation/pagePaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务列表","operationId":"pagePaymentTask","parameters":[{"name":"paymentTaskPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePaymentTaskVO"}}}}}}},"/operation/pagePaymentRecord":{"get":{"tags":["PaymentRecord"],"summary":"付款记录列表","operationId":"pagePaymentRecord","parameters":[{"name":"paymentRecordPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentRecordPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePaymentRecordVO"}}}}}}},"/operation/pageOrder":{"get":{"tags":["Order"],"summary":"采购订单列表","operationId":"pageOrder","parameters":[{"name":"orderPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderVO"}}}}}}},"/operation/pageOrderSupplier":{"get":{"tags":["OrderSupplier"],"summary":"订单供应商列表","operationId":"pageOrderSupplier","parameters":[{"name":"orderSupplierPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderSupplierPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderSupplierVO"}}}}}}},"/operation/pageOrderShip":{"get":{"tags":["OrderShip"],"summary":"发货单列表","operationId":"pageOrderShip","parameters":[{"name":"orderShipPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShipPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderShipVO"}}}}}}},"/operation/pageOrderRebate":{"get":{"tags":["OrderRebate"],"summary":"订单返点列表","operationId":"pageOrderRebate","parameters":[{"name":"orderRebatePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderRebatePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderRebateVO"}}}}}}},"/operation/pageOrderCost":{"get":{"tags":["OrderCost"],"summary":"订单成本项列表","operationId":"pageOrderCost","parameters":[{"name":"orderCostPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderCostPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderCostVO"}}}}}}},"/operation/pageMaterial":{"get":{"tags":["Material"],"summary":"素材内容列表","operationId":"pageMaterial","parameters":[{"name":"materialPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MaterialPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseMaterialVO"}}}}}}},"/operation/pageGiftBox":{"get":{"tags":["GiftBox"],"summary":"礼盒列表","operationId":"pageGiftBox","parameters":[{"name":"giftBoxPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GiftBoxPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseGiftBoxVO"}}}}}}},"/operation/pageEmployee":{"get":{"tags":["Employee"],"summary":"员工信息列表","operationId":"pageEmployee","parameters":[{"name":"employeePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EmployeePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseEmployeeVO"}}}}}}},"/operation/pageDictionary":{"get":{"tags":["Dictionary"],"summary":"字典列表","operationId":"pageDictionary","parameters":[{"name":"dictionaryPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DictionaryPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDictionaryVO"}}}}}}},"/operation/pageDealer":{"get":{"tags":["Dealer"],"summary":"经销商表列表","operationId":"pageDealer","parameters":[{"name":"dealerPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerVO"}}}}}}},"/operation/pageDealerWarehouse":{"get":{"tags":["DealerWarehouse"],"summary":"经销商仓库列表","operationId":"pageDealerWarehouse","parameters":[{"name":"dealerWarehousePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerWarehousePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerWarehouseVO"}}}}}}},"/operation/pageDealerRebateCustomer":{"get":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户列表","operationId":"pageDealerRebateCustomer","parameters":[{"name":"dealerRebateCustomerPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerRebateCustomerPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerRebateCustomerVO"}}}}}}},"/operation/pageDealerPaymentAccount":{"get":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户列表","operationId":"pageDealerPaymentAccount","parameters":[{"name":"dealerPaymentAccountPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPaymentAccountPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerPaymentAccountVO"}}}}}}},"/operation/pageDealerAccountRecord":{"get":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细列表","operationId":"pageDealerAccountRecord","parameters":[{"name":"dealerAccountRecordPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerAccountRecordPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerAccountRecordVO"}}}}}}},"/operation/pageCost":{"get":{"tags":["Cost"],"summary":"费用列表","operationId":"pageCost","parameters":[{"name":"costPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCostVO"}}}}}}},"/operation/pageCostItem":{"get":{"tags":["CostItem"],"summary":"费用项目列表","operationId":"pageCostItem","parameters":[{"name":"costItemPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostItemPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCostItemVO"}}}}}}},"/operation/pageCompany":{"get":{"tags":["Company"],"summary":"公司管理列表","operationId":"pageCompany","parameters":[{"name":"companyPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCompanyVO"}}}}}}},"/operation/pageCompanyPaymentAccount":{"get":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户列表","operationId":"pageCompanyPaymentAccount","parameters":[{"name":"companyPaymentAccountPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCompanyPaymentAccountVO"}}}}}}},"/operation/pageChannel":{"get":{"tags":["Channel"],"summary":"渠道分页","operationId":"pageChannel","parameters":[{"name":"channelPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ChannelPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseChannelVO"}}}}}}},"/operation/pageBoxSpec":{"get":{"tags":["BoxSpec"],"summary":"纸箱规格列表","operationId":"pageBoxSpec","parameters":[{"name":"boxSpecPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxSpecPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseBoxSpecVO"}}}}}}},"/operation/pageBoxProduct":{"get":{"tags":["BoxProduct"],"summary":"纸箱产品列表","operationId":"pageBoxProduct","parameters":[{"name":"boxProductPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxProductPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseBoxProductVO"}}}}}}},"/operation/pageBoxBrand":{"get":{"tags":["BoxBrand"],"summary":"纸箱品牌列表","operationId":"pageBoxBrand","parameters":[{"name":"boxBrandPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxBrandPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseBoxBrandVO"}}}}}}},"/operation/pageAudit":{"get":{"tags":["Audit"],"summary":"审核列表","operationId":"pageAudit","parameters":[{"name":"auditPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AuditPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseAuditVO"}}}}}}},"/operation/pageAgreement":{"get":{"tags":["Agreement"],"summary":"协议列表","operationId":"pageAgreement","parameters":[{"name":"agreementPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AgreementPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseAgreementVO"}}}}}}},"/operation/ossToken":{"get":{"tags":["Material"],"summary":"获取OSS上传凭证","operationId":"ossToken","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOssTokenVO"}}}}}}},"/operation/listUser":{"get":{"tags":["User"],"summary":"用户列表","operationId":"listUser","parameters":[{"name":"userListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseUserVO"}}}}}}},"/operation/listSupplier":{"get":{"tags":["Supplier"],"summary":"供应商列表","operationId":"listSupplier","parameters":[{"name":"supplierListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseSupplierVO"}}}}}}},"/operation/listSupplierInvoice":{"get":{"tags":["SupplierInvoice"],"summary":"瓜农发票列表","operationId":"listSupplierInvoice","parameters":[{"name":"supplierInvoiceListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierInvoiceListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseSupplierInvoiceVO"}}}}}}},"/operation/listRole":{"get":{"tags":["Role"],"summary":"应用角色列表","operationId":"listRole","parameters":[{"name":"roleListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RoleListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseRoleVO"}}}}}}},"/operation/listProduct":{"get":{"tags":["Product"],"summary":"产品列表","operationId":"listProduct","parameters":[{"name":"productListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ProductListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseProductVO"}}}}}}},"/operation/listPlatform":{"get":{"tags":["Platform"],"summary":"平台列表","operationId":"listPlatform","parameters":[{"name":"platformListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PlatformListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePlatformVO"}}}}}}},"/operation/listPermission":{"get":{"tags":["Permission"],"summary":"权限列表","operationId":"listPermission","parameters":[{"name":"permissionListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PermissionListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePermissionVO"}}}}}}},"/operation/listPaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务列表","operationId":"listPaymentTask","parameters":[{"name":"paymentTaskListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePaymentTaskVO"}}}}}}},"/operation/listPaymentRecord":{"get":{"tags":["PaymentRecord"],"summary":"付款记录列表","operationId":"listPaymentRecord","parameters":[{"name":"paymentRecordListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentRecordListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePaymentRecordVO"}}}}}}},"/operation/listOrder":{"get":{"tags":["Order"],"summary":"采购订单列表","operationId":"listOrder","parameters":[{"name":"orderListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseOrderVO"}}}}}}},"/operation/listOrderShip":{"get":{"tags":["OrderShip"],"summary":"发货单列表","operationId":"listOrderShip","parameters":[{"name":"orderShipListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShipListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseOrderShipVO"}}}}}}},"/operation/listMenu":{"get":{"tags":["Menu"],"summary":"菜单列表","operationId":"listMenu","parameters":[{"name":"menuListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MenuListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseMenuVO"}}}}}}},"/operation/listGiftBox":{"get":{"tags":["GiftBox"],"summary":"礼盒列表","operationId":"listGiftBox","parameters":[{"name":"giftBoxListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GiftBoxListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseGiftBoxVO"}}}}}}},"/operation/listExpenseRecord":{"get":{"tags":["ExpenseRecord"],"summary":"花销统计记录列表","operationId":"listExpenseRecord","parameters":[{"name":"expenseRecordListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ExpenseRecordListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseExpenseRecordVO"}}}}}}},"/operation/listEmployee":{"get":{"tags":["Employee"],"summary":"员工信息列表","operationId":"listEmployee","parameters":[{"name":"employeeListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EmployeeListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseEmployeeVO"}}}}}}},"/operation/listDictionary":{"get":{"tags":["Dictionary"],"summary":"字典列表","operationId":"listDictionary","parameters":[{"name":"dictionaryListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DictionaryListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDictionaryVO"}}}}}}},"/operation/listDealer":{"get":{"tags":["Dealer"],"summary":"经销商表列表","operationId":"listDealer","parameters":[{"name":"dealerListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerVO"}}}}}}},"/operation/listDealerWarehouse":{"get":{"tags":["DealerWarehouse"],"summary":"经销商仓库列表","operationId":"listDealerWarehouse","parameters":[{"name":"dealerWarehouseListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerWarehouseListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerWarehouseVO"}}}}}}},"/operation/listDealerRebateCustomer":{"get":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户列表","operationId":"listDealerRebateCustomer","parameters":[{"name":"dealerRebateCustomerListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerRebateCustomerListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerRebateCustomerVO"}}}}}}},"/operation/listDealerPaymentAccount":{"get":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户列表","operationId":"listDealerPaymentAccount","parameters":[{"name":"dealerPaymentAccountListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPaymentAccountListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerPaymentAccountVO"}}}}}}},"/operation/listDealerAccountRecord":{"get":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细列表","operationId":"listDealerAccountRecord","parameters":[{"name":"dealerAccountRecordListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerAccountRecordListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerAccountRecordVO"}}}}}}},"/operation/listCost":{"get":{"tags":["Cost"],"summary":"费用列表","operationId":"listCost","parameters":[{"name":"costListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCostVO"}}}}}}},"/operation/listCostItem":{"get":{"tags":["CostItem"],"summary":"费用项目列表","operationId":"listCostItem","parameters":[{"name":"costItemListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostItemListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCostItemVO"}}}}}}},"/operation/listCompany":{"get":{"tags":["Company"],"summary":"公司管理列表","operationId":"listCompany","parameters":[{"name":"companyListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCompanyVO"}}}}}}},"/operation/listCompanyPaymentAccount":{"get":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户列表","operationId":"listCompanyPaymentAccount","parameters":[{"name":"companyPaymentAccountListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCompanyPaymentAccountVO"}}}}}}},"/operation/listBoxSpec":{"get":{"tags":["BoxSpec"],"summary":"纸箱规格列表","operationId":"listBoxSpec","parameters":[{"name":"boxSpecListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxSpecListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseBoxSpecVO"}}}}}}},"/operation/listBoxProduct":{"get":{"tags":["BoxProduct"],"summary":"纸箱产品列表","operationId":"listBoxProduct","parameters":[{"name":"boxProductListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxProductListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseBoxProductVO"}}}}}}},"/operation/listBoxBrand":{"get":{"tags":["BoxBrand"],"summary":"纸箱品牌列表","operationId":"listBoxBrand","parameters":[{"name":"boxBrandListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxBrandListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseBoxBrandVO"}}}}}}},"/operation/listAgreement":{"get":{"tags":["Agreement"],"summary":"协议列表","operationId":"listAgreement","parameters":[{"name":"agreementListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AgreementListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseAgreementVO"}}}}}}},"/operation/getLastVehicleNo":{"get":{"tags":["Order"],"summary":"获取上一车车次号","operationId":"getLastVehicleNo","parameters":[{"name":"lastVehicleNoQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LastVehicleNoQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseString"}}}}}}},"/operation/countOrderByState":{"get":{"tags":["Order"],"summary":"获取某个状态的数量","operationId":"countOrderByState","parameters":[{"name":"orderCountQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderCountQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseLong"}}}}}}},"/operation/checkSupplier":{"get":{"tags":["Supplier"],"summary":"检查供应商","operationId":"checkSupplier","parameters":[{"name":"supplierCheckQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierCheckQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/destroyUser":{"delete":{"tags":["User"],"summary":"删除用户","operationId":"destroyUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroySupplier":{"delete":{"tags":["Supplier"],"summary":"供应商删除","operationId":"destroySupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroySupplierInvoice":{"delete":{"tags":["SupplierInvoice"],"summary":"瓜农发票删除","operationId":"destroySupplierInvoice","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyProduct":{"delete":{"tags":["Product"],"summary":"产品删除","operationId":"destroyProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPlatform":{"delete":{"tags":["Platform"],"summary":"平台删除","operationId":"destroyPlatform","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPaymentTask":{"delete":{"tags":["PaymentTask"],"summary":"付款任务删除","operationId":"destroyPaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPaymentRecord":{"delete":{"tags":["PaymentRecord"],"summary":"付款记录删除","operationId":"destroyPaymentRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyOrder":{"delete":{"tags":["Order"],"summary":"采购订单删除","operationId":"destroyOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyOrderShip":{"delete":{"tags":["OrderShip"],"summary":"发货单删除","operationId":"destroyOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyMenu":{"delete":{"tags":["Menu"],"summary":"菜单更新","operationId":"destroyMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyMaterial":{"delete":{"tags":["Material"],"summary":"删除素材内容","operationId":"destroyMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyMaterialCategory":{"delete":{"tags":["MaterialCategory"],"summary":"删除素材分类","operationId":"destroyMaterialCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyGiftBox":{"delete":{"tags":["GiftBox"],"summary":"礼盒删除","operationId":"destroyGiftBox","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyEmployee":{"delete":{"tags":["Employee"],"summary":"员工信息删除","operationId":"destroyEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDictionary":{"delete":{"tags":["Dictionary"],"summary":"字典删除","operationId":"destroyDictionary","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealer":{"delete":{"tags":["Dealer"],"summary":"经销商表删除","operationId":"destroyDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerWarehouse":{"delete":{"tags":["DealerWarehouse"],"summary":"经销商仓库删除","operationId":"destroyDealerWarehouse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerRebateCustomer":{"delete":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户删除","operationId":"destroyDealerRebateCustomer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerPaymentAccount":{"delete":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户删除","operationId":"destroyDealerPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerAccountRecord":{"delete":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细删除","operationId":"destroyDealerAccountRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCost":{"delete":{"tags":["Cost"],"summary":"费用删除","operationId":"destroyCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCostItem":{"delete":{"tags":["CostItem"],"summary":"费用项目删除","operationId":"destroyCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCompany":{"delete":{"tags":["Company"],"summary":"公司管理删除","operationId":"destroyCompany","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCompanyPaymentAccount":{"delete":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户删除","operationId":"destroyCompanyPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyChannel":{"delete":{"tags":["Channel"],"summary":"渠道删除","operationId":"destroyChannel","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyBoxSpec":{"delete":{"tags":["BoxSpec"],"summary":"纸箱规格删除","operationId":"destroyBoxSpec","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyBoxProduct":{"delete":{"tags":["BoxProduct"],"summary":"纸箱产品删除","operationId":"destroyBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyBoxBrand":{"delete":{"tags":["BoxBrand"],"summary":"纸箱品牌删除","operationId":"destroyBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyAgreement":{"delete":{"tags":["Agreement"],"summary":"协议删除","operationId":"destroyAgreement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}},"components":{"schemas":{"Response":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"}}},"UserUpdateCmd":{"type":"object","properties":{"name":{"type":"string","title":"会员名称"},"nickname":{"type":"string","title":"会员昵称"},"avatar":{"type":"string","title":"头像"},"phone":{"type":"string","title":"会员手机号"},"birthday":{"type":"string","title":"会员生日"},"gender":{"type":"integer","format":"int32","title":"会员性别"},"cardType":{"type":"integer","format":"int32","title":"会员卡号生成方式:1 系统生成 2 自定义"},"remark":{"type":"string","title":"备注"},"labelId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"客户标签"},"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户更新命令"},"SingleResponseUserVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/UserVO"}}},"UserVO":{"type":"object","properties":{"userId":{"type":"string","title":"用户编号"},"nickname":{"type":"string","title":"昵称"},"avatar":{"type":"string","title":"头像"},"name":{"type":"string","title":"姓名"},"gender":{"type":"integer","format":"int32","title":"性别"},"birthday":{"type":"string","title":"生日"},"phone":{"type":"string","title":"手机号"},"remark":{"type":"string","title":"备注"},"state":{"type":"string","enum":["ENABLE","DISABLE"],"title":"状态"},"isAdmin":{"type":"boolean","title":"是否是管理员"},"isPartner":{"type":"boolean","title":"是否是小区合伙人"},"createdAt":{"type":"string","title":"创建时间"},"bindPhoneAt":{"type":"string","title":"绑定手机号码时间"},"lastLoginAt":{"type":"string","title":"最后一次登录时间"},"mpOpenid":{"type":"string","title":"微信公众号openid"},"maOpenid":{"type":"string","title":"微信小程序openid"},"unionid":{"type":"string","title":"开放平台unionid"}},"required":["avatar","bindPhoneAt","birthday","createdAt","gender","isAdmin","isPartner","lastLoginAt","maOpenid","mpOpenid","name","nickname","phone","state","unionid","userId"],"title":"用户信息"},"SupplierUpdateCmd":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"wechatQr":{"type":"string","title":"微信收款码URL"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"dealerId":{"type":"integer","format":"int64","title":"经销商ID"}},"required":["bankCard","bankName","name","payeeName","phone","status","supplierId","type"],"title":"供应商更新"},"DealerPaymentAccountVO":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"dealerId":{"type":"string","title":"经销商ID"},"companyName":{"type":"string","title":"公司名称"},"taxNumber":{"type":"string","title":"税号"},"bankAccount":{"type":"string","title":"银行账号"},"companyAddress":{"type":"string","title":"单位地址"},"phone":{"type":"string","title":"电话"},"openingBank":{"type":"string","title":"开户行"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"required":["dealerId","dealerType","shortName","status"],"title":"经销商信息"}},"required":["accountId","bankAccount","companyName","dealerId","taxNumber"],"title":"经销商付款账户"},"DealerVO":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"enableShare":{"type":"boolean","title":"是否开启分成"},"shareRatio":{"type":"number","title":"分成比例"},"freightCostFlag":{"type":"boolean","title":"运费是否作为成本"},"strawMatCostFlag":{"type":"boolean","title":"草帘是否作为成本"},"includePackingFlag":{"type":"boolean","title":"发货单合计金额是否含包装费"},"includeFreightFlag":{"type":"boolean","title":"发货单合计金额是否含包运费"},"receivable":{"type":"number","title":"应收金额"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"deliveryTemplate":{"type":"string","title":"发货单模板"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerPaymentAccountVOList":{"type":"array","items":{"$ref":"#/components/schemas/DealerPaymentAccountVO"},"title":"经销商账户列表"},"enableAccrualTax":{"type":"boolean","title":"是否开启计提税金"},"accrualTaxRatio":{"type":"number","title":"计提税金比例"},"enableCompanyRebate":{"type":"boolean","title":"是否开启公司返点"},"companyRebateRatio":{"type":"number","title":"公司返点比例"},"shareAdjusted":{"type":"boolean","title":"是否可调整比例"},"enableLoss":{"type":"boolean","title":"是否开启损耗"},"lossAmount":{"type":"number","title":"损耗金额"},"enableInitialTrainNo":{"type":"boolean","title":"是否启用初始车次号"},"initialTrainNo":{"type":"integer","format":"int32","title":"初始车次号"}},"required":["dealerId","dealerType","shortName","status"],"title":"经销商表"},"SingleResponseSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/SupplierVO"}}},"SupplierVO":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"wechatQr":{"type":"string","title":"微信收款码URL"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"dealerId":{"type":"integer","format":"int64","title":"经销商ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"}},"required":["bankCard","bankName","createdBy","name","payeeName","phone","status","supplierId","type"],"title":"供应商"},"OrderSupplierInvoice":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商姓名"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"invoiceAmount":{"type":"number","title":"瓜农发票金额"},"dealerId":{"type":"string","title":"经销商Id"},"dealerName":{"type":"string","title":"经销航名称"},"vehicleNo":{"type":"string","title":"车次号"}},"required":["dealerId","dealerName","invoiceAmount","name","orderId","orderSupplierId","supplierId","type","vehicleNo"],"title":"供应商发票信息"},"SupplierInvoiceUpdateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FARMER"],"title":"瓜农发票类型:1_瓜农"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"supplierName":{"type":"string","title":"瓜农发票开具人名称"},"orderSupplierInvoiceList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierInvoice"},"title":"代开发票人的信息"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票图片(支持多张)"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"required":["supplierId","supplierInvoiceId","supplierName"],"title":"瓜农发票更新"},"UploadFileItem":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名"},"filePath":{"type":"string","title":"文件路径"},"fileSize":{"type":"integer","format":"int64","title":"文件大小"},"fileType":{"type":"string","title":"文件类型"}},"title":"文件上传"},"SingleResponseSupplierInvoiceVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/SupplierInvoiceVO"}}},"SupplierInvoiceVO":{"type":"object","properties":{"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"},"invoiceSn":{"type":"string","title":"瓜农发票编号"},"type":{"type":"string","enum":["FARMER"],"title":"瓜农发票类型:1_瓜农"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"supplierName":{"type":"string","title":"瓜农发票开具人名称"},"orderSupplierInvoiceList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierInvoice"},"title":"代开发票人的信息"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票图片(支持多张)"},"registrationTime":{"type":"string","format":"date-time","title":"登记时间"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["invoiceSn","registrationTime","supplierId","supplierInvoiceId","supplierName"],"title":"瓜农发票"},"AliPayConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appId":{"type":"string","title":"支付宝appid"},"privateKey":{"type":"string","title":"支付宝私钥"},"publicKey":{"type":"string","title":"支付宝公钥"},"gatewayUrl":{"type":"string","title":"支付宝网关地址"},"notifyUrl":{"type":"string","title":"支付宝回调地址"}}}],"required":["appId","gatewayUrl","notifyUrl","privateKey","publicKey"],"title":"支付宝配置"},"ChargingPilePurchaseConfig":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"title":{"type":"string","title":"标题"},"description":{"type":"string","title":"描述"},"price":{"type":"number","title":"购买价格"},"linePrice":{"type":"number","title":"划线价格"},"image":{"type":"array","items":{"type":"string"},"title":"图片"},"content":{"type":"string","title":"设备内容"}}}],"required":["content","description","image","linePrice","price","title"],"title":"充电桩设备购买配置"},"CustomMenuConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"menuItems":{"type":"array","items":{"$ref":"#/components/schemas/MenuItem"},"title":"菜单列表"}}}],"required":["menuItems"],"title":"自定义菜单配置"},"CustomThemeConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"themeName":{"type":"string","title":"主题名称"},"primaryColor":{"type":"string","title":"主题颜色"},"secondaryColor":{"type":"string","title":"次要颜色"}}}],"required":["primaryColor","secondaryColor","themeName"],"title":"自定义主题配置"},"MenuItem":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单Id"},"menuName":{"type":"string","title":"菜单名称"},"menuIcon":{"type":"string","title":"菜单图标"},"menuRedirect":{"type":"object","additionalProperties":{},"properties":{"empty":{"type":"boolean"}},"title":"菜单路径"},"menuSort":{"type":"integer","format":"int32","title":"菜单排序"}},"required":["menuIcon","menuId","menuName","menuRedirect","menuSort"],"title":"菜单项"},"SettingUpdateCmd":{"type":"object","properties":{"settingId":{"type":"string","title":"系统设置项ID"},"settingKey":{"type":"string","enum":["WX_MA_CONFIG","WX_MA_MESSAGE_PUSH_CONFIG","WX_MA_SUBSCRIBE_MESSAGE_CONFIG","WX_MA_CODE_UPLOAD_CONFIG","WX_PAY_CONFIG","TENCENT_MAP_CONFIG","SMS_CONFIG","VIRTUAL_PHONE_CONFIG","WX_MP_CONFIG","WX_MP_MESSAGE_PUSH_CONFIG","ALI_PAY_CONFIG","CHARGING_PILE_PURCHASE_CONFIG","CUSTOM_THEME_CONFIG","CUSTOM_MENU_CONFIG","WX_CP_NOTIFY_CONFIG","SMART_RECOGNITION_PROMPT"],"title":"系统设置项key"},"settingValue":{"oneOf":[{"$ref":"#/components/schemas/AliPayConfigValue"},{"$ref":"#/components/schemas/ChargingPilePurchaseConfig"},{"$ref":"#/components/schemas/CustomMenuConfigValue"},{"$ref":"#/components/schemas/CustomThemeConfigValue"},{"$ref":"#/components/schemas/SmartRecognitionPromptValue"},{"$ref":"#/components/schemas/TencentMapConfigValue"},{"$ref":"#/components/schemas/WxCpNotifyConfigValue"},{"$ref":"#/components/schemas/WxMaCodeUploadConfigValue"},{"$ref":"#/components/schemas/WxMaConfigValue"},{"$ref":"#/components/schemas/WxMaMessagePushConfigValue"},{"$ref":"#/components/schemas/WxMaSubscribeMessageConfigValue"},{"$ref":"#/components/schemas/WxMpConfigValue"},{"$ref":"#/components/schemas/WxMpMessagePushConfigValue"},{"$ref":"#/components/schemas/WxPayConfigValue"}],"title":"系统设置项内容"}},"required":["settingKey","settingValue"],"title":"系统设置更新"},"SettingValue":{"discriminator":{"propertyName":"settingKey"},"properties":{"settingKey":{"type":"string"}},"required":["settingKey"]},"SmartRecognitionPromptValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"prompt":{"type":"string","title":"提示词"}}}],"required":["prompt"],"title":"智能识别提示词"},"TencentMapConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appKey":{"type":"string","title":"腾讯地图AppKey"}}}],"required":["appKey"],"title":"腾讯地图配置"},"WxCpNotifyConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"communityApplyNotifyKey":{"type":"string","title":"小区申请通知key"}}}],"required":["communityApplyNotifyKey"],"title":"企业微信通知配置"},"WxMaCodeUploadConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appId":{"type":"string","title":"小程序APPID"},"version":{"type":"string","title":"当前版本号"},"desc":{"type":"string","title":"更新描述"},"ipWhiteList":{"type":"string","title":"上传IP白名单"},"pagePath":{"type":"string","title":"页面路径"},"orderCenterPath":{"type":"string","title":"小程序订单中心path"},"codeUploadKey":{"type":"string","title":"小程序代码上传密钥"}}}],"required":["appId","codeUploadKey","desc","ipWhiteList","orderCenterPath","pagePath","version"],"title":"小程序代码上传配置"},"WxMaConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"wxMaName":{"type":"string","title":"小程序名称"},"wxMaOriginalId":{"type":"string","title":"小程序原始ID"},"wxMaLogo":{"type":"string","title":"小程序Logo"},"wxMaCheckFile":{"type":"string","title":"校验文件"},"appId":{"type":"string","title":"AppID(小程序ID)"},"appSecret":{"type":"string","title":"AppSecret(小程序密钥)"}}}],"required":["appId","appSecret","wxMaCheckFile","wxMaLogo","wxMaName","wxMaOriginalId"],"title":"分类创建"},"WxMaMessagePushConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"token":{"type":"string","title":"Token(令牌)"},"encodingAESKey":{"type":"string","title":"EncodingAESKey"},"msgEncryptMode":{"type":"string","title":"消息加密方式"},"dataFormat":{"type":"string","title":"数据格式"},"ipWhiteList":{"type":"string","title":"IP白名单"},"url":{"type":"string","title":"URL(服务器地址)"}}}],"required":["dataFormat","encodingAESKey","ipWhiteList","msgEncryptMode","token","url"],"title":"小程序消息推送配置"},"WxMaSubscribeMessageConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"}],"title":"小程序订阅消息配置"},"WxMpConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"wxMpName":{"type":"string","title":"公众号名称"},"wxMpOriginalId":{"type":"string","title":"公众号原始ID"},"wxMpLogo":{"type":"string","title":"公众号Logo"},"appId":{"type":"string","title":"AppID(公众号ID)"},"appSecret":{"type":"string","title":"AppSecret(公众号密钥)"}}}],"required":["appId","appSecret","wxMpLogo","wxMpName","wxMpOriginalId"],"title":"微信公众号配置"},"WxMpMessagePushConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"token":{"type":"string","title":"Token(令牌)"},"encodingAESKey":{"type":"string","title":"EncodingAESKey"},"msgEncryptMode":{"type":"string","title":"消息加密方式"},"dataFormat":{"type":"string","title":"数据格式"},"ipWhiteList":{"type":"string","title":"IP白名单"},"url":{"type":"string","title":"URL(服务器地址)"}}}],"required":["dataFormat","encodingAESKey","ipWhiteList","msgEncryptMode","token","url"],"title":"公众号消息推送配置"},"WxPayConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appId":{"type":"string","title":"微信公众号或者小程序等的appid"},"mchId":{"type":"string","title":"微信支付商户号"},"mchKey":{"type":"string","title":"微信支付商户密钥"},"keyPath":{"type":"string","title":"apiclient_cert.p12文件的绝对路径"},"apiV3Key":{"type":"string","title":"apiV3 秘钥值"},"certSerialNo":{"type":"string","title":"apiV3 证书序列号值"},"privateCertString":{"type":"string","title":"apiclient_cert.pem证书文件"},"privateKeyString":{"type":"string","title":"apiclient_key.pem证书文件"},"publicKeyString":{"type":"string","title":"微信支付公钥,pub_key.pem证书文件"},"publicKeyId":{"type":"string","title":"微信支付公钥ID"},"notifyUrl":{"type":"string","title":"微信支付回调地址"}}}],"required":["apiV3Key","appId","certSerialNo","keyPath","mchId","mchKey","notifyUrl","privateCertString","privateKeyString","publicKeyId","publicKeyString"],"title":"微信支付配置"},"SettingVO":{"type":"object","properties":{"settingKey":{"type":"string","enum":["WX_MA_CONFIG","WX_MA_MESSAGE_PUSH_CONFIG","WX_MA_SUBSCRIBE_MESSAGE_CONFIG","WX_MA_CODE_UPLOAD_CONFIG","WX_PAY_CONFIG","TENCENT_MAP_CONFIG","SMS_CONFIG","VIRTUAL_PHONE_CONFIG","WX_MP_CONFIG","WX_MP_MESSAGE_PUSH_CONFIG","ALI_PAY_CONFIG","CHARGING_PILE_PURCHASE_CONFIG","CUSTOM_THEME_CONFIG","CUSTOM_MENU_CONFIG","WX_CP_NOTIFY_CONFIG","SMART_RECOGNITION_PROMPT"],"title":"系统设置项key"},"settingValue":{"oneOf":[{"$ref":"#/components/schemas/AliPayConfigValue"},{"$ref":"#/components/schemas/ChargingPilePurchaseConfig"},{"$ref":"#/components/schemas/CustomMenuConfigValue"},{"$ref":"#/components/schemas/CustomThemeConfigValue"},{"$ref":"#/components/schemas/SmartRecognitionPromptValue"},{"$ref":"#/components/schemas/TencentMapConfigValue"},{"$ref":"#/components/schemas/WxCpNotifyConfigValue"},{"$ref":"#/components/schemas/WxMaCodeUploadConfigValue"},{"$ref":"#/components/schemas/WxMaConfigValue"},{"$ref":"#/components/schemas/WxMaMessagePushConfigValue"},{"$ref":"#/components/schemas/WxMaSubscribeMessageConfigValue"},{"$ref":"#/components/schemas/WxMpConfigValue"},{"$ref":"#/components/schemas/WxMpMessagePushConfigValue"},{"$ref":"#/components/schemas/WxPayConfigValue"}],"title":"系统设置项内容"}},"required":["settingKey","settingValue"],"title":"系统设置"},"SingleResponseSettingVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/SettingVO"}}},"ProductUpdateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品表ID"},"name":{"type":"string","title":"产品名称"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联成本费用id"},"costTemplate":{"type":"string","title":"成本模板"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","productId","sort","status"],"title":"产品表更新"},"CostItemVO":{"type":"object","properties":{"costItemId":{"type":"string","title":"项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"name":{"type":"string","title":"项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["costItemId","name","rule","sort","status","type"],"title":"费用项目表"},"CostVO":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"remark":{"type":"string","title":"备注"},"isDefault":{"type":"boolean","title":"是否默认"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"项目id集合"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"costItemVOList":{"type":"array","items":{"$ref":"#/components/schemas/CostItemVO"},"title":"项目列表"}},"required":["belong","costId","name","sort","status","type"],"title":"费用"},"ProductVO":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"产品名称"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"成本ID集合"},"costVOList":{"type":"array","items":{"$ref":"#/components/schemas/CostVO"},"title":"成本费用"},"costTemplate":{"type":"string","title":"成本模板"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","productId","sort","status"],"title":"产品表"},"SingleResponseProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/ProductVO"}}},"PlatformUpdateCmd":{"type":"object","properties":{"platformName":{"type":"string","title":"平台名称"},"homePage":{"type":"string","title":"首页"},"platformId":{"type":"string","title":"平台ID"}},"required":["homePage","platformId","platformName"],"title":"平台更新"},"PlatformVO":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"platformName":{"type":"string","title":"平台名称"},"homePage":{"type":"string","title":"应用首页"}},"required":["homePage","platformId","platformName"],"title":"平台"},"SingleResponsePlatformVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PlatformVO"}}},"OrderCompany":{"type":"object","properties":{"orderCompanyId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"companyId":{"type":"string","title":"公司ID"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"accountId":{"type":"string","title":"账户ID"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"账户名称"},"accountNumber":{"type":"string","title":"银行账号"}},"required":["address","companyId","contactPerson","contactPhone","fullName","orderCompanyId","orderId","shortName","taxNumber"],"title":"采购订单公司信息创建"},"OrderCost":{"type":"object","properties":{"orderCostId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"费用Id"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"principal":{"type":"string","title":"负责人"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联项目id"},"selected":{"type":"boolean","title":"是否选中"},"isPaid":{"type":"boolean","title":"是否已付款"}},"required":["costId","count","name","orderCostId","price","selected","type","unit"],"title":"采购订单成本项目信息创建"},"OrderCostItem":{"type":"object","properties":{"orderCostItemId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"costItemId":{"type":"string","title":"成本项目ID"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"payerType":{"type":"string","enum":["US","OTHER"],"title":"费用承担方:1-我方,2-对方"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;3_数量和金额"},"selected":{"type":"boolean","title":"是否选中"}},"required":["orderCostItemId","orderId","rule","selected"],"title":"采购订单成本项目信息"},"OrderDealer":{"type":"object","properties":{"orderDealerId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"采购订单ID"},"dealerId":{"type":"string","title":"经销商ID"},"shortName":{"type":"string","title":"经销商简称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"enableShare":{"type":"boolean","title":"是否开启分成"},"shareRatio":{"type":"number","title":"分成比例"},"freightCostFlag":{"type":"boolean","title":"运费是否作为成本"},"strawMatCostFlag":{"type":"boolean","title":"草帘是否作为成本"},"includePackingFlag":{"type":"boolean","title":"发货单合计金额是否含包装费"},"includeFreightFlag":{"type":"boolean","title":"发货单合计金额是否含包运费"},"enableAccrualTax":{"type":"boolean","title":"是否开启计提税金"},"accrualTaxRatio":{"type":"number","title":"计提税金比例"},"enableCompanyRebate":{"type":"boolean","title":"是否开启公司返点"},"companyRebateRatio":{"type":"number","title":"公司返点比例"},"shareAdjusted":{"type":"boolean","title":"是否可调整比例"},"taxSubsidy":{"type":"number","title":"税费补贴"},"taxProvision":{"type":"number","title":"计提税金"},"costDifference":{"type":"number","title":"成本差异"},"profitSharing":{"type":"number","title":"利润分成"},"enableLoss":{"type":"boolean","title":"是否开启损耗"},"lossAmount":{"type":"number","title":"损耗金额"}},"required":["dealerId","dealerType","shortName"],"title":"采购订单经销商信息创建"},"OrderPackage":{"type":"object","properties":{"orderPackageId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"采购订单记录ID"},"orderSupplierId":{"type":"string","title":"供应商记录ID"},"boxBrandId":{"type":"string","title":"箱子品牌ID"},"boxBrandName":{"type":"string","title":"箱子品牌名称"},"boxBrandImage":{"type":"string","title":"箱子品牌图片"},"boxBrandType":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"箱子品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"boxSpecId":{"type":"string","title":"箱子规格ID"},"boxSpecName":{"type":"string","title":"箱子规格名称"},"boxProductId":{"type":"string","title":"箱子产品ID"},"boxProductName":{"type":"string","title":"箱子产品名称"},"boxProductWeight":{"type":"number","title":"单个箱子重量(kg)"},"boxCount":{"type":"integer","format":"int32","title":"箱子数量"},"boxCostPrice":{"type":"number","title":"成本单价(元/个)"},"boxSalePrice":{"type":"number","title":"销售单价(元/个)"},"boxType":{"type":"string","enum":["USED","EXTRA","EXTRA_USED","REMAIN","OWN","EMPTY"],"title":"箱子类型:1_本次使用;2_额外运输;3_已使用额外运输;4_车上剩余;5_瓜农纸箱;6_空箱;"}},"required":["boxBrandId","boxBrandName","boxBrandType","boxCount","boxProductId","boxProductName","boxProductWeight","boxSpecId","boxSpecName","boxType"],"title":"采购订单包装箱信息创建"},"OrderRebate":{"type":"object","properties":{"orderRebateId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT"],"title":"返点计算方式:1_按净重计算;2_固定金额;"},"netWeight":{"type":"number","title":"返点净重"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"},"isPaid":{"type":"boolean","title":"是否已付款"}},"required":["amount","calcMethod","customerId","dealerId","name","orderId","orderRebateId"]},"OrderShip":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"},"orderSn":{"type":"string","title":"发货单编号"},"dealerId":{"type":"string","title":"经销商ID"},"dealerName":{"type":"string","title":"经销商名称"},"warehouseId":{"type":"string","title":"仓库ID"},"warehouseName":{"type":"string","title":"仓库名称"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"shippingAddress":{"type":"string","title":"发货地址"},"receivingAddress":{"type":"string","title":"收货地址"},"shippingDate":{"type":"string","title":"发货日期"},"estimatedArrivalDate":{"type":"string","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"farmerInfo":{"type":"string","title":"瓜农姓名逗号隔开"},"state":{"type":"string","enum":["DRAFT","WAIT_SHIPMENT","WAIT_PAYMENT","WAIT_CHANGE","PARTIAL_PAYMENT","FULL_PAYMENT","REJECT_FINISH","FINISH"],"title":"发货单状态:0_草稿;1_待发货;2_待回款;3_待改签;4_部分回款;5_已回款;6_拒收完结;7_已完结;"},"type":{"type":"string","enum":["PURCHASE_SHIP","TRANSFER_SHIP","CHANGE_SHIP","RETURN_SHIP"],"title":"发货单类型:1_采购发货;2_调货发货;3_改签发货;4_退货发货"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"}},"required":["companyId","companyName","estimatedArrivalDate","orderId","orderShipId","orderSn","receivingAddress","shippingAddress","shippingDate","state","watermelonGrade"],"title":"采购单发货"},"OrderShipItem":{"type":"object","properties":{"orderShipItemId":{"type":"string","title":"发货单子项ID"},"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购订单ID"},"grossWeight":{"type":"number","title":"毛重(斤)"},"boxWeight":{"type":"number","title":"箱重(斤)"},"boxCount":{"type":"integer","format":"int32","title":"箱数"},"netWeight":{"type":"number","title":"净重(斤)"},"unitPrice":{"type":"number","title":"单价(元)"},"totalAmount":{"type":"number","title":"总金额(元)"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["orderId","orderShipId","orderShipItemId"],"title":"发货单子项表"},"OrderSupplier":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"phone":{"type":"string","title":"手机号"},"wechatQr":{"type":"string","title":"微信二维码"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"isLast":{"type":"boolean","title":"是否最后一家"},"isPaper":{"type":"boolean","title":"空磅是否包含纸箱"},"emptyWeight":{"type":"number","title":"空车重量(kg)"},"totalWeight":{"type":"number","title":"总重量(kg)"},"grossWeight":{"type":"number","title":"毛重(kg)"},"netWeight":{"type":"number","title":"净重(kg)"},"purchasePrice":{"type":"number","title":"采购单价(元/斤)"},"packageUsage":{"type":"array","items":{"$ref":"#/components/schemas/SupplierPackageUsage"},"title":"箱子类型"},"loadingMode":{"type":"string","description":"1_搭架子+网垫;2_纸箱+胶带+木隔板","enum":["FRAME_WITH_NET","BOX_WITH_TAPE"],"title":"装车模式"},"salePrice":{"type":"number","title":"销售单价(元/斤)"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"invoiceAmount":{"type":"number","title":"瓜农发票金额"},"emptyWeightImg":{"type":"string","title":"空车照片"},"totalWeightImg":{"type":"string","title":"满载照片"},"invoiceUpload":{"type":"boolean","title":"是否上传票证"},"invoiceId":{"type":"integer","format":"int64","title":"瓜农发票ID"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票"},"contractUpload":{"type":"boolean","title":"是否上传合同"},"contractImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"合同"},"productId":{"type":"string","title":"产品ID"},"productName":{"type":"string","title":"产品名称"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联费用id"},"costTemplate":{"type":"string","title":"成本模板"},"isDepositPaid":{"type":"boolean","title":"是否已付定金"},"depositAmount":{"type":"number","title":"定金金额"},"isPaid":{"type":"boolean","title":"是否付款"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"采购订单公司信息"},"selected":{"type":"boolean","title":"是否选中"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["bankCard","bankName","contractUpload","emptyWeight","grossWeight","idCard","invoiceAmount","invoiceUpload","isLast","isPaper","name","netWeight","orderSupplierId","packageUsage","payeeName","phone","purchasePrice","salePrice","selected","totalWeight","type"],"title":"采购订单供应商信息创建"},"OrderSupplierVO":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"phone":{"type":"string","title":"手机号"},"wechatQr":{"type":"string","title":"微信二维码"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"isLast":{"type":"boolean","title":"是否最后一家"},"isPaper":{"type":"boolean","title":"空磅是否包含纸箱"},"productId":{"type":"string","title":"产品id"},"productName":{"type":"string","title":"产品名称"},"loadingMode":{"type":"string","enum":["FRAME_WITH_NET","BOX_WITH_TAPE"],"title":"装车模式:1_搭架子+网垫;2_纸箱+胶带+木隔板"},"emptyWeight":{"type":"number","title":"空车重量(kg)"},"totalWeight":{"type":"number","title":"总重量(kg)"},"grossWeight":{"type":"number","title":"毛重(斤)"},"netWeight":{"type":"number","title":"净重(斤)"},"purchasePrice":{"type":"number","title":"采购单价(元/斤)"},"salePrice":{"type":"number","title":"销售单价(元/斤)"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"invoiceAmount":{"type":"number","title":"瓜农发票金额"},"isDepositPaid":{"type":"boolean","title":"是否已付定金"},"depositAmount":{"type":"number","title":"定金金额"},"isPaid":{"type":"boolean","title":"是否付款"},"emptyWeightImg":{"type":"string","title":"空车照片"},"totalWeightImg":{"type":"string","title":"满载照片"},"invoiceUpload":{"type":"boolean","title":"是否上传票证"},"invoiceId":{"type":"integer","format":"int64","title":"发票ID"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票照片"},"contractUpload":{"type":"boolean","title":"是否上传合同"},"contractImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"合同照片"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单信息"},"supplierInvoiceVO":{"$ref":"#/components/schemas/SupplierInvoiceVO","title":"供应商发票信息"}},"required":["bankCard","bankName","contractImg","contractUpload","createdAt","depositAmount","emptyWeight","emptyWeightImg","grossWeight","idCard","invoiceAmount","invoiceId","invoiceImg","invoiceUpload","isDepositPaid","isLast","isPaid","isPaper","loadingMode","name","netWeight","orderCompany","orderId","orderSupplierId","orderVO","payeeName","phone","pricingMethod","productId","productName","purchasePrice","salePrice","supplierId","totalWeight","totalWeightImg","type","wechatQr"],"title":"订单供应商"},"OrderVO":{"type":"object","properties":{"orderId":{"type":"string","title":"订单ID"},"orderSn":{"type":"string","title":"订单编号"},"draft":{"type":"boolean","title":"是否是草稿"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"remark":{"type":"string","title":"备注"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"orderRebate":{"$ref":"#/components/schemas/OrderRebate","title":"返点信息"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单项目信息"},"orderShipList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShip"},"title":"采购订单发货信息"}},"required":["active","auditState","createdBy","draft","orderCompany","orderCostItemList","orderCostList","orderDealer","orderId","orderPackageList","orderRebate","orderShipList","orderSn","orderSupplierList","orderVehicle","state","type"],"title":"采购订单"},"OrderVehicle":{"type":"object","properties":{"vehicleId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"vehicleNo":{"type":"string","title":"车货编码"},"plate":{"type":"string","title":"车牌号"},"driver":{"type":"string","title":"司机姓名"},"phone":{"type":"string","title":"司机电话"},"origin":{"type":"string","title":"出发地"},"destination":{"type":"string","title":"目的地"},"priceType":{"type":"string","enum":["MAIN_FREIGHT","SHORT_TRANSPORT"],"title":"运费类型:1-主运费;2-短驳费;"},"price":{"type":"number","title":"运输价格"},"dealerId":{"type":"string","title":"经销商ID"},"dealerName":{"type":"string","title":"经销商名称"},"openStrawCurtain":{"type":"boolean","title":"是否开启草帘"},"strawCurtainPrice":{"type":"number","title":"草帘费用"},"deliveryTime":{"type":"string","format":"date","title":"采购日期"}},"required":["dealerName","deliveryTime","destination","driver","openStrawCurtain","origin","phone","plate","price"],"title":"采购订单车辆运输信息创建"},"PaymentTaskUpdateCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"targetId":{"type":"string","title":"付款任务对象ID"},"totalAmount":{"type":"number","title":"付款总金额"},"paidAmount":{"type":"number","title":"已付金额"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"orderCount":{"type":"integer","format":"int32","title":"订单数量"},"remark":{"type":"string","title":"备注"},"orderSupplierVOList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"},"title":"订单供应商信息"}},"required":["orderCount","paidAmount","paymentTaskId","state","targetId","taskName","taskType","totalAmount"],"title":"付款任务更新"},"SupplierPackageUsage":{"type":"object","properties":{"boxType":{"type":"string","enum":["USED","EXTRA","EXTRA_USED","REMAIN","OWN","EMPTY"],"title":"箱子类型:1_本次使用;2_额外运输;3_已使用额外运输;4_车上剩余;5_瓜农纸箱;6_空箱;"},"isUsed":{"type":"integer","format":"int32","title":"是否使用:0_未回答;1_使用;2_未使用"}},"title":"采购订单供应商纸箱使用情况"},"PaymentTaskVO":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"paymentTaskSn":{"type":"string","title":"付款编码"},"targetId":{"type":"string","title":"付款任务对象ID"},"totalAmount":{"type":"number","title":"付款总金额"},"paidAmount":{"type":"number","title":"已付金额"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"orderCount":{"type":"integer","format":"int32","title":"订单数量"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"supplierVO":{"$ref":"#/components/schemas/SupplierVO","title":"供应商信息"},"orderSupplierVOList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"},"title":"订单供应商信息"}},"required":["createdAt","orderCount","paidAmount","paymentTaskId","paymentTaskSn","state","targetId","taskName","taskType","totalAmount"],"title":"付款任务"},"SingleResponsePaymentTaskVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PaymentTaskVO"}}},"PaymentRecordUpdateCmd":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"targetId":{"type":"string","title":"付款对象ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidAmount":{"type":"number","title":"付款金额"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","paidAmount","paidAt","paidState","paymentRecordId","paymentRecordSn","targetId","targetType"],"title":"付款记录更新"},"CompanyVO":{"type":"object","properties":{"companyId":{"type":"string","title":"公司ID"},"logo":{"type":"string","title":"公司logo"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["address","companyId","contactPerson","contactPhone","fullName","logo","shortName","status","taxNumber"],"title":"公司管理"},"OrderCostVO":{"type":"object","properties":{"orderCostId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"费用Id"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"principal":{"type":"string","title":"负责人"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联项目id"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单信息"},"isPaid":{"type":"boolean","title":"是否付款"}},"required":["costId","count","createdAt","name","orderCompany","orderCostId","orderVO","price","type","unit"],"title":"采购订单成本项目信息"},"PaymentRecordVO":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"targetId":{"type":"string","title":"付款对象ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidAmount":{"type":"number","title":"付款金额"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"paymentTaskVO":{"$ref":"#/components/schemas/PaymentTaskVO","title":"付款任务信息"},"supplierVO":{"$ref":"#/components/schemas/SupplierVO","title":"供应商信息"},"companyVO":{"$ref":"#/components/schemas/CompanyVO","title":"公司信息"},"orderCostVO":{"$ref":"#/components/schemas/OrderCostVO","title":"采购订单成本项目信息"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","createdAt","paidAmount","paidAt","paidState","paymentRecordId","paymentRecordSn","targetId","targetType"],"title":"付款记录"},"SingleResponsePaymentRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PaymentRecordVO"}}},"OrderUpdateCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"remark":{"type":"string","title":"备注"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"}},"required":["orderCostItemList","orderCostList","orderDealer","orderId","orderPackageList","orderSupplierList","orderVehicle"],"title":"采购订单更新"},"SingleResponseOrderVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderVO"}}},"OrderSupplierUpdateCmd":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"订单供应商ID"},"invoiceUpload":{"type":"boolean","title":"是否上传票证"},"invoiceId":{"type":"integer","format":"int64","title":"发票ID"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票照片"},"contractUpload":{"type":"boolean","title":"是否上传合同"},"contractImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"合同照片"},"isDepositPaid":{"type":"boolean","title":"是否已付定金"},"depositAmount":{"type":"number","title":"定金金额"},"isPaid":{"type":"boolean","title":"是否付款"},"loadingMode":{"type":"string","description":"1_搭架子+网垫;2_纸箱+胶带+木隔板","enum":["FRAME_WITH_NET","BOX_WITH_TAPE"],"title":"装车模式"}},"required":["invoiceId","orderSupplierId"],"title":"订单供应商更新"},"SingleResponseOrderSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderSupplierVO"}}},"OrderShipUpdateCmd":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"shippingAddress":{"type":"string","title":"发货地址"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"}},"required":["orderShipId"],"title":"发货单更新"},"OrderShipVO":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"},"dealerId":{"type":"string","title":"经销商ID"},"dealerName":{"type":"string","title":"经销商名称"},"orderSn":{"type":"string","title":"发货单编号"},"warehouseId":{"type":"string","title":"仓库ID"},"warehouseName":{"type":"string","title":"仓库名称"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"shippingAddress":{"type":"string","title":"发货地址"},"receivingAddress":{"type":"string","title":"收货地址"},"shippingDate":{"type":"string","format":"date","title":"发货日期"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"farmerInfo":{"type":"string","title":"瓜农姓名逗号隔开"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"},"state":{"type":"string","enum":["DRAFT","WAIT_SHIPMENT","WAIT_PAYMENT","WAIT_CHANGE","PARTIAL_PAYMENT","FULL_PAYMENT","REJECT_FINISH","FINISH"],"title":"发货单状态:0_草稿;1_待发货;2_待回款;3_待改签;4_部分回款;5_已回款;6_拒收完结;7_已完结;"},"type":{"type":"string","enum":["PURCHASE_SHIP","TRANSFER_SHIP","CHANGE_SHIP","RETURN_SHIP"],"title":"发货单类型:1_采购发货;2_调货发货;3_改签发货;4_退货发货"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"发货单成本项目信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单车辆运输信息"}},"required":["createdBy","dealerId","dealerName","orderId","orderShipId","orderSn","state","type"],"title":"发货单"},"SingleResponseOrderShipVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderShipVO"}}},"MenuUpdateCmd":{"type":"object","properties":{"path":{"type":"string","title":"路径"},"component":{"type":"string","title":"组件"},"name":{"type":"string","title":"菜单名称"},"pid":{"type":"string","title":"上级菜单Id"},"type":{"type":"string","title":"菜单类型"},"platformId":{"type":"string","title":"平台id"},"roleId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色Id"},"hideInMenu":{"type":"boolean","title":"是否隐藏"},"permissionId":{"type":"integer","format":"int64","title":"权限Id"},"icon":{"type":"string","title":"菜单图标"},"iconColor":{"type":"string","title":"图标颜色"},"bgColorClass":{"type":"string","title":"背景颜色类名"},"menuId":{"type":"string","title":"菜单Id"}},"required":["component","menuId","name","path","platformId","type"],"title":"更新菜单"},"MenuVO":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单id"},"path":{"type":"string","title":"菜单路径"},"component":{"type":"string","title":"组件"},"name":{"type":"string","title":"菜单名称"},"pid":{"type":"string","title":"父菜单id"},"sort":{"type":"string","title":"排序"},"type":{"type":"string","enum":["MENU","PAGE","BUTTON"],"title":"菜单类型"},"platformId":{"type":"string","title":"平台id"},"hideInMenu":{"type":"boolean","title":"是否隐藏"},"routes":{"type":"array","items":{"required":["component","hideInMenu","menuId","name","path","pid","platformId","sort","type"],"title":"菜单"},"title":"子菜单"},"permissionId":{"type":"integer","format":"int64","title":"权限id"},"icon":{"type":"string","title":"菜单图标"},"iconColor":{"type":"string","title":"图标颜色"},"bgColorClass":{"type":"string","title":"背景颜色类名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["component","hideInMenu","menuId","name","path","permissionId","pid","platformId","sort","type"],"title":"菜单"},"SingleResponseMenuVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/MenuVO"}}},"MaterialUpdateCmd":{"type":"object","properties":{"name":{"type":"string","title":"素材内容标题"},"categoryId":{"type":"string","title":"分类ID"},"path":{"type":"string","title":"素材内容路劲"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"},"materialId":{"type":"string","title":"素材内容ID"}},"title":"更新素材内容"},"CategoryVO":{"type":"object","properties":{"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"example":"视频","title":"分类类型"},"categoryId":{"type":"string","title":"分类"},"name":{"type":"string","example":"名称","title":"分类名称"},"pid":{"type":"string","example":"名称","title":"上级分类id"},"sort":{"type":"string","example":"名称","title":"排序号"},"children":{"type":"array","items":{"required":["categoryId","name"],"title":"分类响应"},"title":"下级分类"},"count":{"type":"integer","format":"int32","title":"分类关联数量"}},"required":["categoryId","count","name"],"title":"分类响应"},"MaterialVO":{"type":"object","properties":{"materialId":{"type":"string","title":"素材内容ID"},"name":{"type":"string","title":"素材内容标题"},"path":{"type":"string","title":"素材内容路劲"},"url":{"type":"string","title":"素材内容地址"},"categoryId":{"type":"string","title":"上级分类id"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"},"categoryVO":{"$ref":"#/components/schemas/CategoryVO","title":"分类内容"}},"required":["categoryId","materialId","name","path","type","url"],"title":"素材内容"},"SingleResponseMaterialVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/MaterialVO"}}},"CategoryUpdateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"example":"视频","title":"分类类型"},"name":{"type":"string","example":"名称","title":"分类名称"},"pid":{"type":"string","example":"名称","title":"上级分类id"},"sort":{"type":"integer","format":"int32","example":"排序","title":"排序"},"categoryId":{"type":"string","title":"分类Id"}},"required":["categoryId"],"title":"分类"},"SingleResponseCategoryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CategoryVO"}}},"GiftBoxUpdateCmd":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"costPrice":{"type":"number","title":"成本价"},"weight":{"type":"number","title":"重量(kg)"},"salePrice":{"type":"number","title":"售价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["boxId","costPrice","name","salePrice","status","weight"],"title":"礼盒更新"},"GiftBoxVO":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"costPrice":{"type":"number","title":"成本价"},"weight":{"type":"number","title":"重量(kg)"},"salePrice":{"type":"number","title":"售价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["boxId","costPrice","name","salePrice","status","weight"],"title":"礼盒"},"SingleResponseGiftBoxVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/GiftBoxVO"}}},"ExpenseCost":{"type":"object","properties":{"expenseCostId":{"type":"string","title":"明细ID"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"},"costId":{"type":"string","title":"费用类型ID"},"costName":{"type":"string","title":"费用类型名称"},"expenseAmount":{"type":"number","title":"花销金额"},"remark":{"type":"string","title":"备注(可填员工、事由等)"}},"required":["costId","costName","expenseAmount","expenseCostId","expenseRecordId"],"title":"花销费用明细"},"ExpenseProvision":{"type":"object","properties":{"expenseProvisionId":{"type":"string","title":"明细ID"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"},"dealerName":{"type":"string","title":"经销商名称"},"vehicleNo":{"type":"string","title":"车次号"},"provisionAmount":{"type":"number","title":"计提金额"},"orderId":{"type":"string","title":"采购单ID"},"remark":{"type":"string","title":"备注"}},"required":["expenseProvisionId","expenseRecordId","provisionAmount"],"title":"花销计提明细"},"ExpenseRecordUpdateCmd":{"type":"object","properties":{"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"},"expenseCostList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseCost"},"title":"花销费用明细"},"expenseProvisionList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseProvision"},"title":"花销计提明细"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"}},"required":["expenseRecordId"],"title":"花销统计记录更新"},"ExpenseRecordVO":{"type":"object","properties":{"expenseRecordId":{"type":"string","title":"记录ID"},"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"},"totalVehicleCount":{"type":"integer","format":"int32","title":"计提车次数量"},"totalProvision":{"type":"number","title":"计提总金额"},"totalExpense":{"type":"number","title":"花销总额"},"dailyProfit":{"type":"number","title":"日常利润"},"expenseProvisionList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseProvision"},"title":"花销计提明细"},"expenseCostList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseCost"},"title":"花销费用明细"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["expenseRecordId"],"title":"花销统计记录"},"SingleResponseExpenseRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/ExpenseRecordVO"}}},"EmployeeUpdateCmd":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"},"name":{"type":"string","minLength":1,"title":"姓名"},"number":{"type":"string","minLength":1,"title":"工号"},"gender":{"type":"integer","format":"int32","title":"性别"},"avatar":{"type":"string","title":"头像"},"phone":{"type":"string","minLength":1,"pattern":"^(1[3-9])\\d{9}$","title":"手机号"},"remark":{"type":"string","maxLength":200,"minLength":0,"title":"备注"}},"required":["employeeId","gender","name","number","phone"],"title":"员工信息更新"},"EmployeeVO":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息"},"name":{"type":"string","title":"姓名"},"number":{"type":"string","title":"工号"},"avatar":{"type":"string","title":"头像"},"gender":{"type":"integer","format":"int32","title":"性别"},"phone":{"type":"string","title":"手机号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"userId":{"type":"string","title":"用户ID"},"roleIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色ID"},"userRoleList":{"type":"array","items":{"$ref":"#/components/schemas/UserRoleVO"},"title":"角色信息"}},"required":["employeeId","gender","name","number","phone","roleIdList","userId"],"title":"员工信息"},"SingleResponseEmployeeVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/EmployeeVO"}}},"UserRoleVO":{"type":"object","properties":{"name":{"type":"string","title":"角色名称"},"slug":{"type":"string","title":"角色标识"},"roleId":{"type":"string","title":"角色ID"},"userId":{"type":"string","title":"用户ID"},"description":{"type":"string","title":"描述"},"platformId":{"type":"string","title":"平台ID"}},"required":["description","name","platformId","roleId","slug","userId"],"title":"用户角色"},"DictionaryUpdateCmd":{"type":"object","properties":{"id":{"type":"integer","format":"int32","title":"自增id"},"code":{"type":"string","title":"代码"},"name":{"type":"string","title":"字典名称"},"parentId":{"type":"string","title":"上级id"},"sortNo":{"type":"integer","format":"int32","title":"排序号"},"type":{"type":"string","title":"类型"},"dictionaryId":{"type":"string","title":"字典ID"}},"required":["dictionaryId"],"title":"字典更新"},"DictionaryVO":{"type":"object","properties":{"dictionaryId":{"type":"integer","format":"int32","title":"自增id"},"code":{"type":"string","title":"代码"},"name":{"type":"string","title":"字典名称"},"parentId":{"type":"string","title":"上级id"},"sortNo":{"type":"integer","format":"int32","title":"排序号"},"type":{"type":"string","title":"类型"}},"title":"字典"},"SingleResponseDictionaryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DictionaryVO"}}},"DealerUpdateCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商表ID"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"receivable":{"type":"number","title":"应收金额"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"deliveryTemplate":{"type":"string","title":"发货单模板"}},"required":["dealerId","dealerType","shortName","status"],"title":"经销商表更新"},"SingleResponseDealerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerVO"}}},"DealerWarehouseUpdateCmd":{"type":"object","properties":{"warehouseId":{"type":"string","title":"经销商仓库ID"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商账户ID"},"name":{"type":"string","title":"仓库名称"},"address":{"type":"string","title":"仓库地址"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"receiverName":{"type":"string","title":"收货人姓名"},"receiverPhone":{"type":"string","title":"收货人电话"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"}},"required":["accountId","address","dealerId","name","status","warehouseId"],"title":"经销商仓库更新"},"DealerWarehouseVO":{"type":"object","properties":{"warehouseId":{"type":"string","title":"仓库ID"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商账户ID"},"name":{"type":"string","title":"仓库名称"},"address":{"type":"string","title":"仓库地址"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"receiverName":{"type":"string","title":"收货人姓名"},"receiverPhone":{"type":"string","title":"收货人电话"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"dealerPaymentAccountVO":{"$ref":"#/components/schemas/DealerPaymentAccountVO","title":"经销商账户信息"}},"required":["accountId","address","dealerId","name","status","warehouseId"],"title":"经销商仓库"},"SingleResponseDealerWarehouseVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerWarehouseVO"}}},"DealerUpdateTemplateCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"deliveryTemplate":{"type":"string","title":"发货单模板"}},"required":["dealerId","deliveryTemplate"],"title":"经销商发货单模板更新"},"DealerUpdateSettingsCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"enableShare":{"type":"boolean","title":"是否开启分成"},"shareRatio":{"type":"number","title":"分成比例"},"freightCostFlag":{"type":"boolean","title":"运费是否作为成本"},"strawMatCostFlag":{"type":"boolean","title":"草帘是否作为成本"},"includePackingFlag":{"type":"boolean","title":"发货单合计金额是否含包装费"},"includeFreightFlag":{"type":"boolean","title":"发货单合计金额是否含包运费"},"enableAccrualTax":{"type":"boolean","title":"是否开启计提税金"},"accrualTaxRatio":{"type":"number","title":"计提税金比例"},"enableCompanyRebate":{"type":"boolean","title":"是否开启公司返点"},"companyRebateRatio":{"type":"number","title":"公司返点比例"},"shareAdjusted":{"type":"boolean","title":"是否可调整比例"},"enableLoss":{"type":"boolean","title":"是否开启损耗"},"lossAmount":{"type":"number","title":"损耗金额"},"enableInitialTrainNo":{"type":"boolean","title":"是否启用初始车次号"},"initialTrainNo":{"type":"integer","format":"int32","title":"初始车次号"}},"required":["dealerId"],"title":"经销商设置更新"},"DealerRebateCustomerUpdateCmd":{"type":"object","properties":{"customerId":{"type":"string","title":"经销商返点客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式:1_按净重计算;2_固定金额;3_不固定"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"}},"required":["customerId","dealerId","name","status"],"title":"经销商返点客户更新"},"DealerRebateCustomerVO":{"type":"object","properties":{"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式:1_按净重计算;2_固定金额;3_不固定"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"}},"required":["customerId","dealerId","name","status"],"title":"经销商返点客户"},"SingleResponseDealerRebateCustomerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerRebateCustomerVO"}}},"DealerPaymentAccountUpdateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"经销商付款账户ID"},"dealerId":{"type":"string","title":"经销商ID"},"companyName":{"type":"string","title":"公司名称"},"taxNumber":{"type":"string","title":"税号"},"bankAccount":{"type":"string","title":"银行账号"},"companyAddress":{"type":"string","title":"单位地址"},"phone":{"type":"string","title":"电话"},"openingBank":{"type":"string","title":"开户行"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["accountId","bankAccount","companyName","dealerId","taxNumber"],"title":"经销商付款账户更新"},"SingleResponseDealerPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerPaymentAccountVO"}}},"DealerAccountRecordUpdateCmd":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"beforeAmount":{"type":"number","title":"变动前金额"},"amount":{"type":"number","title":"变动金额"},"afterAmount":{"type":"number","title":"变动后金额"},"remark":{"type":"string","title":"备注"}},"required":["afterAmount","amount","beforeAmount","dealerAccountRecordId","dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细更新"},"DealerAccountRecordVO":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"应收账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"beforeAmount":{"type":"number","title":"变动前金额"},"amount":{"type":"number","title":"变动金额"},"afterAmount":{"type":"number","title":"变动后金额"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["afterAmount","amount","beforeAmount","dealerAccountRecordId","dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细"},"SingleResponseDealerAccountRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerAccountRecordVO"}}},"CostUpdateCmd":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"remark":{"type":"string","title":"备注"},"isDefault":{"type":"boolean","title":"是否默认"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"成本项ID"}},"required":["belong","costId","name","sort","status","type"],"title":"费用更新"},"SingleResponseCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CostVO"}}},"CostItemUpdateCmd":{"type":"object","properties":{"costItemId":{"type":"string","title":"费用项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;"},"costId":{"type":"integer","format":"int64","title":"费用ID"},"name":{"type":"string","title":"项目名称"},"unit":{"type":"string","title":"单位"},"price":{"type":"number","title":"单价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["costId","costItemId","name","price","rule","status","type","unit"],"title":"费用项目更新"},"SingleResponseCostItemVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CostItemVO"}}},"CompanyUpdateCmd":{"type":"object","properties":{"companyId":{"type":"string","title":"公司管理ID"},"logo":{"type":"string","title":"公司logo"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["address","companyId","contactPerson","contactPhone","fullName","shortName","status","taxNumber"],"title":"公司管理更新"},"SingleResponseCompanyVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CompanyVO"}}},"CompanyPaymentAccountUpdateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"公司付款账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"publicAccountType":{"type":"string","enum":["BASIC_ACCOUNT","GENERAL_ACCOUNT","SPECIAL_ACCOUNT","TEMPORARY_ACCOUNT"],"title":"对公账户类型:1_基本户;2_一般户;3_专用账户;4_临时户"},"accountName":{"type":"string","title":"开户公司名称、支付宝昵称、微信号"},"accountNumber":{"type":"string","title":"银行账号、支付宝账号、微信账号"},"isPrimary":{"type":"boolean","title":"是否主付款账户:0_否;1_是"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;2_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["accountCategory","accountId","accountName","accountNumber","accountType","companyId","isPrimary","status"],"title":"公司付款账户更新"},"CompanyPaymentAccountVO":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"publicAccountType":{"type":"string","enum":["BASIC_ACCOUNT","GENERAL_ACCOUNT","SPECIAL_ACCOUNT","TEMPORARY_ACCOUNT"],"title":"对公账户类型:1_基本户;2_一般户;3_专用账户;4_临时户"},"accountName":{"type":"string","title":"开户公司名称、支付宝昵称、微信号"},"accountNumber":{"type":"string","title":"银行账号、支付宝账号、微信账号"},"isPrimary":{"type":"boolean","title":"是否主付款账户:0_否;1_是"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;2_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"companyVO":{"$ref":"#/components/schemas/CompanyVO","title":"公司信息"}},"required":["accountCategory","accountId","accountName","accountNumber","accountType","companyId","isPrimary","status"],"title":"公司付款账户"},"SingleResponseCompanyPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CompanyPaymentAccountVO"}}},"ChannelUpdateCmd":{"type":"object","properties":{"domain":{"type":"string","title":"域名"},"logo":{"type":"string","title":"Logo"},"title":{"type":"string","title":"标题"},"subTitle":{"type":"string","title":"副标题"},"backgroundImageUrl":{"type":"string","title":"背景图片"},"technicalSupport":{"type":"string","title":"技术支持"},"channelId":{"type":"string","title":"渠道ID"}},"required":["channelId"],"title":"渠道更新"},"ChannelVO":{"type":"object","properties":{"channelId":{"type":"string","title":"渠道ID"},"domain":{"type":"string","title":"域名"},"logo":{"type":"string","title":"Logo"},"title":{"type":"string","title":"标题"},"subTitle":{"type":"string","title":"副标题"},"backgroundImageUrl":{"type":"string","title":"背景图片"},"technicalSupport":{"type":"string","title":"技术支持"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"wxMpId":{"type":"string","title":"微信公众号Id"},"wxOpenId":{"type":"string","title":"第三方应用Id"}},"required":["channelId"],"title":"渠道"},"SingleResponseChannelVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/ChannelVO"}}},"BoxSpecUpdateCmd":{"type":"object","properties":{"specId":{"type":"string","title":"纸箱规格ID"},"name":{"type":"string","title":"规格名称"},"sort":{"type":"number","title":"排序号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["name","sort","specId","status"],"title":"纸箱规格更新"},"BoxSpecVO":{"type":"object","properties":{"specId":{"type":"string","title":"规格ID"},"name":{"type":"string","title":"规格名称"},"sort":{"type":"number","title":"排序号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","sort","specId","status"],"title":"纸箱规格"},"SingleResponseBoxSpecVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/BoxSpecVO"}}},"BoxProductUpdateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"纸箱产品ID"},"name":{"type":"string","title":"纸箱名称"},"weight":{"type":"number","title":"重量(kg)"},"costPrice":{"type":"number","title":"成本价"},"salePrice":{"type":"number","title":"销售价"},"specId":{"type":"string","title":"规格ID"},"specName":{"type":"string","title":"规格名称"},"brandId":{"type":"string","title":"品牌ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","productId","status","type"],"title":"纸箱产品更新"},"BoxProductVO":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"纸箱名称"},"weight":{"type":"number","title":"重量(kg)"},"costPrice":{"type":"number","title":"成本价"},"salePrice":{"type":"number","title":"销售价"},"specId":{"type":"string","title":"规格ID"},"specName":{"type":"string","title":"规格名称"},"brandId":{"type":"string","title":"品牌ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["brandId","costPrice","name","productId","salePrice","specId","specName","status","type","weight"],"title":"纸箱产品"},"SingleResponseBoxProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/BoxProductVO"}}},"BoxBrandUpdateCmd":{"type":"object","properties":{"brandId":{"type":"string","title":"纸箱品牌ID"},"name":{"type":"string","title":"品牌名称"},"image":{"type":"string","title":"品牌图片URL"},"specIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"纸箱规格ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","status","type"],"title":"纸箱品牌更新"},"BoxBrandVO":{"type":"object","properties":{"brandId":{"type":"string","title":"品牌ID"},"name":{"type":"string","title":"品牌名称"},"image":{"type":"string","title":"品牌图片URL"},"specIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"纸箱规格ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"boxProductVOList":{"type":"array","items":{"$ref":"#/components/schemas/BoxProductVO"},"title":"纸箱产品列表"},"boxSpecVOList":{"type":"array","items":{"$ref":"#/components/schemas/BoxSpecVO"},"title":"纸箱规格列表"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["brandId","name","status","type"],"title":"纸箱品牌"},"SingleResponseBoxBrandVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/BoxBrandVO"}}},"AuditUpdateCmd":{"type":"object","properties":{"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"auditId":{"type":"string","title":"审核Id"},"subjectId":{"type":"string","title":"资源Id"},"subjectType":{"type":"string","enum":["PURCHASE_ORDER"],"title":"资源类型"},"state":{"type":"string","enum":["WAITING_AUDIT","AUDITING","AUDIT_SUCCESS","AUDIT_REJECTED","AUDIT_CANCEL"],"title":"审核状态: 1_待审核;2_审核中;3_审核通过;4_审核驳回;5_审核撤回"},"type":{"type":"string","enum":["REVIEWER_AUDIT","BOSS_AUDIT"],"title":"审核类型:1_审核员审核;2_老板审核"},"auditReason":{"type":"string","title":"驳回原因"},"auditAt":{"type":"string","format":"date-time","title":"审核时间"},"auditBy":{"type":"string","title":"审核人ID"},"auditByName":{"type":"string","title":"审核人名称"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["auditId","createdBy","subjectId","subjectType","type"],"title":"审核更新"},"AuditVO":{"type":"object","properties":{"auditId":{"type":"string","title":"审核Id"},"subjectId":{"type":"string","title":"资源Id"},"subjectType":{"type":"string","enum":["PURCHASE_ORDER"],"title":"资源类型"},"state":{"type":"string","enum":["WAITING_AUDIT","AUDITING","AUDIT_SUCCESS","AUDIT_REJECTED","AUDIT_CANCEL"],"title":"审核状态: 1_待审核;2_审核中;3_审核通过;4_审核驳回;5_审核撤回"},"type":{"type":"string","enum":["REVIEWER_AUDIT","BOSS_AUDIT"],"title":"审核类型:1_审核员审核;2_老板审核"},"auditReason":{"type":"string","title":"驳回原因"},"auditAt":{"type":"string","format":"date-time","title":"审核时间"},"auditBy":{"type":"string","title":"审核人ID"},"auditByName":{"type":"string","title":"审核人名称"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购单信息"}},"required":["auditId","createdBy","subjectId","subjectType","type"],"title":"审核"},"SingleResponseAuditVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/AuditVO"}}},"AgreementUpdateCmd":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议ID"},"scene":{"type":"array","items":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"]},"title":"使用场景"},"title":{"type":"string","title":"协议标题"},"subTitle":{"type":"string","title":"副标题"},"content":{"type":"string","title":"协议内容"}},"required":["agreementId"],"title":"协议更新"},"AgreementVO":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议id"},"scene":{"type":"array","items":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"]},"title":"使用场景"},"title":{"type":"string","title":"协议标题"},"subTitle":{"type":"string","title":"副标题"},"content":{"type":"string","title":"协议内容"}},"required":["agreementId"],"title":"协议"},"SingleResponseAgreementVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/AgreementVO"}}},"OrderShipGenerateDocumentCmd":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"shippingAddress":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"}},"required":["orderShipId"],"title":"发货单生成单据"},"ProductDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"产品拖拽"},"DealerDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"经销商拖拽"},"CostDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"费用项目拖拽"},"CostItemDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"费用项目拖拽"},"BoxProductDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"纸箱产品拖拽"},"BoxBrandDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"纸箱品牌拖拽"},"OrderWithdrawReviewCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"}},"required":["auditId","orderId"],"title":"采购订单撤回提审(录入员撤回提审)"},"RoleUpdateCmd":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"slug":{"type":"string","title":"角色标识"},"name":{"type":"string","title":"角色名称"},"type":{"type":"string","title":"角色类型"},"description":{"type":"string","title":"角色详情"},"menuId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色id"},"roleId":{"type":"string","title":"角色ID"}},"required":["menuId","name","platformId","roleId","slug","type"],"title":"角色新增"},"RoleVO":{"type":"object","properties":{"roleId":{"type":"string","title":"角色id"},"slug":{"type":"string","title":"标识"},"name":{"type":"string","title":"名称"},"type":{"type":"string","title":"类型"},"description":{"type":"string","title":"描述"},"platformId":{"type":"string","title":"平台id"},"platformVO":{"$ref":"#/components/schemas/PlatformVO","title":"平台"},"permissionId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"权限列表"},"menuId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"菜单列表"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["createdAt","menuId","name","permissionId","platformId","roleId","slug","type"],"title":"角色"},"SingleResponseRoleVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/RoleVO"}}},"PermissionUpdateCmd":{"type":"object","properties":{"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"},"permissionId":{"type":"string","title":"权限Id"}},"required":["name","permissionId","slug"],"title":"权限更新"},"PermissionVO":{"type":"object","properties":{"permissionId":{"type":"string","title":"权限Id"},"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"}},"required":["name","permissionId","slug"],"title":"权限"},"SingleResponsePermissionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PermissionVO"}}},"UserRoleUpdateCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"},"roleIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色ID"},"cover":{"type":"boolean","title":"是否覆盖"}},"required":["cover","userId"],"title":"用户角色更新"},"OrderSubmitReviewCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"}},"required":["orderId"],"title":"采购订单提审(录入员提审)"},"OrderStep3Cmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"foreman":{"type":"string","title":"工头"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单项目信息"}},"required":["orderCostItemList","orderCostList","orderId","orderPackageList"],"title":"采购订单第三步:人工和辅料等费用信息保存"},"OrderStep2Cmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"}},"required":["orderId","orderSupplierList"],"title":"采购订单第二步:供应商信息保存"},"OrderStep1Cmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"}},"required":["orderDealer","orderVehicle"],"title":"采购订单第一步:车辆信息和经销商信息保存"},"EmployeeRestPasswordCmd":{"type":"object","properties":{"password":{"type":"string","pattern":"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$","title":"新密码"},"userId":{"type":"string","title":"用户id"}},"required":["password","userId"],"title":"员工信息更新"},"OrderRejectFinalCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"},"rejectReason":{"type":"string","title":"驳回原因"}},"required":["auditId","orderId","rejectReason"],"title":"采购订单驳回审批(老板驳回审批)"},"OrderRejectApproveCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"},"rejectReason":{"type":"string","title":"审核原因"}},"required":["auditId","orderId","rejectReason"],"title":"采购订单驳回审核(审核员驳回审核)"},"PaymentTaskPayCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"paidAmount":{"type":"number","title":"付款金额"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","paidAmount","paidAt","paymentTaskId"],"title":"付款任务付款"},"OrderCostPayCmd":{"type":"object","properties":{"orderCostId":{"type":"string","title":"费用ID"},"paidAmount":{"type":"number","title":"付款金额"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","orderCostId","paidAmount","paidAt"],"title":"费用付款"},"OrderFinalApproveCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"}},"required":["auditId","orderId"],"title":"采购订单审批(老板审批)"},"VehicleExtractionCmd":{"type":"object","properties":{"message":{"type":"string","title":"消息内容"},"dealerNames":{"type":"string","title":"经销商信息"}},"required":["dealerNames","message"],"title":"车辆信息抽取"},"SingleResponseVehicleExtractionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/VehicleExtractionVO"}}},"VehicleExtractionVO":{"type":"object","properties":{"plate":{"type":"string","title":"车牌"},"driver":{"type":"string","title":"司机"},"phone":{"type":"string","title":"手机"},"origin":{"type":"string","title":"出发地"},"destination":{"type":"string","title":"目的地"},"price":{"type":"number","title":"价格"},"dealerName":{"type":"string","title":"经销商"},"dealerId":{"type":"string","title":"经销商ID"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"openStrawCurtain":{"type":"boolean","title":"是否开启草帘"},"strawCurtainPrice":{"type":"number","title":"草帘价格"}},"required":["dealerId"],"title":"车辆信息抽取"},"UserEnableCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户启用"},"MenuDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"菜单拖拽"},"UserDisableCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户封禁"},"EmployeeDisableCmd":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"}},"required":["employeeId"],"title":"员工封禁"},"RoleDestroyCmd":{"type":"object","properties":{"roleId":{"type":"string","title":"角色ID"}},"title":"角色新增"},"PermissionDestroyCmd":{"type":"object","properties":{"permissionId":{"type":"string","title":"权限Id"}},"required":["permissionId"],"title":"权限删除"},"UserCreateCmd":{"type":"object","properties":{"name":{"type":"string","title":"会员名称"},"nickname":{"type":"string","title":"会员昵称"},"avatar":{"type":"string","title":"头像"},"phone":{"type":"string","title":"会员手机号"},"birthday":{"type":"string","title":"会员生日"},"gender":{"type":"integer","format":"int32","title":"会员性别"},"cardType":{"type":"integer","format":"int32","title":"会员卡号生成方式:1 系统生成 2 自定义"},"remark":{"type":"string","title":"备注"},"labelId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"客户标签"}},"required":["name","phone"],"title":"用户更新命令"},"SupplierCreateCmd":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"wechatQr":{"type":"string","title":"微信收款码URL"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"dealerId":{"type":"integer","format":"int64","title":"经销商ID"}},"required":["bankCard","bankName","name","payeeName","phone","status","supplierId","type"],"title":"供应商创建"},"SupplierInvoiceCreateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FARMER"],"title":"瓜农发票类型:1_瓜农"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"supplierName":{"type":"string","title":"瓜农发票开具人名称"},"orderSupplierInvoiceList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierInvoice"},"title":"代开发票人的信息"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票图片(支持多张)"}},"required":["supplierId","supplierName"],"title":"瓜农发票创建"},"RoleCreateCmd":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"slug":{"type":"string","title":"角色标识"},"name":{"type":"string","title":"角色名称"},"type":{"type":"string","title":"角色类型"},"description":{"type":"string","title":"角色详情"},"menuId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色id"}},"required":["menuId","name","platformId","slug","type"],"title":"角色新增"},"ProductCreateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"产品名称"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联成本费用id"},"costTemplate":{"type":"string","title":"成本模板"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","productId","sort","status"],"title":"产品表创建"},"PlatformCreateCmd":{"type":"object","properties":{"platformName":{"type":"string","title":"平台名称"},"homePage":{"type":"string","title":"首页"}},"required":["homePage","platformName"],"title":"平台创建"},"PermissionCreateCmd":{"type":"object","properties":{"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"}},"required":["name","slug"],"title":"权限创建"},"PaymentTaskCreateCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"targetId":{"type":"string","title":"付款任务对象ID"},"totalAmount":{"type":"number","title":"付款总金额"},"paidAmount":{"type":"number","title":"已付金额"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"orderCount":{"type":"integer","format":"int32","title":"订单数量"},"remark":{"type":"string","title":"备注"},"orderSupplierVOList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"},"title":"订单供应商信息"}},"required":["orderCount","paidAmount","state","targetId","taskName","taskType","totalAmount"],"title":"付款任务创建"},"PaymentRecordCreateCmd":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"targetId":{"type":"string","title":"付款对象ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidAmount":{"type":"number","title":"付款金额"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","paidAmount","paidAt","paidState","paymentRecordId","paymentRecordSn","targetId","targetType"],"title":"付款记录创建"},"OrderCreateCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"remark":{"type":"string","title":"备注"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"}},"required":["orderCostItemList","orderCostList","orderDealer","orderPackageList","orderSupplierList","orderVehicle"],"title":"采购订单创建"},"OrderShipCreateCmd":{"type":"object","properties":{"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"},"orderSn":{"type":"string","title":"发货单编号"},"shippingAddress":{"type":"string","title":"发货地址"},"receivingAddress":{"type":"string","title":"收货地址"},"shippingDate":{"type":"string","format":"date","title":"发货日期"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"farmerInfo":{"type":"string","title":"瓜农姓名逗号隔开"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"}},"required":["createdBy","orderId","orderShipId"],"title":"发货单创建"},"OrderCostCreateCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"费用Id"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"principal":{"type":"string","title":"负责人"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联项目id"},"isPaid":{"type":"boolean","title":"是否付款"}},"required":["costId","count","name","price","type","unit"],"title":"订单成本费用创建"},"SingleResponseOrderCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderCostVO"}}},"MenuCreateCmd":{"type":"object","properties":{"path":{"type":"string","title":"路径"},"component":{"type":"string","title":"组件"},"name":{"type":"string","title":"菜单名称"},"pid":{"type":"string","title":"上级菜单Id"},"type":{"type":"string","title":"菜单类型"},"platformId":{"type":"string","title":"平台id"},"roleId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色Id"},"hideInMenu":{"type":"boolean","title":"是否隐藏"},"permissionId":{"type":"integer","format":"int64","title":"权限Id"},"icon":{"type":"string","title":"菜单图标"},"iconColor":{"type":"string","title":"图标颜色"},"bgColorClass":{"type":"string","title":"背景颜色类名"}},"required":["component","name","path","platformId","type"],"title":"创建菜单请求"},"MaterialCreateCmd":{"type":"object","properties":{"name":{"type":"string","title":"素材内容标题"},"categoryId":{"type":"string","title":"分类ID"},"path":{"type":"string","title":"素材内容路劲"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"}},"title":"创建素材内容"},"CategoryCreateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"example":"视频","title":"分类类型"},"name":{"type":"string","example":"名称","title":"分类名称"},"pid":{"type":"string","example":"名称","title":"上级分类id"},"sort":{"type":"integer","format":"int32","example":"排序","title":"排序"}},"title":"分类创建"},"GiftBoxCreateCmd":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"costPrice":{"type":"number","title":"成本价"},"weight":{"type":"number","title":"重量(kg)"},"salePrice":{"type":"number","title":"售价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["boxId","costPrice","name","salePrice","status","weight"],"title":"礼盒创建"},"ExpenseRecordCreateCmd":{"type":"object","properties":{"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"},"expenseCostList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseCost"},"title":"花销费用明细"},"expenseProvisionList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseProvision"},"title":"花销计提明细"}},"title":"花销统计记录创建"},"EmployeeCreateCmd":{"type":"object","properties":{"name":{"type":"string","minLength":1,"title":"姓名"},"number":{"type":"string","minLength":1,"title":"工号"},"gender":{"type":"integer","format":"int32","title":"性别"},"phone":{"type":"string","minLength":1,"pattern":"^(1[3-9])\\d{9}$","title":"手机号"},"remark":{"type":"string","maxLength":200,"minLength":0,"title":"备注"},"status":{"type":"boolean","title":"状态"},"username":{"type":"string","example":18367831980,"maxLength":20,"minLength":4,"title":"登录账号"},"password":{"type":"string","example":18367831980,"maxLength":20,"minLength":8,"pattern":"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$","title":"登录密码"},"roleId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色ID"}},"required":["gender","name","number","password","phone","roleId","status","username"],"title":"员工信息创建"},"DictionaryCreateCmd":{"type":"object","properties":{"id":{"type":"integer","format":"int32","title":"自增id"},"code":{"type":"string","title":"代码"},"name":{"type":"string","title":"字典名称"},"parentId":{"type":"string","title":"上级id"},"sortNo":{"type":"integer","format":"int32","title":"排序号"},"type":{"type":"string","title":"类型"}},"title":"字典创建"},"DealerCreateCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"receivable":{"type":"number","title":"应收金额"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["dealerId","dealerType","shortName","status"],"title":"经销商表创建"},"DealerWarehouseCreateCmd":{"type":"object","properties":{"warehouseId":{"type":"string","title":"仓库ID"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商账户ID"},"name":{"type":"string","title":"仓库名称"},"address":{"type":"string","title":"仓库地址"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"receiverName":{"type":"string","title":"收货人姓名"},"receiverPhone":{"type":"string","title":"收货人电话"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"}},"required":["accountId","address","dealerId","name","status","warehouseId"],"title":"经销商仓库创建"},"DealerRebateCustomerCreateCmd":{"type":"object","properties":{"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式:1_按净重计算;2_固定金额;3_不固定"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"}},"required":["customerId","dealerId","name","status"],"title":"经销商返点客户创建"},"DealerPaymentAccountCreateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"dealerId":{"type":"string","title":"经销商ID"},"companyName":{"type":"string","title":"公司名称"},"taxNumber":{"type":"string","title":"税号"},"bankAccount":{"type":"string","title":"银行账号"},"companyAddress":{"type":"string","title":"单位地址"},"phone":{"type":"string","title":"电话"},"openingBank":{"type":"string","title":"开户行"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["accountId","bankAccount","companyName","dealerId","taxNumber"],"title":"经销商付款账户创建"},"DealerAccountRecordCreateCmd":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"应收账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"beforeAmount":{"type":"number","title":"变动前金额"},"amount":{"type":"number","title":"变动金额"},"afterAmount":{"type":"number","title":"变动后金额"},"remark":{"type":"string","title":"备注"}},"required":["afterAmount","amount","beforeAmount","dealerAccountRecordId","dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细创建"},"CostCreateCmd":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"remark":{"type":"string","title":"备注"},"isDefault":{"type":"boolean","title":"是否默认"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"成本项ID"}},"required":["belong","costId","name","sort","status","type"],"title":"费用创建"},"CostItemCreateCmd":{"type":"object","properties":{"costItemId":{"type":"string","title":"项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;"},"costId":{"type":"integer","format":"int64","title":"费用ID"},"name":{"type":"string","title":"项目名称"},"unit":{"type":"string","title":"单位"},"price":{"type":"number","title":"单价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["costId","costItemId","name","price","rule","status","type","unit"],"title":"费用项目创建"},"CompanyCreateCmd":{"type":"object","properties":{"companyId":{"type":"string","title":"公司ID"},"logo":{"type":"string","title":"公司logo"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["address","companyId","contactPerson","contactPhone","fullName","shortName","status","taxNumber"],"title":"公司管理创建"},"CompanyPaymentAccountCreateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"publicAccountType":{"type":"string","enum":["BASIC_ACCOUNT","GENERAL_ACCOUNT","SPECIAL_ACCOUNT","TEMPORARY_ACCOUNT"],"title":"对公账户类型:1_基本户;2_一般户;3_专用账户;4_临时户"},"accountName":{"type":"string","title":"开户公司名称、支付宝昵称、微信号"},"accountNumber":{"type":"string","title":"银行账号、支付宝账号、微信账号"},"isPrimary":{"type":"boolean","title":"是否主付款账户:0_否;1_是"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;2_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["accountCategory","accountId","accountName","accountNumber","accountType","companyId","isPrimary","status"],"title":"公司付款账户创建"},"ChannelCreateCmd":{"type":"object","properties":{"domain":{"type":"string","title":"域名"},"logo":{"type":"string","title":"Logo"},"title":{"type":"string","title":"标题"},"subTitle":{"type":"string","title":"副标题"},"backgroundImageUrl":{"type":"string","title":"背景图片"},"technicalSupport":{"type":"string","title":"技术支持"}},"title":"渠道新增"},"BoxSpecCreateCmd":{"type":"object","properties":{"specId":{"type":"string","title":"规格ID"},"name":{"type":"string","title":"规格名称"},"sort":{"type":"number","title":"排序号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["name","sort","specId","status"],"title":"纸箱规格创建"},"BoxProductCreateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"纸箱名称"},"weight":{"type":"number","title":"重量(kg)"},"costPrice":{"type":"number","title":"成本价"},"salePrice":{"type":"number","title":"销售价"},"specId":{"type":"string","title":"规格ID"},"specName":{"type":"string","title":"规格名称"},"brandId":{"type":"string","title":"品牌ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","productId","status","type"],"title":"纸箱产品创建"},"BoxBrandCreateCmd":{"type":"object","properties":{"brandId":{"type":"string","title":"品牌ID"},"name":{"type":"string","title":"品牌名称"},"image":{"type":"string","title":"品牌图片URL"},"specIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"纸箱规格ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","status","type"],"title":"纸箱品牌创建"},"AgreementCreateCmd":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议id"},"scene":{"type":"array","items":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"]},"title":"使用场景"},"title":{"type":"string","title":"协议标题"},"subTitle":{"type":"string","title":"副标题"},"content":{"type":"string","title":"协议内容"}},"required":["agreementId"],"title":"协议创建"},"MaterialBatchAddCmd":{"type":"object","properties":{"materialCreateCmdList":{"type":"array","items":{"$ref":"#/components/schemas/MaterialCreateCmd"},"title":"创建素材内容"}},"title":"创建素材内容"},"MultiResponseMaterialVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/MaterialVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"OrderApproveCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"remark":{"type":"string","title":"备注"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"auditId":{"type":"string","title":"审核ID"},"draft":{"type":"boolean","title":"是否是暂存"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderRebate":{"$ref":"#/components/schemas/OrderRebate","title":"返点信息"},"orderShipList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShip"},"title":"发货单信息"}},"required":["auditId","draft","orderCompany","orderCostItemList","orderCostList","orderDealer","orderId","orderPackageList","orderRebate","orderShipList","orderSupplierList","orderVehicle"],"title":"采购订单审核(审核员审核)"},"MenuTreeQry":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"pid":{"type":"string","title":"父级id"}},"title":"菜单请求"},"MultiResponseTreeLong":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/TreeLong"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"TreeLong":{"type":"object","additionalProperties":{},"properties":{"name":{"type":"object","properties":{"empty":{"type":"boolean"}}},"id":{"type":"integer","format":"int64"},"parentId":{"type":"integer","format":"int64"},"config":{"$ref":"#/components/schemas/TreeNodeConfig"},"weight":{},"empty":{"type":"boolean"}}},"TreeNodeConfig":{"type":"object","properties":{"idKey":{"type":"string"},"parentIdKey":{"type":"string"},"weightKey":{"type":"string"},"nameKey":{"type":"string"},"childrenKey":{"type":"string"},"deep":{"type":"integer","format":"int32"}}},"CategoryTreeQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"typeList":{"type":"array","items":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"]},"title":"分类类型"},"name":{"type":"string","title":"分类名称"}},"title":"分类"},"PaymentTaskStatisticsQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"taskType":{"type":"integer","format":"int32","description":"按任务类型筛选统计","title":"任务类型"}},"title":"付款任务统计查询"},"PaymentTaskStatisticsVO":{"type":"object","properties":{"pendingCount":{"type":"integer","format":"int64","description":"状态为待付款的数量","title":"待付款数量"},"partialCount":{"type":"integer","format":"int64","description":"状态为部分付款的数量","title":"部分付款数量"},"completedCount":{"type":"integer","format":"int64","description":"状态为已完成的数量","title":"已完成数量"},"cancelledCount":{"type":"integer","format":"int64","description":"状态为已取消的数量","title":"已取消数量"},"totalCount":{"type":"integer","format":"int64","description":"所有状态的总数量","title":"总数量"}},"title":"付款任务统计响应"},"SingleResponsePaymentTaskStatisticsVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PaymentTaskStatisticsVO"}}},"UserShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"查询用户请求"},"SupplierShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"}},"title":"供应商查询"},"SupplierInvoiceShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"title":"瓜农发票查询"},"SettingShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"settingKey":{"type":"string","enum":["WX_MA_CONFIG","WX_MA_MESSAGE_PUSH_CONFIG","WX_MA_SUBSCRIBE_MESSAGE_CONFIG","WX_MA_CODE_UPLOAD_CONFIG","WX_PAY_CONFIG","TENCENT_MAP_CONFIG","SMS_CONFIG","VIRTUAL_PHONE_CONFIG","WX_MP_CONFIG","WX_MP_MESSAGE_PUSH_CONFIG","ALI_PAY_CONFIG","CHARGING_PILE_PURCHASE_CONFIG","CUSTOM_THEME_CONFIG","CUSTOM_MENU_CONFIG","WX_CP_NOTIFY_CONFIG","SMART_RECOGNITION_PROMPT"],"title":"系统设置项key"}},"required":["settingKey"],"title":"设置查询"},"RoleShowQry":{"type":"object","properties":{"roleId":{"type":"string","title":"角色编号"}},"title":"角色查询"},"ProductShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"产品表ID"}},"title":"产品表查询"},"PlatformShowQry":{"type":"object","properties":{"platformId":{"type":"string","title":"平台ID"}},"required":["platformId"],"title":"平台查询"},"PermissionShowQry":{"type":"object","properties":{"permissionId":{"type":"string","title":"权限Id"}},"required":["permissionId"],"title":"权限查询"},"PaymentTaskShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentTaskId":{"type":"string","title":"付款任务ID"}},"title":"付款任务查询"},"PaymentRecordShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentRecordId":{"type":"string","title":"付款记录ID"}},"title":"付款记录查询"},"OrderShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"采购订单ID"},"orderShipId":{"type":"string","title":"采购订单发货ID"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"}},"title":"采购订单查询"},"OrderShipShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"}},"title":"发货单查询"},"OrderCostShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderCostId":{"type":"string","title":"费用ID"}},"required":["orderCostId"],"title":"订单成本项详情查询"},"MenuShowQry":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单Id"}},"required":["menuId"],"title":"菜单详情"},"MaterialShowQry":{"type":"object","properties":{"materialId":{"type":"string","title":"素材内容ID"}},"required":["materialId"],"title":"素材内容请求"},"CategoryShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"categoryId":{"type":"string","title":"分类Id"}},"required":["categoryId"],"title":"分类"},"GiftBoxShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"boxId":{"type":"string","title":"礼盒ID"}},"title":"礼盒查询"},"ExpenseRecordShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"},"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"}},"title":"花销统计记录查询"},"EmployeeShowQry":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"},"userId":{"type":"string","title":"用户ID"},"platformId":{"type":"string","title":"平台ID"}},"title":"员工信息查询"},"DictionaryShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dictionaryId":{"type":"string","title":"字典ID"}},"title":"字典查询"},"DealerShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商表ID"}},"title":"经销商表查询"},"DealerWarehouseShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"warehouseId":{"type":"string","title":"经销商仓库ID"},"accountId":{"type":"string","title":"经销商付款账户ID"},"dealerId":{"type":"string","title":"经销商ID"}},"title":"经销商仓库查询"},"DealerRebateCustomerShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"customerId":{"type":"string","title":"经销商返点客户ID"},"dealerId":{"type":"string","title":"经销商ID"}},"title":"经销商返点客户查询"},"DealerPaymentAccountShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"经销商付款账户ID"},"dealerId":{"type":"string","title":"经销商ID"}},"title":"经销商付款账户查询"},"DealerAccountRecordShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"}},"title":"经销商账款明细查询"},"CostShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costId":{"type":"string","title":"费用ID"}},"title":"费用查询"},"CostItemShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costItemId":{"type":"string","title":"费用项目ID"}},"title":"费用项目查询"},"CompanyShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"companyId":{"type":"string","title":"公司管理ID"}},"title":"公司管理查询"},"CompanyPaymentAccountShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"公司付款账户ID"}},"title":"公司付款账户查询"},"ChannelShowQry":{"type":"object","properties":{"channelId":{"type":"string","title":"渠道编号"},"domain":{"type":"string","title":"域名"}},"required":["channelId"],"title":"渠道查询"},"BoxSpecShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"specId":{"type":"string","title":"纸箱规格ID"}},"title":"纸箱规格查询"},"BoxProductShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"纸箱产品ID"}},"title":"纸箱产品查询"},"BoxBrandShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"brandId":{"type":"string","title":"纸箱品牌ID"}},"title":"纸箱品牌查询"},"AuditShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"auditId":{"type":"string","title":"审核ID"}},"title":"审核查询"},"AgreementShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"agreementId":{"type":"string","title":"协议ID"}},"title":"协议查询"},"UserPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"keyword":{"type":"string","title":"关键词"},"cardNo":{"type":"string","title":"会员卡号"},"phone":{"type":"string","title":"会员手机号码"},"name":{"type":"string","title":"会员名称"},"nickname":{"type":"string","title":"会员昵称"},"createdAt":{"type":"array","items":{"type":"string","format":"date-time"},"title":"查询创建时间"},"isBindPhone":{"type":"boolean","title":"是否绑定手机号码"},"gender":{"type":"integer","format":"int32","title":"性别"},"bindPhoneAt":{"type":"array","items":{"type":"string","format":"date-time"},"title":"查询绑定手机号码时间"},"state":{"type":"array","items":{"type":"string","enum":["ENABLE","DISABLE"]},"title":"状态"},"isAdmin":{"type":"boolean","title":"是否是管理员"},"userIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"会员id列表"},"excludeUserIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"排除的用户id列表"},"communityId":{"type":"integer","format":"int64","title":"小区id"},"offset":{"type":"integer","format":"int32"}},"title":"查询用户分页请求"},"PageResponseUserVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/UserVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"SupplierPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"供应商名称"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankCard":{"type":"string","title":"银行卡号"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"offset":{"type":"integer","format":"int32"}},"title":"供应商分页查询"},"PageResponseSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"SupplierInvoicePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"},"invoiceSn":{"type":"string","title":"瓜农发票编号"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"offset":{"type":"integer","format":"int32"}},"title":"瓜农发票分页查询"},"PageResponseSupplierInvoiceVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierInvoiceVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"RolePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"name":{"type":"string","title":"角色名称"},"slug":{"type":"string","title":"角色标识"},"type":{"type":"string","title":"角色类型"},"roleId":{"type":"string","title":"角色编号"},"platformId":{"type":"string","title":"平台id"},"offset":{"type":"integer","format":"int32"}},"title":"角色分页查询"},"PageResponseRoleVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/RoleVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"ProductPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"产品表ID"},"offset":{"type":"integer","format":"int32"}},"title":"产品表分页查询"},"PageResponseProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PlatformPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"platformId":{"type":"string","title":"平台ID"},"offset":{"type":"integer","format":"int32"}},"required":["platformId"],"title":"平台分页查询"},"PageResponsePlatformVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PlatformVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PermissionPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"},"offset":{"type":"integer","format":"int32"}},"title":"权限分页查询"},"PageResponsePermissionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PermissionVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PaymentTaskPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"付款任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"paymentTaskSn":{"type":"string","title":"付款编码"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"supplierId":{"type":"integer","format":"int64","title":"供应商ID"},"offset":{"type":"integer","format":"int32"}},"title":"付款任务分页查询"},"PageResponsePaymentTaskVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentTaskVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PaymentRecordPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentRecordId":{"type":"string","title":"付款记录ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"companyId":{"type":"string","title":"付款公司ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"supplierId":{"type":"string","title":"供应商ID"},"costId":{"type":"string","title":"成本项ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"offset":{"type":"integer","format":"int32"}},"title":"付款记录分页查询"},"PageResponsePaymentRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"采购订单ID"},"vehicleNo":{"type":"string","title":"车辆编号"},"orderSn":{"type":"string","title":"采购订单编号"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"supplierName":{"type":"string","title":"供应商名称"},"dealerId":{"type":"string","title":"经销商ID"},"supplierId":{"type":"string","title":"供应商ID"},"offset":{"type":"integer","format":"int32"}},"title":"采购订单分页查询"},"PageResponseOrderVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderSupplierPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderSupplierId":{"type":"string","title":"订单供应商ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商id"},"deliveryTime":{"type":"array","items":{"type":"string","format":"date-time"},"title":"发货日期"},"invoiceUpload":{"type":"boolean","title":"瓜农发票上传"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"poType":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"订单类型"},"isPaid":{"type":"boolean","title":"是否支付"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"invoiceId":{"type":"string","title":"发票ID"},"offset":{"type":"integer","format":"int32"}},"title":"订单供应商分页查询"},"PageResponseOrderSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderShipPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderShipId":{"type":"string","title":"发货单ID"},"vehicleNo":{"type":"string","title":"车辆编号"},"orderSn":{"type":"string","title":"采购订单编号"},"state":{"type":"string","enum":["DRAFT","WAIT_SHIPMENT","WAIT_PAYMENT","WAIT_CHANGE","PARTIAL_PAYMENT","FULL_PAYMENT","REJECT_FINISH","FINISH"],"title":"发货单状态:0_草稿;1_待发货;2_待回款;3_待改签;4_部分回款;5_已回款;6_拒收完结;7_已完结;"},"type":{"type":"string","enum":["PURCHASE_SHIP","TRANSFER_SHIP","CHANGE_SHIP","RETURN_SHIP"],"title":"发货单类型:1_采购发货;2_调货发货;3_改签发货;4_退货发货"},"supplierName":{"type":"string","title":"供应商名称"},"dealerId":{"type":"string","title":"经销商ID"},"offset":{"type":"integer","format":"int32"}},"title":"发货单分页查询"},"PageResponseOrderShipVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderRebatePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"订单ID"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"poType":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"订单类型"},"isPaid":{"type":"boolean","title":"是否支付"},"offset":{"type":"integer","format":"int32"}},"title":"订单返点分页查询"},"OrderRebateVO":{"type":"object","properties":{"orderRebateId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT"],"title":"返点计算方式:1_按净重计算;2_固定金额;"},"netWeight":{"type":"number","title":"返点净重"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单信息"},"isPaid":{"type":"boolean","title":"是否付款"}},"required":["createdAt","orderCompany","orderVO"]},"PageResponseOrderRebateVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderRebateVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderCostPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商id"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"poType":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"订单类型"},"belongs":{"type":"array","items":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"]},"title":"所属方"},"isPaid":{"type":"boolean","title":"是否支付"},"offset":{"type":"integer","format":"int32"}},"title":"订单成本分页查询"},"PageResponseOrderCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"MaterialPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"title":{"type":"string","title":"素材内容标题"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"},"materialId":{"type":"string","title":"素材内容ID"},"categoryId":{"type":"string","title":"分类ID"},"offset":{"type":"integer","format":"int32"}},"title":"素材内容分页请求"},"PageResponseMaterialVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/MaterialVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"GiftBoxPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"offset":{"type":"integer","format":"int32"}},"title":"礼盒分页查询"},"PageResponseGiftBoxVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/GiftBoxVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"EmployeePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"employeeId":{"type":"string","title":"员工信息ID"},"name":{"type":"string","title":"姓名"},"number":{"type":"string","title":"工号"},"phone":{"type":"string","title":"手机号"},"status":{"type":"integer","format":"int32","title":"状态"},"offset":{"type":"integer","format":"int32"}},"required":["employeeId","name","number","phone"],"title":"员工信息分页查询"},"PageResponseEmployeeVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DictionaryPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dictionaryId":{"type":"string","title":"字典ID"},"name":{"type":"string","title":"字典名称"},"type":{"type":"string","title":"字典类型"},"offset":{"type":"integer","format":"int32"}},"title":"字典分页查询"},"PageResponseDictionaryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DictionaryVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"offset":{"type":"integer","format":"int32"}},"title":"经销商表分页查询"},"PageResponseDealerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerWarehousePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商付款账户ID"},"offset":{"type":"integer","format":"int32"}},"title":"经销商仓库分页查询"},"PageResponseDealerWarehouseVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerWarehouseVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerRebateCustomerPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式"},"offset":{"type":"integer","format":"int32"}},"title":"经销商返点客户分页查询"},"PageResponseDealerRebateCustomerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerRebateCustomerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerPaymentAccountPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"offset":{"type":"integer","format":"int32"}},"title":"经销商付款账户分页查询"},"PageResponseDealerPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerAccountRecordPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"},"offset":{"type":"integer","format":"int32"}},"title":"经销商账款明细分页查询"},"PageResponseDealerAccountRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerAccountRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CostPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"offset":{"type":"integer","format":"int32"}},"title":"费用分页查询"},"PageResponseCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CostItemPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costItemId":{"type":"string","title":"费用项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"name":{"type":"string","title":"项目名称"},"offset":{"type":"integer","format":"int32"}},"title":"费用项目分页查询"},"PageResponseCostItemVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostItemVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CompanyPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"companyId":{"type":"string","title":"公司管理ID"},"shortName":{"type":"string","title":"公司名称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"offset":{"type":"integer","format":"int32"}},"title":"公司管理分页查询"},"PageResponseCompanyVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CompanyPaymentAccountPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"公司付款账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountName":{"type":"string","title":"付款账户名称"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"offset":{"type":"integer","format":"int32"}},"title":"公司付款账户分页查询"},"PageResponseCompanyPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"ChannelPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"domain":{"type":"string","title":"域名"},"offset":{"type":"integer","format":"int32"}},"title":"渠道分页查询"},"PageResponseChannelVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ChannelVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"BoxSpecPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"specId":{"type":"string","title":"纸箱规格ID"},"offset":{"type":"integer","format":"int32"}},"title":"纸箱规格分页查询"},"PageResponseBoxSpecVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxSpecVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"BoxProductPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"纸箱产品ID"},"name":{"type":"string","title":"纸箱产品名称"},"brandId":{"type":"string","title":"纸箱品牌ID"},"specId":{"type":"string","title":"规格ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"offset":{"type":"integer","format":"int32"}},"title":"纸箱产品分页查询"},"PageResponseBoxProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"BoxBrandPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"brandId":{"type":"string","title":"纸箱品牌ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"offset":{"type":"integer","format":"int32"}},"title":"纸箱品牌分页查询"},"PageResponseBoxBrandVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxBrandVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"AuditPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"auditId":{"type":"string","title":"审核ID"},"type":{"type":"string","enum":["REVIEWER_AUDIT","BOSS_AUDIT"],"title":"审核类型:1_报价审核员审核;2_老板审核"},"state":{"type":"string","enum":["WAITING_AUDIT","AUDITING","AUDIT_SUCCESS","AUDIT_REJECTED","AUDIT_CANCEL"],"title":"审核状态: 1_待审核;2_审核中;3_审核通过;4_审核驳回;5_审核撤回"},"subjectType":{"type":"string","enum":["PURCHASE_ORDER"],"title":"审核对象类型:1_采购单;"},"offset":{"type":"integer","format":"int32"}},"title":"审核分页查询"},"PageResponseAuditVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/AuditVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"AgreementPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"agreementId":{"type":"string","title":"协议ID"},"scene":{"type":"string","title":"协议类型"},"offset":{"type":"integer","format":"int32"}},"title":"协议分页查询"},"PageResponseAgreementVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/AgreementVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OssTokenVO":{"type":"object","properties":{"securityToken":{"type":"string"},"accessKeySecret":{"type":"string"},"accessKeyId":{"type":"string"},"domain":{"type":"string"},"bucket":{"type":"string"},"region":{"type":"string"}},"title":"商家响应"},"SingleResponseOssTokenVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OssTokenVO"}}},"UserListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"userIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"用户ID"},"name":{"type":"string","title":"用户名"}},"title":"查询用户请求"},"MultiResponseUserVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/UserVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"SupplierListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"供应商名称"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"}},"title":"供应商列表查询"},"MultiResponseSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"SupplierInvoiceListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"title":"瓜农发票列表查询"},"MultiResponseSupplierInvoiceVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierInvoiceVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"RoleListQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"name":{"type":"string","title":"角色名称"},"userId":{"type":"string","title":"用户Id"},"roleId":{"type":"string","title":"角色编号"},"roleIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"应用角色Id"},"platformId":{"type":"string","title":"平台Id"},"platformIdList":{"type":"string","title":"平台Id"},"type":{"type":"integer","format":"int32","title":"角色类型"},"offset":{"type":"integer","format":"int32"}},"title":"角色查询"},"MultiResponseRoleVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/RoleVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"ProductListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"产品表ID"}},"title":"产品表列表查询"},"MultiResponseProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PlatformListQry":{"title":"平台列表查询"},"MultiResponsePlatformVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PlatformVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PermissionListQry":{"title":"权限查询"},"MultiResponsePermissionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PermissionVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PaymentTaskListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentTaskId":{"type":"string","title":"付款任务ID"}},"title":"付款任务列表查询"},"MultiResponsePaymentTaskVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentTaskVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PaymentRecordListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentRecordId":{"type":"string","title":"付款记录ID"}},"title":"付款记录列表查询"},"MultiResponsePaymentRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"OrderListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"采购订单ID"},"dealerId":{"type":"string","title":"经销商ID"},"orderSn":{"type":"string","title":"采购订单编号"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"month":{"type":"string","title":"月份"}},"title":"采购订单列表查询"},"MultiResponseOrderVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"OrderShipListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderShipId":{"type":"string","title":"发货单ID"}},"title":"发货单列表查询"},"MultiResponseOrderShipVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"MenuListQry":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"pid":{"type":"string","title":"父级id"}},"title":"菜单请求"},"MultiResponseMenuVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/MenuVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"GiftBoxListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"boxId":{"type":"string","title":"礼盒ID"}},"title":"礼盒列表查询"},"MultiResponseGiftBoxVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/GiftBoxVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"ExpenseRecordListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"startDate":{"type":"string","title":"开始日期"},"endDate":{"type":"string","title":"结束日期"}},"title":"花销统计记录列表查询"},"MultiResponseExpenseRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"EmployeeListQry":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"}},"required":["employeeId"],"title":"员工信息列表查询"},"MultiResponseEmployeeVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DictionaryListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dictionaryId":{"type":"string","title":"字典ID"},"type":{"type":"string","title":"字典类型"}},"title":"字典列表查询"},"MultiResponseDictionaryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DictionaryVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商表ID"},"shortName":{"type":"string","title":"经销商简称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"]}},"title":"经销商表列表查询"},"MultiResponseDealerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerWarehouseListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商付款账户ID"},"name":{"type":"string","title":"仓库名称"}},"title":"经销商仓库列表查询"},"MultiResponseDealerWarehouseVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerWarehouseVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerRebateCustomerListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式"}},"title":"经销商返点客户列表查询"},"MultiResponseDealerRebateCustomerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerRebateCustomerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerPaymentAccountListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"keyword":{"type":"string","title":"关键词"}},"title":"经销商付款账户列表查询"},"MultiResponseDealerPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerAccountRecordListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"}},"title":"经销商账款明细列表查询"},"MultiResponseDealerAccountRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerAccountRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CostListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"}},"title":"费用列表查询"},"MultiResponseCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CostItemListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemId":{"type":"string","title":"费用项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"}},"title":"费用项目列表查询"},"MultiResponseCostItemVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostItemVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CompanyListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"companyId":{"type":"string","title":"公司管理ID"}},"title":"公司管理列表查询"},"MultiResponseCompanyVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CompanyPaymentAccountListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"公司付款账户ID"},"accountName":{"type":"string","title":"公司付款账户名称"},"companyName":{"type":"string","title":"公司名称"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"}},"title":"公司付款账户列表查询"},"MultiResponseCompanyPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"BoxSpecListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"specId":{"type":"string","title":"纸箱规格ID"}},"title":"纸箱规格列表查询"},"MultiResponseBoxSpecVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxSpecVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"BoxProductListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"纸箱产品ID"},"name":{"type":"string","title":"纸箱产品名称"},"brandId":{"type":"string","title":"纸箱品牌ID"},"specId":{"type":"string","title":"规格ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"title":"纸箱产品列表查询"},"MultiResponseBoxProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"BoxBrandListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"纸箱品牌状态"},"brandId":{"type":"string","title":"纸箱品牌ID"},"withProduct":{"type":"boolean","title":"是否包含纸箱产品"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"title":"纸箱品牌列表查询"},"MultiResponseBoxBrandVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxBrandVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"AgreementListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"agreementId":{"type":"string","title":"协议ID"},"scene":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"],"title":"协议类型"}},"title":"协议列表查询"},"MultiResponseAgreementVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/AgreementVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"LastVehicleNoQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"}},"required":["dealerId"],"title":"上一车车次号查询参数"},"SingleResponseString":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"string"}}},"OrderCountQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"}},"title":"采购订单数量查询"},"SingleResponseLong":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"integer","format":"int64"}}},"SupplierCheckQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商名称"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"offset":{"type":"integer","format":"int32"}},"title":"供应商检测"},"UserDestroyCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户删除命令"},"SupplierDestroyCmd":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"}},"required":["supplierId"],"title":"删除供应商"},"SupplierInvoiceDestroyCmd":{"type":"object","properties":{"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"required":["supplierInvoiceId"],"title":"删除发票"},"ProductDestroyCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品表ID"}},"required":["productId"],"title":"删除产品表"},"PlatformDestroyCmd":{"type":"object","properties":{"platformId":{"type":"string","title":"平台ID"}},"required":["platformId"],"title":"删除平台"},"PaymentTaskDestroyCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"}},"required":["paymentTaskId"],"title":"删除付款任务"},"PaymentRecordDestroyCmd":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"}},"required":["paymentRecordId"],"title":"删除付款记录"},"OrderDestroyCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"}},"required":["orderId"],"title":"删除采购订单"},"OrderShipDestroyCmd":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"}},"required":["orderShipId"],"title":"删除发货单"},"MenuDestroyCmd":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单Id"}},"required":["menuId"],"title":"菜单删除"},"MaterialDestroyCmd":{"type":"object","properties":{"materialId":{"type":"string","title":"素材Id"}},"required":["materialId"],"title":"素材删除"},"CategoryDestroyCmd":{"type":"object","properties":{"categoryId":{"type":"string","title":"分类Id"}},"required":["categoryId"],"title":"分类删除"},"GiftBoxDestroyCmd":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"}},"required":["boxId"],"title":"删除礼盒"},"EmployeeDestroyCmd":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"}},"required":["employeeId"],"title":"删除员工信息"},"DictionaryDestroyCmd":{"type":"object","properties":{"dictionaryId":{"type":"string","title":"字典ID"}},"required":["dictionaryId"],"title":"删除字典"},"DealerDestroyCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商表ID"}},"required":["dealerId"],"title":"删除经销商表"},"DealerWarehouseDestroyCmd":{"type":"object","properties":{"warehouseId":{"type":"string","title":"经销商仓库ID"}},"required":["warehouseId"],"title":"删除经销商仓库"},"DealerRebateCustomerDestroyCmd":{"type":"object","properties":{"customerId":{"type":"string","title":"经销商返点客户ID"}},"required":["customerId"],"title":"删除经销商返点客户"},"DealerPaymentAccountDestroyCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"经销商付款账户ID"}},"required":["accountId"],"title":"删除经销商付款账户"},"DealerAccountRecordDestroyCmd":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"}},"required":["dealerAccountRecordId"],"title":"删除经销商账款明细"},"CostDestroyCmd":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"}},"required":["costId"],"title":"删除费用"},"CostItemDestroyCmd":{"type":"object","properties":{"costItemId":{"type":"string","title":"费用项目ID"}},"required":["costItemId"],"title":"删除费用项目"},"CompanyDestroyCmd":{"type":"object","properties":{"companyId":{"type":"string","title":"公司管理ID"}},"required":["companyId"],"title":"删除公司管理"},"CompanyPaymentAccountDestroyCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"公司付款账户ID"}},"required":["accountId"],"title":"删除公司付款账户"},"ChannelDestroyCmd":{"type":"object","properties":{"channelId":{"type":"string","title":"渠道ID"}},"required":["channelId"],"title":"渠道删除"},"BoxSpecDestroyCmd":{"type":"object","properties":{"specId":{"type":"string","title":"纸箱规格ID"}},"required":["specId"],"title":"删除纸箱规格"},"BoxProductDestroyCmd":{"type":"object","properties":{"productId":{"type":"string","title":"纸箱产品ID"}},"required":["productId"],"title":"删除纸箱产品"},"BoxBrandDestroyCmd":{"type":"object","properties":{"brandId":{"type":"string","title":"纸箱品牌ID"}},"required":["brandId"],"title":"删除纸箱品牌"},"AgreementDestroyCmd":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议ID"}},"required":["agreementId"],"title":"删除协议"}}}} +{"openapi":"3.1.0","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"http://localhost:8083","description":"Generated server url"}],"tags":[{"name":"Product","description":"产品管理"},{"name":"OrderRebate","description":"订单返点管理"},{"name":"Permission","description":"权限管理"},{"name":"Role","description":"应用角色管理"},{"name":"OrderSupplier","description":"订单供应商管理"},{"name":"OrderCost","description":"订单成本项管理"},{"name":"Employee","description":"员工信息管理"},{"name":"DealerAccountRecord","description":"经销商账款明细管理"},{"name":"OrderShip","description":"发货单管理"},{"name":"Order","description":"采购订单管理"},{"name":"Setting","description":"系统设置管理"},{"name":"BoxBrand","description":"纸箱品牌管理"},{"name":"BoxProduct","description":"纸箱产品管理"},{"name":"ExpenseRecord","description":"花销统计记录管理"},{"name":"BoxSpec","description":"纸箱规格管理"},{"name":"Channel","description":"渠道管理"},{"name":"Extraction","description":"信息抽取"},{"name":"Dealer","description":"经销商表管理"},{"name":"Company","description":"公司管理管理"},{"name":"PaymentTask","description":"付款任务管理"},{"name":"DealerPaymentAccount","description":"经销商付款账户管理"},{"name":"User","description":"用户管理"},{"name":"Cost","description":"费用管理"},{"name":"MaterialCategory","description":"素材分类"},{"name":"DealerWarehouse","description":"经销商仓库管理"},{"name":"Platform","description":"平台管理"},{"name":"Dictionary","description":"字典管理"},{"name":"Material","description":"素材管理"},{"name":"GiftBox","description":"礼盒管理"},{"name":"SupplierInvoice","description":"瓜农发票管理"},{"name":"DealerRebateCustomer","description":"经销商返点客户管理"},{"name":"Menu","description":"应用菜单"},{"name":"Agreement","description":"协议管理"},{"name":"Supplier","description":"供应商管理"},{"name":"PaymentRecord","description":"付款记录管理"},{"name":"Audit","description":"审核管理"},{"name":"CompanyPaymentAccount","description":"公司付款账户管理"},{"name":"CostItem","description":"费用项目管理"}],"paths":{"/operation/updateUser":{"put":{"tags":["User"],"summary":"更新用户","operationId":"updateUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}},"patch":{"tags":["User"],"summary":"更新用户","operationId":"updateUser_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}}},"/operation/updateSupplier":{"put":{"tags":["Supplier"],"summary":"供应商更新","operationId":"updateSupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}},"patch":{"tags":["Supplier"],"summary":"供应商更新","operationId":"updateSupplier_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/updateSupplierInvoice":{"put":{"tags":["SupplierInvoice"],"summary":"瓜农发票更新","operationId":"updateSupplierInvoice","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}},"patch":{"tags":["SupplierInvoice"],"summary":"瓜农发票更新","operationId":"updateSupplierInvoice_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}}},"/operation/updateSetting":{"put":{"tags":["Setting"],"summary":"系统设置更新","operationId":"updateSetting","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SettingUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSettingVO"}}}}}},"patch":{"tags":["Setting"],"summary":"系统设置更新","operationId":"updateSetting_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SettingUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSettingVO"}}}}}}},"/operation/updateProduct":{"put":{"tags":["Product"],"summary":"产品更新","operationId":"updateProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}},"patch":{"tags":["Product"],"summary":"产品更新","operationId":"updateProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}}},"/operation/updatePlatform":{"put":{"tags":["Platform"],"summary":"平台更新","operationId":"updatePlatform","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}},"patch":{"tags":["Platform"],"summary":"平台更新","operationId":"updatePlatform_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}}},"/operation/updatePaymentTask":{"put":{"tags":["PaymentTask"],"summary":"付款任务更新","operationId":"updatePaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}},"patch":{"tags":["PaymentTask"],"summary":"付款任务更新","operationId":"updatePaymentTask_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/updatePaymentRecord":{"put":{"tags":["PaymentRecord"],"summary":"付款记录更新","operationId":"updatePaymentRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}},"patch":{"tags":["PaymentRecord"],"summary":"付款记录更新","operationId":"updatePaymentRecord_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/updateOrder":{"put":{"tags":["Order"],"summary":"采购订单更新","operationId":"updateOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}},"deprecated":true},"patch":{"tags":["Order"],"summary":"采购订单更新","operationId":"updateOrder_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}},"deprecated":true}},"/operation/updateOrderSupplier":{"put":{"tags":["OrderSupplier"],"summary":"订单供应商更新","operationId":"updateOrderSupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderSupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderSupplierVO"}}}}}},"patch":{"tags":["OrderSupplier"],"summary":"订单供应商更新","operationId":"updateOrderSupplier_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderSupplierUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderSupplierVO"}}}}}}},"/operation/updateOrderShip":{"put":{"tags":["OrderShip"],"summary":"发货单更新","operationId":"updateOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}},"patch":{"tags":["OrderShip"],"summary":"发货单更新","operationId":"updateOrderShip_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}}},"/operation/updateMenu":{"put":{"tags":["Menu"],"summary":"菜单更新","operationId":"updateMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}},"patch":{"tags":["Menu"],"summary":"菜单更新","operationId":"updateMenu_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}}},"/operation/updateMaterial":{"put":{"tags":["Material"],"summary":"素材内容更新","operationId":"updateMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}},"patch":{"tags":["Material"],"summary":"素材内容更新","operationId":"updateMaterial_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}}},"/operation/updateMaterialCategory":{"put":{"tags":["MaterialCategory"],"summary":"更新素材分类","operationId":"updateMaterialCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}},"patch":{"tags":["MaterialCategory"],"summary":"更新素材分类","operationId":"updateMaterialCategory_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}}},"/operation/updateGiftBox":{"put":{"tags":["GiftBox"],"summary":"礼盒更新","operationId":"updateGiftBox","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}},"patch":{"tags":["GiftBox"],"summary":"礼盒更新","operationId":"updateGiftBox_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}}},"/operation/updateExpenseRecord":{"put":{"tags":["ExpenseRecord"],"summary":"花销统计记录更新","operationId":"updateExpenseRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpenseRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}},"patch":{"tags":["ExpenseRecord"],"summary":"花销统计记录更新","operationId":"updateExpenseRecord_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpenseRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}}},"/operation/updateEmployee":{"put":{"tags":["Employee"],"summary":"员工信息更新","operationId":"updateEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}},"patch":{"tags":["Employee"],"summary":"员工信息更新","operationId":"updateEmployee_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}}},"/operation/updateDictionary":{"put":{"tags":["Dictionary"],"summary":"字典更新","operationId":"updateDictionary","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}},"patch":{"tags":["Dictionary"],"summary":"字典更新","operationId":"updateDictionary_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}}},"/operation/updateDealer":{"put":{"tags":["Dealer"],"summary":"经销商表更新","operationId":"updateDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}},"patch":{"tags":["Dealer"],"summary":"经销商表更新","operationId":"updateDealer_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/updateDealerWarehouse":{"put":{"tags":["DealerWarehouse"],"summary":"经销商仓库更新","operationId":"updateDealerWarehouse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}},"patch":{"tags":["DealerWarehouse"],"summary":"经销商仓库更新","operationId":"updateDealerWarehouse_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}}},"/operation/updateDealerTemplate":{"put":{"tags":["Dealer"],"summary":"更新经销商发货单模板","operationId":"updateDealerTemplate","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateTemplateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}},"patch":{"tags":["Dealer"],"summary":"更新经销商发货单模板","operationId":"updateDealerTemplate_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateTemplateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/updateDealerSettings":{"put":{"tags":["Dealer"],"summary":"更新经销商设置","operationId":"updateDealerSettings","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateSettingsCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}},"patch":{"tags":["Dealer"],"summary":"更新经销商设置","operationId":"updateDealerSettings_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerUpdateSettingsCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/updateDealerRebateCustomer":{"put":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户更新","operationId":"updateDealerRebateCustomer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}},"patch":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户更新","operationId":"updateDealerRebateCustomer_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}}},"/operation/updateDealerPaymentAccount":{"put":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户更新","operationId":"updateDealerPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}},"patch":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户更新","operationId":"updateDealerPaymentAccount_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}}},"/operation/updateDealerAccountRecord":{"put":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细更新","operationId":"updateDealerAccountRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}},"patch":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细更新","operationId":"updateDealerAccountRecord_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}}},"/operation/updateCost":{"put":{"tags":["Cost"],"summary":"费用更新","operationId":"updateCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}},"patch":{"tags":["Cost"],"summary":"费用更新","operationId":"updateCost_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}}},"/operation/updateCostItem":{"put":{"tags":["CostItem"],"summary":"费用项目更新","operationId":"updateCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}},"patch":{"tags":["CostItem"],"summary":"费用项目更新","operationId":"updateCostItem_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}}},"/operation/updateCompany":{"put":{"tags":["Company"],"summary":"公司管理更新","operationId":"updateCompany","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}},"patch":{"tags":["Company"],"summary":"公司管理更新","operationId":"updateCompany_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}}},"/operation/updateCompanyPaymentAccount":{"put":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户更新","operationId":"updateCompanyPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}},"patch":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户更新","operationId":"updateCompanyPaymentAccount_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}}},"/operation/updateChannel":{"put":{"tags":["Channel"],"summary":"渠道更新","operationId":"updateChannel","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}},"patch":{"tags":["Channel"],"summary":"渠道更新","operationId":"updateChannel_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}}},"/operation/updateBoxSpec":{"put":{"tags":["BoxSpec"],"summary":"纸箱规格更新","operationId":"updateBoxSpec","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}},"patch":{"tags":["BoxSpec"],"summary":"纸箱规格更新","operationId":"updateBoxSpec_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}}},"/operation/updateBoxProduct":{"put":{"tags":["BoxProduct"],"summary":"纸箱产品更新","operationId":"updateBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}},"patch":{"tags":["BoxProduct"],"summary":"纸箱产品更新","operationId":"updateBoxProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}}},"/operation/updateBoxBrand":{"put":{"tags":["BoxBrand"],"summary":"纸箱品牌更新","operationId":"updateBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}},"patch":{"tags":["BoxBrand"],"summary":"纸箱品牌更新","operationId":"updateBoxBrand_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}}},"/operation/updateAudit":{"put":{"tags":["Audit"],"summary":"审核更新","operationId":"updateAudit","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuditUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}},"patch":{"tags":["Audit"],"summary":"审核更新","operationId":"updateAudit_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuditUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/updateAgreement":{"put":{"tags":["Agreement"],"summary":"协议更新","operationId":"updateAgreement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}},"patch":{"tags":["Agreement"],"summary":"协议更新","operationId":"updateAgreement_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}}},"/operation/generateDocumentOrderShip":{"put":{"tags":["OrderShip"],"summary":"发货单生成单据","operationId":"generateDocumentOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipGenerateDocumentCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["OrderShip"],"summary":"发货单生成单据","operationId":"generateDocumentOrderShip_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipGenerateDocumentCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragProduct":{"put":{"tags":["Product"],"summary":"产品拖拽排序","operationId":"dragProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["Product"],"summary":"产品拖拽排序","operationId":"dragProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragDealer":{"put":{"tags":["Dealer"],"summary":"经销商表拖拽排序","operationId":"dragDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["Dealer"],"summary":"经销商表拖拽排序","operationId":"dragDealer_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragCost":{"put":{"tags":["Cost"],"summary":"费用拖拽排序","operationId":"dragCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["Cost"],"summary":"费用拖拽排序","operationId":"dragCost_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragCostItem":{"put":{"tags":["CostItem"],"summary":"费用项目拖拽排序","operationId":"dragCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["CostItem"],"summary":"费用项目拖拽排序","operationId":"dragCostItem_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragBoxProduct":{"put":{"tags":["BoxProduct"],"summary":"纸箱产品拖拽排序","operationId":"dragBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["BoxProduct"],"summary":"纸箱产品拖拽排序","operationId":"dragBoxProduct_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragBoxBrand":{"put":{"tags":["BoxBrand"],"summary":"纸箱品牌拖拽排序","operationId":"dragBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}},"patch":{"tags":["BoxBrand"],"summary":"纸箱品牌拖拽排序","operationId":"dragBoxBrand_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/withdrawReviewOrder":{"post":{"tags":["Order"],"summary":"采购订单撤回提审(产地/市场采购员撤回提审)","operationId":"withdrawReviewOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderWithdrawReviewCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/updateRole":{"post":{"tags":["Role"],"summary":"更新应用应用角色","operationId":"updateRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseRoleVO"}}}}}}},"/operation/updatePermission":{"post":{"tags":["Permission"],"summary":"更新权限","operationId":"updatePermission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PermissionUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePermissionVO"}}}}}}},"/operation/updateEmployeeRole":{"post":{"tags":["Employee"],"summary":"修改员工角色","operationId":"updateEmployeeRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserRoleUpdateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/submitReviewOrder":{"post":{"tags":["Order"],"summary":"采购订单提审(产地/市场采购员提审)","operationId":"submitReviewOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderSubmitReviewCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/saveOrderStep3":{"post":{"tags":["Order"],"summary":"采购订单第三步:人工和辅料等费用信息保存","operationId":"saveOrderStep3","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderStep3Cmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/saveOrderStep2":{"post":{"tags":["Order"],"summary":"采购订单第二步:供应商信息保存","operationId":"saveOrderStep2","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderStep2Cmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/saveOrderStep1":{"post":{"tags":["Order"],"summary":"采购订单第一步:车辆信息和经销商信息保存","operationId":"saveOrderStep1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderStep1Cmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}}}},"/operation/restEmployeePassword":{"post":{"tags":["Employee"],"summary":"重置员工密码","operationId":"restEmployeePassword","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeRestPasswordCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/rejectFinalOrder":{"post":{"tags":["Order"],"summary":"采购订单驳回审批(老板驳回审批)","operationId":"rejectFinalOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderRejectFinalCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/rejectApproveOrder":{"post":{"tags":["Order"],"summary":"采购订单驳回审核(审核员驳回审核)","operationId":"rejectApproveOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderRejectApproveCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/payPaymentTask":{"post":{"tags":["PaymentTask"],"summary":"付款任务付款","operationId":"payPaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskPayCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/payOrderCost":{"post":{"tags":["OrderCost"],"summary":"费用付款","operationId":"payOrderCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCostPayCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/finalApproveOrder":{"post":{"tags":["Order"],"summary":"采购订单审批(老板审批)","operationId":"finalApproveOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderFinalApproveCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/extraction/vehicle":{"post":{"tags":["Extraction"],"summary":"智能提取物流信息","operationId":"vehicleExtraction","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VehicleExtractionCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseVehicleExtractionVO"}}}}}}},"/operation/enableUser":{"post":{"tags":["User"],"summary":"启用用户","operationId":"enableUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserEnableCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/dragMenu":{"post":{"tags":["Menu"],"summary":"菜单拖拽","operationId":"dragMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuDragCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/disableUser":{"post":{"tags":["User"],"summary":"禁用用户","operationId":"disableUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserDisableCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/disableEmployee":{"post":{"tags":["Employee"],"summary":"封禁员工","operationId":"disableEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeDisableCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyRole":{"post":{"tags":["Role"],"summary":"删除应用角色","operationId":"destroyRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPermission":{"post":{"tags":["Permission"],"summary":"删除权限","operationId":"destroyPermission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PermissionDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/createUser":{"post":{"tags":["User"],"summary":"创建会员","operationId":"createUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}}},"/operation/createSupplier":{"post":{"tags":["Supplier"],"summary":"创建供应商","operationId":"createSupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/createSupplierInvoice":{"post":{"tags":["SupplierInvoice"],"summary":"创建发票","operationId":"createSupplierInvoice","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}}},"/operation/createRole":{"post":{"tags":["Role"],"summary":"创建应用角色","operationId":"createRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseRoleVO"}}}}}}},"/operation/createProduct":{"post":{"tags":["Product"],"summary":"创建产品","operationId":"createProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}}},"/operation/createPlatform":{"post":{"tags":["Platform"],"summary":"创建平台","operationId":"createPlatform","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}}},"/operation/createPermission":{"post":{"tags":["Permission"],"summary":"创建权限","operationId":"createPermission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PermissionCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePermissionVO"}}}}}}},"/operation/createPaymentTask":{"post":{"tags":["PaymentTask"],"summary":"创建付款任务","operationId":"createPaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/createPaymentRecord":{"post":{"tags":["PaymentRecord"],"summary":"创建付款记录","operationId":"createPaymentRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/createOrder":{"post":{"tags":["Order"],"summary":"创建采购订单(暂存)","operationId":"createOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}},"deprecated":true}},"/operation/createOrderShip":{"post":{"tags":["OrderShip"],"summary":"创建发货单","operationId":"createOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}}},"/operation/createOrderCost":{"post":{"tags":["OrderCost"],"summary":"创建订单成本项","operationId":"createOrderCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCostCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderCostVO"}}}}}}},"/operation/createMenu":{"post":{"tags":["Menu"],"summary":"创建菜单","operationId":"createMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}}},"/operation/createMaterial":{"post":{"tags":["Material"],"summary":"创建素材内容","operationId":"createMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}}},"/operation/createMaterialCategory":{"post":{"tags":["MaterialCategory"],"summary":"创建素材分类","operationId":"createMaterialCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}}},"/operation/createGiftBox":{"post":{"tags":["GiftBox"],"summary":"创建礼盒","operationId":"createGiftBox","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}}},"/operation/createExpenseRecord":{"post":{"tags":["ExpenseRecord"],"summary":"创建花销统计记录","operationId":"createExpenseRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpenseRecordCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}}},"/operation/createEmployee":{"post":{"tags":["Employee"],"summary":"创建员工信息","operationId":"createEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}}},"/operation/createDictionary":{"post":{"tags":["Dictionary"],"summary":"创建字典","operationId":"createDictionary","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}}},"/operation/createDealer":{"post":{"tags":["Dealer"],"summary":"创建经销商表","operationId":"createDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/createDealerWarehouse":{"post":{"tags":["DealerWarehouse"],"summary":"创建经销商仓库","operationId":"createDealerWarehouse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}}},"/operation/createDealerRebateCustomer":{"post":{"tags":["DealerRebateCustomer"],"summary":"创建经销商返点客户","operationId":"createDealerRebateCustomer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}}},"/operation/createDealerPaymentAccount":{"post":{"tags":["DealerPaymentAccount"],"summary":"创建经销商付款账户","operationId":"createDealerPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}}},"/operation/createDealerAccountRecord":{"post":{"tags":["DealerAccountRecord"],"summary":"创建经销商账款明细","operationId":"createDealerAccountRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}}},"/operation/createCost":{"post":{"tags":["Cost"],"summary":"创建费用","operationId":"createCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}}},"/operation/createCostItem":{"post":{"tags":["CostItem"],"summary":"创建费用项目","operationId":"createCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}}},"/operation/createCompany":{"post":{"tags":["Company"],"summary":"创建公司管理","operationId":"createCompany","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}}},"/operation/createCompanyPaymentAccount":{"post":{"tags":["CompanyPaymentAccount"],"summary":"创建公司付款账户","operationId":"createCompanyPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}}},"/operation/createChannel":{"post":{"tags":["Channel"],"summary":"创建渠道","operationId":"createChannel","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}}},"/operation/createBoxSpec":{"post":{"tags":["BoxSpec"],"summary":"创建纸箱规格","operationId":"createBoxSpec","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}}},"/operation/createBoxProduct":{"post":{"tags":["BoxProduct"],"summary":"创建纸箱产品","operationId":"createBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}}},"/operation/createBoxBrand":{"post":{"tags":["BoxBrand"],"summary":"创建纸箱品牌","operationId":"createBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}}},"/operation/createAgreement":{"post":{"tags":["Agreement"],"summary":"创建协议","operationId":"createAgreement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementCreateCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}}},"/operation/batchCreateMaterial":{"post":{"tags":["Material"],"summary":"创建素材内容","operationId":"batchCreateMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialBatchAddCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseMaterialVO"}}}}}}},"/operation/approveOrder":{"post":{"tags":["Order"],"summary":"采购订单审核(审核员审核)","operationId":"approveOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderApproveCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/treeMenu":{"get":{"tags":["Menu"],"summary":"菜单列表","operationId":"treeMenu","parameters":[{"name":"menuTreeQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MenuTreeQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseTreeLong"}}}}}}},"/operation/treeMaterialCategory":{"get":{"tags":["MaterialCategory"],"summary":"素材分类树","operationId":"treeMaterialCategory","parameters":[{"name":"categoryTreeQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CategoryTreeQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseTreeLong"}}}}}}},"/operation/statisticsPaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务统计","operationId":"statisticsPaymentTask","parameters":[{"name":"statisticsQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskStatisticsQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskStatisticsVO"}}}}}}},"/operation/showUser":{"get":{"tags":["User"],"summary":"获取用户","operationId":"showUser","parameters":[{"name":"userShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseUserVO"}}}}}}},"/operation/showSupplier":{"get":{"tags":["Supplier"],"summary":"供应商详情","operationId":"showSupplier","parameters":[{"name":"supplierShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/showSupplierInvoice":{"get":{"tags":["SupplierInvoice"],"summary":"瓜农发票详情","operationId":"showSupplierInvoice","parameters":[{"name":"supplierInvoiceShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierInvoiceShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierInvoiceVO"}}}}}}},"/operation/showSetting":{"get":{"tags":["Setting"],"summary":"系统设置详情","operationId":"showSetting","parameters":[{"name":"settingShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SettingShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSettingVO"}}}}}}},"/operation/showRole":{"get":{"tags":["Role"],"summary":"查看应用角色","operationId":"showRole","parameters":[{"name":"roleShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RoleShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseRoleVO"}}}}}}},"/operation/showProduct":{"get":{"tags":["Product"],"summary":"产品详情","operationId":"showProduct","parameters":[{"name":"productShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ProductShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseProductVO"}}}}}}},"/operation/showPlatform":{"get":{"tags":["Platform"],"summary":"平台详情","operationId":"showPlatform","parameters":[{"name":"platformShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PlatformShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePlatformVO"}}}}}}},"/operation/showPermission":{"get":{"tags":["Permission"],"summary":"查看权限","operationId":"showPermission","parameters":[{"name":"permissionShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PermissionShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePermissionVO"}}}}}}},"/operation/showPaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务详情","operationId":"showPaymentTask","parameters":[{"name":"paymentTaskShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentTaskVO"}}}}}}},"/operation/showPaymentRecord":{"get":{"tags":["PaymentRecord"],"summary":"付款记录详情","operationId":"showPaymentRecord","parameters":[{"name":"paymentRecordShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentRecordShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponsePaymentRecordVO"}}}}}}},"/operation/showOrder":{"get":{"tags":["Order"],"summary":"采购订单详情","operationId":"showOrder","parameters":[{"name":"orderShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderVO"}}}}}}},"/operation/showOrderShip":{"get":{"tags":["OrderShip"],"summary":"发货单详情","operationId":"showOrderShip","parameters":[{"name":"orderShipShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShipShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderShipVO"}}}}}}},"/operation/showOrderCost":{"get":{"tags":["OrderCost"],"summary":"订单成本项详情","operationId":"showOrderCost","parameters":[{"name":"orderCostShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderCostShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOrderCostVO"}}}}}}},"/operation/showMenu":{"get":{"tags":["Menu"],"summary":"菜单详情","operationId":"showMenu","parameters":[{"name":"menuShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MenuShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMenuVO"}}}}}}},"/operation/showMaterial":{"get":{"tags":["Material"],"summary":"素材内容详情","operationId":"showMaterial","parameters":[{"name":"materialShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MaterialShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseMaterialVO"}}}}}}},"/operation/showMaterialCategory":{"get":{"tags":["MaterialCategory"],"summary":"素材分类","operationId":"showMaterialCategory","parameters":[{"name":"categoryShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CategoryShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCategoryVO"}}}}}}},"/operation/showGiftBox":{"get":{"tags":["GiftBox"],"summary":"礼盒详情","operationId":"showGiftBox","parameters":[{"name":"giftBoxShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GiftBoxShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseGiftBoxVO"}}}}}}},"/operation/showExpenseRecord":{"get":{"tags":["ExpenseRecord"],"summary":"花销统计记录详情","operationId":"showExpenseRecord","parameters":[{"name":"expenseRecordShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ExpenseRecordShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseExpenseRecordVO"}}}}}}},"/operation/showEmployee":{"get":{"tags":["Employee"],"summary":"员工信息详情","operationId":"showEmployee","parameters":[{"name":"employeeShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EmployeeShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseEmployeeVO"}}}}}}},"/operation/showDictionary":{"get":{"tags":["Dictionary"],"summary":"字典详情","operationId":"showDictionary","parameters":[{"name":"dictionaryShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DictionaryShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDictionaryVO"}}}}}}},"/operation/showDealer":{"get":{"tags":["Dealer"],"summary":"经销商表详情","operationId":"showDealer","parameters":[{"name":"dealerShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerVO"}}}}}}},"/operation/showDealerWarehouse":{"get":{"tags":["DealerWarehouse"],"summary":"经销商仓库详情","operationId":"showDealerWarehouse","parameters":[{"name":"dealerWarehouseShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerWarehouseShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerWarehouseVO"}}}}}}},"/operation/showDealerRebateCustomer":{"get":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户详情","operationId":"showDealerRebateCustomer","parameters":[{"name":"dealerRebateCustomerShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerRebateCustomerShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerRebateCustomerVO"}}}}}}},"/operation/showDealerPaymentAccount":{"get":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户详情","operationId":"showDealerPaymentAccount","parameters":[{"name":"dealerPaymentAccountShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPaymentAccountShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerPaymentAccountVO"}}}}}}},"/operation/showDealerAccountRecord":{"get":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细详情","operationId":"showDealerAccountRecord","parameters":[{"name":"dealerAccountRecordShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerAccountRecordShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseDealerAccountRecordVO"}}}}}}},"/operation/showCost":{"get":{"tags":["Cost"],"summary":"费用详情","operationId":"showCost","parameters":[{"name":"costShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostVO"}}}}}}},"/operation/showCostItem":{"get":{"tags":["CostItem"],"summary":"费用项目详情","operationId":"showCostItem","parameters":[{"name":"costItemShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostItemShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCostItemVO"}}}}}}},"/operation/showCompany":{"get":{"tags":["Company"],"summary":"公司管理详情","operationId":"showCompany","parameters":[{"name":"companyShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyVO"}}}}}}},"/operation/showCompanyPaymentAccount":{"get":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户详情","operationId":"showCompanyPaymentAccount","parameters":[{"name":"companyPaymentAccountShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseCompanyPaymentAccountVO"}}}}}}},"/operation/showChannel":{"get":{"tags":["Channel"],"summary":"渠道详情","operationId":"showChannel","parameters":[{"name":"channelShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ChannelShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseChannelVO"}}}}}}},"/operation/showBoxSpec":{"get":{"tags":["BoxSpec"],"summary":"纸箱规格详情","operationId":"showBoxSpec","parameters":[{"name":"boxSpecShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxSpecShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxSpecVO"}}}}}}},"/operation/showBoxProduct":{"get":{"tags":["BoxProduct"],"summary":"纸箱产品详情","operationId":"showBoxProduct","parameters":[{"name":"boxProductShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxProductShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxProductVO"}}}}}}},"/operation/showBoxBrand":{"get":{"tags":["BoxBrand"],"summary":"纸箱品牌详情","operationId":"showBoxBrand","parameters":[{"name":"boxBrandShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxBrandShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseBoxBrandVO"}}}}}}},"/operation/showAudit":{"get":{"tags":["Audit"],"summary":"审核详情","operationId":"showAudit","parameters":[{"name":"auditShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AuditShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAuditVO"}}}}}}},"/operation/showAgreement":{"get":{"tags":["Agreement"],"summary":"协议详情","operationId":"showAgreement","parameters":[{"name":"agreementShowQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AgreementShowQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseAgreementVO"}}}}}}},"/operation/pageUser":{"get":{"tags":["User"],"summary":"用户列表","operationId":"pageUser","parameters":[{"name":"userPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseUserVO"}}}}}}},"/operation/pageSupplier":{"get":{"tags":["Supplier"],"summary":"供应商列表","operationId":"pageSupplier","parameters":[{"name":"supplierPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseSupplierVO"}}}}}}},"/operation/pageSupplierInvoice":{"get":{"tags":["SupplierInvoice"],"summary":"瓜农发票列表","operationId":"pageSupplierInvoice","parameters":[{"name":"supplierInvoicePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierInvoicePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseSupplierInvoiceVO"}}}}}}},"/operation/pageRole":{"get":{"tags":["Role"],"summary":"应用角色分页","operationId":"pageRole","parameters":[{"name":"rolePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RolePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseRoleVO"}}}}}}},"/operation/pageProduct":{"get":{"tags":["Product"],"summary":"产品列表","operationId":"pageProduct","parameters":[{"name":"productPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ProductPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseProductVO"}}}}}}},"/operation/pagePlatform":{"get":{"tags":["Platform"],"summary":"平台列表","operationId":"pagePlatform","parameters":[{"name":"platformPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PlatformPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePlatformVO"}}}}}}},"/operation/pagePermission":{"get":{"tags":["Permission"],"summary":"权限分页","operationId":"pagePermission","parameters":[{"name":"permissionPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PermissionPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePermissionVO"}}}}}}},"/operation/pagePaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务列表","operationId":"pagePaymentTask","parameters":[{"name":"paymentTaskPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePaymentTaskVO"}}}}}}},"/operation/pagePaymentRecord":{"get":{"tags":["PaymentRecord"],"summary":"付款记录列表","operationId":"pagePaymentRecord","parameters":[{"name":"paymentRecordPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentRecordPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponsePaymentRecordVO"}}}}}}},"/operation/pageOrder":{"get":{"tags":["Order"],"summary":"采购订单列表","operationId":"pageOrder","parameters":[{"name":"orderPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderVO"}}}}}}},"/operation/pageOrderSupplier":{"get":{"tags":["OrderSupplier"],"summary":"订单供应商列表","operationId":"pageOrderSupplier","parameters":[{"name":"orderSupplierPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderSupplierPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderSupplierVO"}}}}}}},"/operation/pageOrderShip":{"get":{"tags":["OrderShip"],"summary":"发货单列表","operationId":"pageOrderShip","parameters":[{"name":"orderShipPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShipPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderShipVO"}}}}}}},"/operation/pageOrderRebate":{"get":{"tags":["OrderRebate"],"summary":"订单返点列表","operationId":"pageOrderRebate","parameters":[{"name":"orderRebatePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderRebatePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderRebateVO"}}}}}}},"/operation/pageOrderCost":{"get":{"tags":["OrderCost"],"summary":"订单成本项列表","operationId":"pageOrderCost","parameters":[{"name":"orderCostPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderCostPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseOrderCostVO"}}}}}}},"/operation/pageMaterial":{"get":{"tags":["Material"],"summary":"素材内容列表","operationId":"pageMaterial","parameters":[{"name":"materialPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MaterialPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseMaterialVO"}}}}}}},"/operation/pageGiftBox":{"get":{"tags":["GiftBox"],"summary":"礼盒列表","operationId":"pageGiftBox","parameters":[{"name":"giftBoxPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GiftBoxPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseGiftBoxVO"}}}}}}},"/operation/pageEmployee":{"get":{"tags":["Employee"],"summary":"员工信息列表","operationId":"pageEmployee","parameters":[{"name":"employeePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EmployeePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseEmployeeVO"}}}}}}},"/operation/pageDictionary":{"get":{"tags":["Dictionary"],"summary":"字典列表","operationId":"pageDictionary","parameters":[{"name":"dictionaryPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DictionaryPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDictionaryVO"}}}}}}},"/operation/pageDealer":{"get":{"tags":["Dealer"],"summary":"经销商表列表","operationId":"pageDealer","parameters":[{"name":"dealerPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerVO"}}}}}}},"/operation/pageDealerWarehouse":{"get":{"tags":["DealerWarehouse"],"summary":"经销商仓库列表","operationId":"pageDealerWarehouse","parameters":[{"name":"dealerWarehousePageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerWarehousePageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerWarehouseVO"}}}}}}},"/operation/pageDealerRebateCustomer":{"get":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户列表","operationId":"pageDealerRebateCustomer","parameters":[{"name":"dealerRebateCustomerPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerRebateCustomerPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerRebateCustomerVO"}}}}}}},"/operation/pageDealerPaymentAccount":{"get":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户列表","operationId":"pageDealerPaymentAccount","parameters":[{"name":"dealerPaymentAccountPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPaymentAccountPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerPaymentAccountVO"}}}}}}},"/operation/pageDealerAccountRecord":{"get":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细列表","operationId":"pageDealerAccountRecord","parameters":[{"name":"dealerAccountRecordPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerAccountRecordPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseDealerAccountRecordVO"}}}}}}},"/operation/pageCost":{"get":{"tags":["Cost"],"summary":"费用列表","operationId":"pageCost","parameters":[{"name":"costPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCostVO"}}}}}}},"/operation/pageCostItem":{"get":{"tags":["CostItem"],"summary":"费用项目列表","operationId":"pageCostItem","parameters":[{"name":"costItemPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostItemPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCostItemVO"}}}}}}},"/operation/pageCompany":{"get":{"tags":["Company"],"summary":"公司管理列表","operationId":"pageCompany","parameters":[{"name":"companyPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCompanyVO"}}}}}}},"/operation/pageCompanyPaymentAccount":{"get":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户列表","operationId":"pageCompanyPaymentAccount","parameters":[{"name":"companyPaymentAccountPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseCompanyPaymentAccountVO"}}}}}}},"/operation/pageChannel":{"get":{"tags":["Channel"],"summary":"渠道分页","operationId":"pageChannel","parameters":[{"name":"channelPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ChannelPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseChannelVO"}}}}}}},"/operation/pageBoxSpec":{"get":{"tags":["BoxSpec"],"summary":"纸箱规格列表","operationId":"pageBoxSpec","parameters":[{"name":"boxSpecPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxSpecPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseBoxSpecVO"}}}}}}},"/operation/pageBoxProduct":{"get":{"tags":["BoxProduct"],"summary":"纸箱产品列表","operationId":"pageBoxProduct","parameters":[{"name":"boxProductPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxProductPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseBoxProductVO"}}}}}}},"/operation/pageBoxBrand":{"get":{"tags":["BoxBrand"],"summary":"纸箱品牌列表","operationId":"pageBoxBrand","parameters":[{"name":"boxBrandPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxBrandPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseBoxBrandVO"}}}}}}},"/operation/pageAudit":{"get":{"tags":["Audit"],"summary":"审核列表","operationId":"pageAudit","parameters":[{"name":"auditPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AuditPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseAuditVO"}}}}}}},"/operation/pageAgreement":{"get":{"tags":["Agreement"],"summary":"协议列表","operationId":"pageAgreement","parameters":[{"name":"agreementPageQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AgreementPageQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseAgreementVO"}}}}}}},"/operation/ossToken":{"get":{"tags":["Material"],"summary":"获取OSS上传凭证","operationId":"ossToken","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseOssTokenVO"}}}}}}},"/operation/listUser":{"get":{"tags":["User"],"summary":"用户列表","operationId":"listUser","parameters":[{"name":"userListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseUserVO"}}}}}}},"/operation/listSupplier":{"get":{"tags":["Supplier"],"summary":"供应商列表","operationId":"listSupplier","parameters":[{"name":"supplierListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseSupplierVO"}}}}}}},"/operation/listSupplierInvoice":{"get":{"tags":["SupplierInvoice"],"summary":"瓜农发票列表","operationId":"listSupplierInvoice","parameters":[{"name":"supplierInvoiceListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierInvoiceListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseSupplierInvoiceVO"}}}}}}},"/operation/listRole":{"get":{"tags":["Role"],"summary":"应用角色列表","operationId":"listRole","parameters":[{"name":"roleListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RoleListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseRoleVO"}}}}}}},"/operation/listProduct":{"get":{"tags":["Product"],"summary":"产品列表","operationId":"listProduct","parameters":[{"name":"productListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ProductListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseProductVO"}}}}}}},"/operation/listPlatform":{"get":{"tags":["Platform"],"summary":"平台列表","operationId":"listPlatform","parameters":[{"name":"platformListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PlatformListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePlatformVO"}}}}}}},"/operation/listPermission":{"get":{"tags":["Permission"],"summary":"权限列表","operationId":"listPermission","parameters":[{"name":"permissionListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PermissionListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePermissionVO"}}}}}}},"/operation/listPaymentTask":{"get":{"tags":["PaymentTask"],"summary":"付款任务列表","operationId":"listPaymentTask","parameters":[{"name":"paymentTaskListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentTaskListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePaymentTaskVO"}}}}}}},"/operation/listPaymentRecord":{"get":{"tags":["PaymentRecord"],"summary":"付款记录列表","operationId":"listPaymentRecord","parameters":[{"name":"paymentRecordListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PaymentRecordListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponsePaymentRecordVO"}}}}}}},"/operation/listOrder":{"get":{"tags":["Order"],"summary":"采购订单列表","operationId":"listOrder","parameters":[{"name":"orderListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseOrderVO"}}}}}}},"/operation/listOrderShip":{"get":{"tags":["OrderShip"],"summary":"发货单列表","operationId":"listOrderShip","parameters":[{"name":"orderShipListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderShipListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseOrderShipVO"}}}}}}},"/operation/listMenu":{"get":{"tags":["Menu"],"summary":"菜单列表","operationId":"listMenu","parameters":[{"name":"menuListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/MenuListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseMenuVO"}}}}}}},"/operation/listGiftBox":{"get":{"tags":["GiftBox"],"summary":"礼盒列表","operationId":"listGiftBox","parameters":[{"name":"giftBoxListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GiftBoxListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseGiftBoxVO"}}}}}}},"/operation/listExpenseRecord":{"get":{"tags":["ExpenseRecord"],"summary":"花销统计记录列表","operationId":"listExpenseRecord","parameters":[{"name":"expenseRecordListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ExpenseRecordListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseExpenseRecordVO"}}}}}}},"/operation/listEmployee":{"get":{"tags":["Employee"],"summary":"员工信息列表","operationId":"listEmployee","parameters":[{"name":"employeeListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EmployeeListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseEmployeeVO"}}}}}}},"/operation/listDictionary":{"get":{"tags":["Dictionary"],"summary":"字典列表","operationId":"listDictionary","parameters":[{"name":"dictionaryListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DictionaryListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDictionaryVO"}}}}}}},"/operation/listDealer":{"get":{"tags":["Dealer"],"summary":"经销商表列表","operationId":"listDealer","parameters":[{"name":"dealerListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerVO"}}}}}}},"/operation/listDealerWarehouse":{"get":{"tags":["DealerWarehouse"],"summary":"经销商仓库列表","operationId":"listDealerWarehouse","parameters":[{"name":"dealerWarehouseListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerWarehouseListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerWarehouseVO"}}}}}}},"/operation/listDealerRebateCustomer":{"get":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户列表","operationId":"listDealerRebateCustomer","parameters":[{"name":"dealerRebateCustomerListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerRebateCustomerListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerRebateCustomerVO"}}}}}}},"/operation/listDealerPaymentAccount":{"get":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户列表","operationId":"listDealerPaymentAccount","parameters":[{"name":"dealerPaymentAccountListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerPaymentAccountListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerPaymentAccountVO"}}}}}}},"/operation/listDealerAccountRecord":{"get":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细列表","operationId":"listDealerAccountRecord","parameters":[{"name":"dealerAccountRecordListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DealerAccountRecordListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseDealerAccountRecordVO"}}}}}}},"/operation/listCost":{"get":{"tags":["Cost"],"summary":"费用列表","operationId":"listCost","parameters":[{"name":"costListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCostVO"}}}}}}},"/operation/listCostItem":{"get":{"tags":["CostItem"],"summary":"费用项目列表","operationId":"listCostItem","parameters":[{"name":"costItemListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CostItemListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCostItemVO"}}}}}}},"/operation/listCompany":{"get":{"tags":["Company"],"summary":"公司管理列表","operationId":"listCompany","parameters":[{"name":"companyListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCompanyVO"}}}}}}},"/operation/listCompanyPaymentAccount":{"get":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户列表","operationId":"listCompanyPaymentAccount","parameters":[{"name":"companyPaymentAccountListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseCompanyPaymentAccountVO"}}}}}}},"/operation/listBoxSpec":{"get":{"tags":["BoxSpec"],"summary":"纸箱规格列表","operationId":"listBoxSpec","parameters":[{"name":"boxSpecListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxSpecListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseBoxSpecVO"}}}}}}},"/operation/listBoxProduct":{"get":{"tags":["BoxProduct"],"summary":"纸箱产品列表","operationId":"listBoxProduct","parameters":[{"name":"boxProductListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxProductListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseBoxProductVO"}}}}}}},"/operation/listBoxBrand":{"get":{"tags":["BoxBrand"],"summary":"纸箱品牌列表","operationId":"listBoxBrand","parameters":[{"name":"boxBrandListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BoxBrandListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseBoxBrandVO"}}}}}}},"/operation/listAgreement":{"get":{"tags":["Agreement"],"summary":"协议列表","operationId":"listAgreement","parameters":[{"name":"agreementListQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AgreementListQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiResponseAgreementVO"}}}}}}},"/operation/getLastVehicleNo":{"get":{"tags":["Order"],"summary":"获取上一车车次号","operationId":"getLastVehicleNo","parameters":[{"name":"lastVehicleNoQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LastVehicleNoQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseString"}}}}}}},"/operation/countOrderByState":{"get":{"tags":["Order"],"summary":"获取某个状态的数量","operationId":"countOrderByState","parameters":[{"name":"orderCountQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OrderCountQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseLong"}}}}}}},"/operation/checkSupplier":{"get":{"tags":["Supplier"],"summary":"检查供应商","operationId":"checkSupplier","parameters":[{"name":"supplierCheckQry","in":"query","required":true,"schema":{"$ref":"#/components/schemas/SupplierCheckQry"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SingleResponseSupplierVO"}}}}}}},"/operation/destroyUser":{"delete":{"tags":["User"],"summary":"删除用户","operationId":"destroyUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroySupplier":{"delete":{"tags":["Supplier"],"summary":"供应商删除","operationId":"destroySupplier","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroySupplierInvoice":{"delete":{"tags":["SupplierInvoice"],"summary":"瓜农发票删除","operationId":"destroySupplierInvoice","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplierInvoiceDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyProduct":{"delete":{"tags":["Product"],"summary":"产品删除","operationId":"destroyProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPlatform":{"delete":{"tags":["Platform"],"summary":"平台删除","operationId":"destroyPlatform","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PlatformDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPaymentTask":{"delete":{"tags":["PaymentTask"],"summary":"付款任务删除","operationId":"destroyPaymentTask","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentTaskDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyPaymentRecord":{"delete":{"tags":["PaymentRecord"],"summary":"付款记录删除","operationId":"destroyPaymentRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaymentRecordDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyOrder":{"delete":{"tags":["Order"],"summary":"采购订单删除","operationId":"destroyOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyOrderShip":{"delete":{"tags":["OrderShip"],"summary":"发货单删除","operationId":"destroyOrderShip","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderShipDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyMenu":{"delete":{"tags":["Menu"],"summary":"菜单更新","operationId":"destroyMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MenuDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyMaterial":{"delete":{"tags":["Material"],"summary":"删除素材内容","operationId":"destroyMaterial","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MaterialDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyMaterialCategory":{"delete":{"tags":["MaterialCategory"],"summary":"删除素材分类","operationId":"destroyMaterialCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyGiftBox":{"delete":{"tags":["GiftBox"],"summary":"礼盒删除","operationId":"destroyGiftBox","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GiftBoxDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyEmployee":{"delete":{"tags":["Employee"],"summary":"员工信息删除","operationId":"destroyEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDictionary":{"delete":{"tags":["Dictionary"],"summary":"字典删除","operationId":"destroyDictionary","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DictionaryDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealer":{"delete":{"tags":["Dealer"],"summary":"经销商表删除","operationId":"destroyDealer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerWarehouse":{"delete":{"tags":["DealerWarehouse"],"summary":"经销商仓库删除","operationId":"destroyDealerWarehouse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerWarehouseDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerRebateCustomer":{"delete":{"tags":["DealerRebateCustomer"],"summary":"经销商返点客户删除","operationId":"destroyDealerRebateCustomer","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerRebateCustomerDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerPaymentAccount":{"delete":{"tags":["DealerPaymentAccount"],"summary":"经销商付款账户删除","operationId":"destroyDealerPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerPaymentAccountDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyDealerAccountRecord":{"delete":{"tags":["DealerAccountRecord"],"summary":"经销商账款明细删除","operationId":"destroyDealerAccountRecord","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DealerAccountRecordDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCost":{"delete":{"tags":["Cost"],"summary":"费用删除","operationId":"destroyCost","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCostItem":{"delete":{"tags":["CostItem"],"summary":"费用项目删除","operationId":"destroyCostItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CostItemDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCompany":{"delete":{"tags":["Company"],"summary":"公司管理删除","operationId":"destroyCompany","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyCompanyPaymentAccount":{"delete":{"tags":["CompanyPaymentAccount"],"summary":"公司付款账户删除","operationId":"destroyCompanyPaymentAccount","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyPaymentAccountDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyChannel":{"delete":{"tags":["Channel"],"summary":"渠道删除","operationId":"destroyChannel","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyBoxSpec":{"delete":{"tags":["BoxSpec"],"summary":"纸箱规格删除","operationId":"destroyBoxSpec","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxSpecDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyBoxProduct":{"delete":{"tags":["BoxProduct"],"summary":"纸箱产品删除","operationId":"destroyBoxProduct","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxProductDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyBoxBrand":{"delete":{"tags":["BoxBrand"],"summary":"纸箱品牌删除","operationId":"destroyBoxBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BoxBrandDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/operation/destroyAgreement":{"delete":{"tags":["Agreement"],"summary":"协议删除","operationId":"destroyAgreement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgreementDestroyCmd"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}},"components":{"schemas":{"Response":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"}}},"UserUpdateCmd":{"type":"object","properties":{"name":{"type":"string","title":"会员名称"},"nickname":{"type":"string","title":"会员昵称"},"avatar":{"type":"string","title":"头像"},"phone":{"type":"string","title":"会员手机号"},"birthday":{"type":"string","title":"会员生日"},"gender":{"type":"integer","format":"int32","title":"会员性别"},"cardType":{"type":"integer","format":"int32","title":"会员卡号生成方式:1 系统生成 2 自定义"},"remark":{"type":"string","title":"备注"},"labelId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"客户标签"},"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户更新命令"},"SingleResponseUserVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/UserVO"}}},"UserVO":{"type":"object","properties":{"userId":{"type":"string","title":"用户编号"},"nickname":{"type":"string","title":"昵称"},"avatar":{"type":"string","title":"头像"},"name":{"type":"string","title":"姓名"},"gender":{"type":"integer","format":"int32","title":"性别"},"birthday":{"type":"string","title":"生日"},"phone":{"type":"string","title":"手机号"},"remark":{"type":"string","title":"备注"},"state":{"type":"string","enum":["ENABLE","DISABLE"],"title":"状态"},"isAdmin":{"type":"boolean","title":"是否是管理员"},"isPartner":{"type":"boolean","title":"是否是小区合伙人"},"createdAt":{"type":"string","title":"创建时间"},"bindPhoneAt":{"type":"string","title":"绑定手机号码时间"},"lastLoginAt":{"type":"string","title":"最后一次登录时间"},"mpOpenid":{"type":"string","title":"微信公众号openid"},"maOpenid":{"type":"string","title":"微信小程序openid"},"unionid":{"type":"string","title":"开放平台unionid"}},"required":["avatar","bindPhoneAt","birthday","createdAt","gender","isAdmin","isPartner","lastLoginAt","maOpenid","mpOpenid","name","nickname","phone","state","unionid","userId"],"title":"用户信息"},"SupplierUpdateCmd":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"wechatQr":{"type":"string","title":"微信收款码URL"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"dealerId":{"type":"integer","format":"int64","title":"经销商ID"}},"required":["bankCard","bankName","name","payeeName","phone","status","supplierId","type"],"title":"供应商更新"},"DealerPaymentAccountVO":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"dealerId":{"type":"string","title":"经销商ID"},"companyName":{"type":"string","title":"公司名称"},"taxNumber":{"type":"string","title":"税号"},"bankAccount":{"type":"string","title":"银行账号"},"companyAddress":{"type":"string","title":"单位地址"},"phone":{"type":"string","title":"电话"},"openingBank":{"type":"string","title":"开户行"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"required":["dealerId","dealerType","shortName","status"],"title":"经销商信息"}},"required":["accountId","bankAccount","companyName","dealerId","taxNumber"],"title":"经销商付款账户"},"DealerVO":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"enableShare":{"type":"boolean","title":"是否开启分成"},"shareRatio":{"type":"number","title":"分成比例"},"freightCostFlag":{"type":"boolean","title":"运费是否作为成本"},"strawMatCostFlag":{"type":"boolean","title":"草帘是否作为成本"},"includePackingFlag":{"type":"boolean","title":"发货单合计金额是否含包装费"},"includeFreightFlag":{"type":"boolean","title":"发货单合计金额是否含包运费"},"receivable":{"type":"number","title":"应收金额"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"deliveryTemplate":{"type":"string","title":"发货单模板"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerPaymentAccountVOList":{"type":"array","items":{"$ref":"#/components/schemas/DealerPaymentAccountVO"},"title":"经销商账户列表"},"enableAccrualTax":{"type":"boolean","title":"是否开启计提税金"},"accrualTaxRatio":{"type":"number","title":"计提税金比例"},"enableCompanyRebate":{"type":"boolean","title":"是否开启公司返点"},"companyRebateRatio":{"type":"number","title":"公司返点比例"},"shareAdjusted":{"type":"boolean","title":"是否可调整比例"},"enableLoss":{"type":"boolean","title":"是否开启损耗"},"lossAmount":{"type":"number","title":"损耗金额"},"enableInitialTrainNo":{"type":"boolean","title":"是否启用初始车次号"},"initialTrainNo":{"type":"integer","format":"int32","title":"初始车次号"}},"required":["dealerId","dealerType","shortName","status"],"title":"经销商表"},"SingleResponseSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/SupplierVO"}}},"SupplierVO":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"wechatQr":{"type":"string","title":"微信收款码URL"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"dealerId":{"type":"integer","format":"int64","title":"经销商ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"}},"required":["bankCard","bankName","createdBy","name","payeeName","phone","status","supplierId","type"],"title":"供应商"},"OrderSupplierInvoice":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商姓名"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"invoiceAmount":{"type":"number","title":"瓜农发票金额"},"dealerId":{"type":"string","title":"经销商Id"},"dealerName":{"type":"string","title":"经销航名称"},"vehicleNo":{"type":"string","title":"车次号"}},"required":["dealerId","dealerName","invoiceAmount","name","orderId","orderSupplierId","supplierId","type","vehicleNo"],"title":"供应商发票信息"},"SupplierInvoiceUpdateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FARMER"],"title":"瓜农发票类型:1_瓜农"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"supplierName":{"type":"string","title":"瓜农发票开具人名称"},"orderSupplierInvoiceList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierInvoice"},"title":"代开发票人的信息"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票图片(支持多张)"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"required":["supplierId","supplierInvoiceId","supplierName"],"title":"瓜农发票更新"},"UploadFileItem":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名"},"filePath":{"type":"string","title":"文件路径"},"fileSize":{"type":"integer","format":"int64","title":"文件大小"},"fileType":{"type":"string","title":"文件类型"}},"title":"文件上传"},"SingleResponseSupplierInvoiceVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/SupplierInvoiceVO"}}},"SupplierInvoiceVO":{"type":"object","properties":{"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"},"invoiceSn":{"type":"string","title":"瓜农发票编号"},"type":{"type":"string","enum":["FARMER"],"title":"瓜农发票类型:1_瓜农"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"supplierName":{"type":"string","title":"瓜农发票开具人名称"},"orderSupplierInvoiceList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierInvoice"},"title":"代开发票人的信息"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票图片(支持多张)"},"registrationTime":{"type":"string","format":"date-time","title":"登记时间"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["invoiceSn","registrationTime","supplierId","supplierInvoiceId","supplierName"],"title":"瓜农发票"},"AliPayConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appId":{"type":"string","title":"支付宝appid"},"privateKey":{"type":"string","title":"支付宝私钥"},"publicKey":{"type":"string","title":"支付宝公钥"},"gatewayUrl":{"type":"string","title":"支付宝网关地址"},"notifyUrl":{"type":"string","title":"支付宝回调地址"}}}],"required":["appId","gatewayUrl","notifyUrl","privateKey","publicKey"],"title":"支付宝配置"},"ChargingPilePurchaseConfig":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"title":{"type":"string","title":"标题"},"description":{"type":"string","title":"描述"},"price":{"type":"number","title":"购买价格"},"linePrice":{"type":"number","title":"划线价格"},"image":{"type":"array","items":{"type":"string"},"title":"图片"},"content":{"type":"string","title":"设备内容"}}}],"required":["content","description","image","linePrice","price","title"],"title":"充电桩设备购买配置"},"CustomMenuConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"menuItems":{"type":"array","items":{"$ref":"#/components/schemas/MenuItem"},"title":"菜单列表"}}}],"required":["menuItems"],"title":"自定义菜单配置"},"CustomThemeConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"themeName":{"type":"string","title":"主题名称"},"primaryColor":{"type":"string","title":"主题颜色"},"secondaryColor":{"type":"string","title":"次要颜色"}}}],"required":["primaryColor","secondaryColor","themeName"],"title":"自定义主题配置"},"MenuItem":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单Id"},"menuName":{"type":"string","title":"菜单名称"},"menuIcon":{"type":"string","title":"菜单图标"},"menuRedirect":{"type":"object","additionalProperties":{},"properties":{"empty":{"type":"boolean"}},"title":"菜单路径"},"menuSort":{"type":"integer","format":"int32","title":"菜单排序"}},"required":["menuIcon","menuId","menuName","menuRedirect","menuSort"],"title":"菜单项"},"SettingUpdateCmd":{"type":"object","properties":{"settingId":{"type":"string","title":"系统设置项ID"},"settingKey":{"type":"string","enum":["WX_MA_CONFIG","WX_MA_MESSAGE_PUSH_CONFIG","WX_MA_SUBSCRIBE_MESSAGE_CONFIG","WX_MA_CODE_UPLOAD_CONFIG","WX_PAY_CONFIG","TENCENT_MAP_CONFIG","SMS_CONFIG","VIRTUAL_PHONE_CONFIG","WX_MP_CONFIG","WX_MP_MESSAGE_PUSH_CONFIG","ALI_PAY_CONFIG","CHARGING_PILE_PURCHASE_CONFIG","CUSTOM_THEME_CONFIG","CUSTOM_MENU_CONFIG","WX_CP_NOTIFY_CONFIG","SMART_RECOGNITION_PROMPT"],"title":"系统设置项key"},"settingValue":{"oneOf":[{"$ref":"#/components/schemas/AliPayConfigValue"},{"$ref":"#/components/schemas/ChargingPilePurchaseConfig"},{"$ref":"#/components/schemas/CustomMenuConfigValue"},{"$ref":"#/components/schemas/CustomThemeConfigValue"},{"$ref":"#/components/schemas/SmartRecognitionPromptValue"},{"$ref":"#/components/schemas/TencentMapConfigValue"},{"$ref":"#/components/schemas/WxCpNotifyConfigValue"},{"$ref":"#/components/schemas/WxMaCodeUploadConfigValue"},{"$ref":"#/components/schemas/WxMaConfigValue"},{"$ref":"#/components/schemas/WxMaMessagePushConfigValue"},{"$ref":"#/components/schemas/WxMaSubscribeMessageConfigValue"},{"$ref":"#/components/schemas/WxMpConfigValue"},{"$ref":"#/components/schemas/WxMpMessagePushConfigValue"},{"$ref":"#/components/schemas/WxPayConfigValue"}],"title":"系统设置项内容"}},"required":["settingKey","settingValue"],"title":"系统设置更新"},"SettingValue":{"discriminator":{"propertyName":"settingKey"},"properties":{"settingKey":{"type":"string"}},"required":["settingKey"]},"SmartRecognitionPromptValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"prompt":{"type":"string","title":"提示词"}}}],"required":["prompt"],"title":"智能识别提示词"},"TencentMapConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appKey":{"type":"string","title":"腾讯地图AppKey"}}}],"required":["appKey"],"title":"腾讯地图配置"},"WxCpNotifyConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"communityApplyNotifyKey":{"type":"string","title":"小区申请通知key"}}}],"required":["communityApplyNotifyKey"],"title":"企业微信通知配置"},"WxMaCodeUploadConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appId":{"type":"string","title":"小程序APPID"},"version":{"type":"string","title":"当前版本号"},"desc":{"type":"string","title":"更新描述"},"ipWhiteList":{"type":"string","title":"上传IP白名单"},"pagePath":{"type":"string","title":"页面路径"},"orderCenterPath":{"type":"string","title":"小程序订单中心path"},"codeUploadKey":{"type":"string","title":"小程序代码上传密钥"}}}],"required":["appId","codeUploadKey","desc","ipWhiteList","orderCenterPath","pagePath","version"],"title":"小程序代码上传配置"},"WxMaConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"wxMaName":{"type":"string","title":"小程序名称"},"wxMaOriginalId":{"type":"string","title":"小程序原始ID"},"wxMaLogo":{"type":"string","title":"小程序Logo"},"wxMaCheckFile":{"type":"string","title":"校验文件"},"appId":{"type":"string","title":"AppID(小程序ID)"},"appSecret":{"type":"string","title":"AppSecret(小程序密钥)"}}}],"required":["appId","appSecret","wxMaCheckFile","wxMaLogo","wxMaName","wxMaOriginalId"],"title":"分类创建"},"WxMaMessagePushConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"token":{"type":"string","title":"Token(令牌)"},"encodingAESKey":{"type":"string","title":"EncodingAESKey"},"msgEncryptMode":{"type":"string","title":"消息加密方式"},"dataFormat":{"type":"string","title":"数据格式"},"ipWhiteList":{"type":"string","title":"IP白名单"},"url":{"type":"string","title":"URL(服务器地址)"}}}],"required":["dataFormat","encodingAESKey","ipWhiteList","msgEncryptMode","token","url"],"title":"小程序消息推送配置"},"WxMaSubscribeMessageConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"}],"title":"小程序订阅消息配置"},"WxMpConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"wxMpName":{"type":"string","title":"公众号名称"},"wxMpOriginalId":{"type":"string","title":"公众号原始ID"},"wxMpLogo":{"type":"string","title":"公众号Logo"},"appId":{"type":"string","title":"AppID(公众号ID)"},"appSecret":{"type":"string","title":"AppSecret(公众号密钥)"}}}],"required":["appId","appSecret","wxMpLogo","wxMpName","wxMpOriginalId"],"title":"微信公众号配置"},"WxMpMessagePushConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"token":{"type":"string","title":"Token(令牌)"},"encodingAESKey":{"type":"string","title":"EncodingAESKey"},"msgEncryptMode":{"type":"string","title":"消息加密方式"},"dataFormat":{"type":"string","title":"数据格式"},"ipWhiteList":{"type":"string","title":"IP白名单"},"url":{"type":"string","title":"URL(服务器地址)"}}}],"required":["dataFormat","encodingAESKey","ipWhiteList","msgEncryptMode","token","url"],"title":"公众号消息推送配置"},"WxPayConfigValue":{"allOf":[{"$ref":"#/components/schemas/SettingValue"},{"type":"object","properties":{"appId":{"type":"string","title":"微信公众号或者小程序等的appid"},"mchId":{"type":"string","title":"微信支付商户号"},"mchKey":{"type":"string","title":"微信支付商户密钥"},"keyPath":{"type":"string","title":"apiclient_cert.p12文件的绝对路径"},"apiV3Key":{"type":"string","title":"apiV3 秘钥值"},"certSerialNo":{"type":"string","title":"apiV3 证书序列号值"},"privateCertString":{"type":"string","title":"apiclient_cert.pem证书文件"},"privateKeyString":{"type":"string","title":"apiclient_key.pem证书文件"},"publicKeyString":{"type":"string","title":"微信支付公钥,pub_key.pem证书文件"},"publicKeyId":{"type":"string","title":"微信支付公钥ID"},"notifyUrl":{"type":"string","title":"微信支付回调地址"}}}],"required":["apiV3Key","appId","certSerialNo","keyPath","mchId","mchKey","notifyUrl","privateCertString","privateKeyString","publicKeyId","publicKeyString"],"title":"微信支付配置"},"SettingVO":{"type":"object","properties":{"settingKey":{"type":"string","enum":["WX_MA_CONFIG","WX_MA_MESSAGE_PUSH_CONFIG","WX_MA_SUBSCRIBE_MESSAGE_CONFIG","WX_MA_CODE_UPLOAD_CONFIG","WX_PAY_CONFIG","TENCENT_MAP_CONFIG","SMS_CONFIG","VIRTUAL_PHONE_CONFIG","WX_MP_CONFIG","WX_MP_MESSAGE_PUSH_CONFIG","ALI_PAY_CONFIG","CHARGING_PILE_PURCHASE_CONFIG","CUSTOM_THEME_CONFIG","CUSTOM_MENU_CONFIG","WX_CP_NOTIFY_CONFIG","SMART_RECOGNITION_PROMPT"],"title":"系统设置项key"},"settingValue":{"oneOf":[{"$ref":"#/components/schemas/AliPayConfigValue"},{"$ref":"#/components/schemas/ChargingPilePurchaseConfig"},{"$ref":"#/components/schemas/CustomMenuConfigValue"},{"$ref":"#/components/schemas/CustomThemeConfigValue"},{"$ref":"#/components/schemas/SmartRecognitionPromptValue"},{"$ref":"#/components/schemas/TencentMapConfigValue"},{"$ref":"#/components/schemas/WxCpNotifyConfigValue"},{"$ref":"#/components/schemas/WxMaCodeUploadConfigValue"},{"$ref":"#/components/schemas/WxMaConfigValue"},{"$ref":"#/components/schemas/WxMaMessagePushConfigValue"},{"$ref":"#/components/schemas/WxMaSubscribeMessageConfigValue"},{"$ref":"#/components/schemas/WxMpConfigValue"},{"$ref":"#/components/schemas/WxMpMessagePushConfigValue"},{"$ref":"#/components/schemas/WxPayConfigValue"}],"title":"系统设置项内容"}},"required":["settingKey","settingValue"],"title":"系统设置"},"SingleResponseSettingVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/SettingVO"}}},"ProductUpdateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品表ID"},"name":{"type":"string","title":"产品名称"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联成本费用id"},"costTemplate":{"type":"string","title":"成本模板"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","productId","sort","status"],"title":"产品表更新"},"CostItemVO":{"type":"object","properties":{"costItemId":{"type":"string","title":"项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"name":{"type":"string","title":"项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["costItemId","name","rule","sort","status","type"],"title":"费用项目表"},"CostVO":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"remark":{"type":"string","title":"备注"},"isDefault":{"type":"boolean","title":"是否默认"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"项目id集合"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"costItemVOList":{"type":"array","items":{"$ref":"#/components/schemas/CostItemVO"},"title":"项目列表"}},"required":["belong","costId","name","sort","status","type"],"title":"费用"},"ProductVO":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"产品名称"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"成本ID集合"},"costVOList":{"type":"array","items":{"$ref":"#/components/schemas/CostVO"},"title":"成本费用"},"costTemplate":{"type":"string","title":"成本模板"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","productId","sort","status"],"title":"产品表"},"SingleResponseProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/ProductVO"}}},"PlatformUpdateCmd":{"type":"object","properties":{"platformName":{"type":"string","title":"平台名称"},"homePage":{"type":"string","title":"首页"},"platformId":{"type":"string","title":"平台ID"}},"required":["homePage","platformId","platformName"],"title":"平台更新"},"PlatformVO":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"platformName":{"type":"string","title":"平台名称"},"homePage":{"type":"string","title":"应用首页"}},"required":["homePage","platformId","platformName"],"title":"平台"},"SingleResponsePlatformVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PlatformVO"}}},"OrderCompany":{"type":"object","properties":{"orderCompanyId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"companyId":{"type":"string","title":"公司ID"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"accountId":{"type":"string","title":"账户ID"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"账户名称"},"accountNumber":{"type":"string","title":"银行账号"}},"required":["address","companyId","contactPerson","contactPhone","fullName","orderCompanyId","orderId","shortName","taxNumber"],"title":"采购订单公司信息创建"},"OrderCost":{"type":"object","properties":{"orderCostId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"费用Id"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"principal":{"type":"string","title":"负责人"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联项目id"},"selected":{"type":"boolean","title":"是否选中"},"isPaid":{"type":"boolean","title":"是否已付款"}},"required":["costId","count","name","orderCostId","price","selected","type","unit"],"title":"采购订单成本项目信息创建"},"OrderCostItem":{"type":"object","properties":{"orderCostItemId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"costItemId":{"type":"string","title":"成本项目ID"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"payerType":{"type":"string","enum":["US","OTHER"],"title":"费用承担方:1-我方,2-对方"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;3_数量和金额"},"selected":{"type":"boolean","title":"是否选中"}},"required":["orderCostItemId","orderId","rule","selected"],"title":"采购订单成本项目信息"},"OrderDealer":{"type":"object","properties":{"orderDealerId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"采购订单ID"},"dealerId":{"type":"string","title":"经销商ID"},"shortName":{"type":"string","title":"经销商简称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"enableShare":{"type":"boolean","title":"是否开启分成"},"shareRatio":{"type":"number","title":"分成比例"},"freightCostFlag":{"type":"boolean","title":"运费是否作为成本"},"strawMatCostFlag":{"type":"boolean","title":"草帘是否作为成本"},"includePackingFlag":{"type":"boolean","title":"发货单合计金额是否含包装费"},"includeFreightFlag":{"type":"boolean","title":"发货单合计金额是否含包运费"},"enableAccrualTax":{"type":"boolean","title":"是否开启计提税金"},"accrualTaxRatio":{"type":"number","title":"计提税金比例"},"enableCompanyRebate":{"type":"boolean","title":"是否开启公司返点"},"companyRebateRatio":{"type":"number","title":"公司返点比例"},"shareAdjusted":{"type":"boolean","title":"是否可调整比例"},"taxSubsidy":{"type":"number","title":"税费补贴"},"taxProvision":{"type":"number","title":"计提税金"},"costDifference":{"type":"number","title":"成本差异"},"profitSharing":{"type":"number","title":"利润分成"},"enableLoss":{"type":"boolean","title":"是否开启损耗"},"lossAmount":{"type":"number","title":"损耗金额"}},"required":["dealerId","dealerType","shortName"],"title":"采购订单经销商信息创建"},"OrderPackage":{"type":"object","properties":{"orderPackageId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"采购订单记录ID"},"orderSupplierId":{"type":"string","title":"供应商记录ID"},"boxBrandId":{"type":"string","title":"箱子品牌ID"},"boxBrandName":{"type":"string","title":"箱子品牌名称"},"boxBrandImage":{"type":"string","title":"箱子品牌图片"},"boxBrandType":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"箱子品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"boxSpecId":{"type":"string","title":"箱子规格ID"},"boxSpecName":{"type":"string","title":"箱子规格名称"},"boxProductId":{"type":"string","title":"箱子产品ID"},"boxProductName":{"type":"string","title":"箱子产品名称"},"boxProductWeight":{"type":"number","title":"单个箱子重量(kg)"},"boxCount":{"type":"integer","format":"int32","title":"箱子数量"},"boxCostPrice":{"type":"number","title":"成本单价(元/个)"},"boxSalePrice":{"type":"number","title":"销售单价(元/个)"},"boxType":{"type":"string","enum":["USED","EXTRA","EXTRA_USED","REMAIN","OWN","EMPTY"],"title":"箱子类型:1_本次使用;2_额外运输;3_已使用额外运输;4_车上剩余;5_瓜农纸箱;6_空箱;"}},"required":["boxBrandId","boxBrandName","boxBrandType","boxCount","boxProductId","boxProductName","boxProductWeight","boxSpecId","boxSpecName","boxType"],"title":"采购订单包装箱信息创建"},"OrderRebate":{"type":"object","properties":{"orderRebateId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT"],"title":"返点计算方式:1_按净重计算;2_固定金额;"},"netWeight":{"type":"number","title":"返点净重"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"},"isPaid":{"type":"boolean","title":"是否已付款"}},"required":["amount","calcMethod","customerId","dealerId","name","orderId","orderRebateId"]},"OrderShip":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"},"orderSn":{"type":"string","title":"发货单编号"},"dealerId":{"type":"string","title":"经销商ID"},"dealerName":{"type":"string","title":"经销商名称"},"warehouseId":{"type":"string","title":"仓库ID"},"warehouseName":{"type":"string","title":"仓库名称"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"shippingAddress":{"type":"string","title":"发货地址"},"receivingAddress":{"type":"string","title":"收货地址"},"shippingDate":{"type":"string","title":"发货日期"},"estimatedArrivalDate":{"type":"string","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"farmerInfo":{"type":"string","title":"瓜农姓名逗号隔开"},"state":{"type":"string","enum":["DRAFT","WAIT_SHIPMENT","WAIT_PAYMENT","WAIT_CHANGE","PARTIAL_PAYMENT","FULL_PAYMENT","REJECT_FINISH","FINISH"],"title":"发货单状态:0_草稿;1_待发货;2_待回款;3_待改签;4_部分回款;5_已回款;6_拒收完结;7_已完结;"},"type":{"type":"string","enum":["PURCHASE_SHIP","TRANSFER_SHIP","CHANGE_SHIP","RETURN_SHIP"],"title":"发货单类型:1_采购发货;2_调货发货;3_改签发货;4_退货发货"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"}},"required":["companyId","companyName","estimatedArrivalDate","orderId","orderShipId","orderSn","receivingAddress","shippingAddress","shippingDate","state","watermelonGrade"],"title":"采购单发货"},"OrderShipItem":{"type":"object","properties":{"orderShipItemId":{"type":"string","title":"发货单子项ID"},"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购订单ID"},"grossWeight":{"type":"number","title":"毛重(斤)"},"boxWeight":{"type":"number","title":"箱重(斤)"},"boxCount":{"type":"integer","format":"int32","title":"箱数"},"netWeight":{"type":"number","title":"净重(斤)"},"unitPrice":{"type":"number","title":"单价(元)"},"totalAmount":{"type":"number","title":"总金额(元)"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["orderId","orderShipId","orderShipItemId"],"title":"发货单子项表"},"OrderSupplier":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"phone":{"type":"string","title":"手机号"},"wechatQr":{"type":"string","title":"微信二维码"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"isLast":{"type":"boolean","title":"是否最后一家"},"isPaper":{"type":"boolean","title":"空磅是否包含纸箱"},"emptyWeight":{"type":"number","title":"空车重量(kg)"},"totalWeight":{"type":"number","title":"总重量(kg)"},"grossWeight":{"type":"number","title":"毛重(kg)"},"netWeight":{"type":"number","title":"净重(kg)"},"purchasePrice":{"type":"number","title":"采购单价(元/斤)"},"packageUsage":{"type":"array","items":{"$ref":"#/components/schemas/SupplierPackageUsage"},"title":"箱子类型"},"loadingMode":{"type":"string","description":"1_搭架子+网垫;2_纸箱+胶带+木隔板","enum":["FRAME_WITH_NET","BOX_WITH_TAPE"],"title":"装车模式"},"salePrice":{"type":"number","title":"销售单价(元/斤)"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"invoiceAmount":{"type":"number","title":"瓜农发票金额"},"emptyWeightImg":{"type":"string","title":"空车照片"},"totalWeightImg":{"type":"string","title":"满载照片"},"invoiceUpload":{"type":"boolean","title":"是否上传票证"},"invoiceId":{"type":"integer","format":"int64","title":"瓜农发票ID"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票"},"contractUpload":{"type":"boolean","title":"是否上传合同"},"contractImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"合同"},"productId":{"type":"string","title":"产品ID"},"productName":{"type":"string","title":"产品名称"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联费用id"},"costTemplate":{"type":"string","title":"成本模板"},"isDepositPaid":{"type":"boolean","title":"是否已付定金"},"depositAmount":{"type":"number","title":"定金金额"},"isPaid":{"type":"boolean","title":"是否付款"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"采购订单公司信息"},"selected":{"type":"boolean","title":"是否选中"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["bankCard","bankName","contractUpload","emptyWeight","grossWeight","idCard","invoiceAmount","invoiceUpload","isLast","isPaper","name","netWeight","orderSupplierId","packageUsage","payeeName","phone","purchasePrice","salePrice","selected","totalWeight","type"],"title":"采购订单供应商信息创建"},"OrderSupplierVO":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"phone":{"type":"string","title":"手机号"},"wechatQr":{"type":"string","title":"微信二维码"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"isLast":{"type":"boolean","title":"是否最后一家"},"isPaper":{"type":"boolean","title":"空磅是否包含纸箱"},"productId":{"type":"string","title":"产品id"},"productName":{"type":"string","title":"产品名称"},"loadingMode":{"type":"string","enum":["FRAME_WITH_NET","BOX_WITH_TAPE"],"title":"装车模式:1_搭架子+网垫;2_纸箱+胶带+木隔板"},"emptyWeight":{"type":"number","title":"空车重量(kg)"},"totalWeight":{"type":"number","title":"总重量(kg)"},"grossWeight":{"type":"number","title":"毛重(斤)"},"netWeight":{"type":"number","title":"净重(斤)"},"purchasePrice":{"type":"number","title":"采购单价(元/斤)"},"salePrice":{"type":"number","title":"销售单价(元/斤)"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"invoiceAmount":{"type":"number","title":"瓜农发票金额"},"isDepositPaid":{"type":"boolean","title":"是否已付定金"},"depositAmount":{"type":"number","title":"定金金额"},"isPaid":{"type":"boolean","title":"是否付款"},"emptyWeightImg":{"type":"string","title":"空车照片"},"totalWeightImg":{"type":"string","title":"满载照片"},"invoiceUpload":{"type":"boolean","title":"是否上传票证"},"invoiceId":{"type":"integer","format":"int64","title":"发票ID"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票照片"},"contractUpload":{"type":"boolean","title":"是否上传合同"},"contractImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"合同照片"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单信息"},"supplierInvoiceVO":{"$ref":"#/components/schemas/SupplierInvoiceVO","title":"供应商发票信息"}},"required":["bankCard","bankName","contractImg","contractUpload","createdAt","depositAmount","emptyWeight","emptyWeightImg","grossWeight","idCard","invoiceAmount","invoiceId","invoiceImg","invoiceUpload","isDepositPaid","isLast","isPaid","isPaper","loadingMode","name","netWeight","orderCompany","orderId","orderSupplierId","orderVO","payeeName","phone","pricingMethod","productId","productName","purchasePrice","salePrice","supplierId","totalWeight","totalWeightImg","type","wechatQr"],"title":"订单供应商"},"OrderVO":{"type":"object","properties":{"orderId":{"type":"string","title":"订单ID"},"orderSn":{"type":"string","title":"订单编号"},"draft":{"type":"boolean","title":"是否是草稿"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"remark":{"type":"string","title":"备注"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"orderRebate":{"$ref":"#/components/schemas/OrderRebate","title":"返点信息"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单项目信息"},"orderShipList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShip"},"title":"采购订单发货信息"}},"required":["active","auditState","createdBy","draft","orderCompany","orderCostItemList","orderCostList","orderDealer","orderId","orderPackageList","orderRebate","orderShipList","orderSn","orderSupplierList","orderVehicle","state","type"],"title":"采购订单"},"OrderVehicle":{"type":"object","properties":{"vehicleId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"vehicleNo":{"type":"string","title":"车货编码"},"plate":{"type":"string","title":"车牌号"},"driver":{"type":"string","title":"司机姓名"},"phone":{"type":"string","title":"司机电话"},"origin":{"type":"string","title":"出发地"},"destination":{"type":"string","title":"目的地"},"priceType":{"type":"string","enum":["MAIN_FREIGHT","SHORT_TRANSPORT"],"title":"运费类型:1-主运费;2-短驳费;"},"price":{"type":"number","title":"运输价格"},"dealerId":{"type":"string","title":"经销商ID"},"dealerName":{"type":"string","title":"经销商名称"},"openStrawCurtain":{"type":"boolean","title":"是否开启草帘"},"strawCurtainPrice":{"type":"number","title":"草帘费用"},"deliveryTime":{"type":"string","format":"date","title":"采购日期"}},"required":["dealerName","deliveryTime","destination","driver","openStrawCurtain","origin","phone","plate","price"],"title":"采购订单车辆运输信息创建"},"PaymentTaskUpdateCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"targetId":{"type":"string","title":"付款任务对象ID"},"totalAmount":{"type":"number","title":"付款总金额"},"paidAmount":{"type":"number","title":"已付金额"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"orderCount":{"type":"integer","format":"int32","title":"订单数量"},"remark":{"type":"string","title":"备注"},"orderSupplierVOList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"},"title":"订单供应商信息"}},"required":["orderCount","paidAmount","paymentTaskId","state","targetId","taskName","taskType","totalAmount"],"title":"付款任务更新"},"SupplierPackageUsage":{"type":"object","properties":{"boxType":{"type":"string","enum":["USED","EXTRA","EXTRA_USED","REMAIN","OWN","EMPTY"],"title":"箱子类型:1_本次使用;2_额外运输;3_已使用额外运输;4_车上剩余;5_瓜农纸箱;6_空箱;"},"isUsed":{"type":"integer","format":"int32","title":"是否使用:0_未回答;1_使用;2_未使用"}},"title":"采购订单供应商纸箱使用情况"},"PaymentTaskVO":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"paymentTaskSn":{"type":"string","title":"付款编码"},"targetId":{"type":"string","title":"付款任务对象ID"},"totalAmount":{"type":"number","title":"付款总金额"},"paidAmount":{"type":"number","title":"已付金额"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"orderCount":{"type":"integer","format":"int32","title":"订单数量"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"supplierVO":{"$ref":"#/components/schemas/SupplierVO","title":"供应商信息"},"orderSupplierVOList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"},"title":"订单供应商信息"}},"required":["createdAt","orderCount","paidAmount","paymentTaskId","paymentTaskSn","state","targetId","taskName","taskType","totalAmount"],"title":"付款任务"},"SingleResponsePaymentTaskVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PaymentTaskVO"}}},"PaymentRecordUpdateCmd":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"targetId":{"type":"string","title":"付款对象ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidAmount":{"type":"number","title":"付款金额"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","paidAmount","paidAt","paidState","paymentRecordId","paymentRecordSn","targetId","targetType"],"title":"付款记录更新"},"CompanyVO":{"type":"object","properties":{"companyId":{"type":"string","title":"公司ID"},"logo":{"type":"string","title":"公司logo"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["address","companyId","contactPerson","contactPhone","fullName","logo","shortName","status","taxNumber"],"title":"公司管理"},"OrderCostVO":{"type":"object","properties":{"orderCostId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"费用Id"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"principal":{"type":"string","title":"负责人"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联项目id"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单信息"},"isPaid":{"type":"boolean","title":"是否付款"}},"required":["costId","count","createdAt","name","orderCompany","orderCostId","orderVO","price","type","unit"],"title":"采购订单成本项目信息"},"PaymentRecordVO":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"targetId":{"type":"string","title":"付款对象ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidAmount":{"type":"number","title":"付款金额"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"paymentTaskVO":{"$ref":"#/components/schemas/PaymentTaskVO","title":"付款任务信息"},"supplierVO":{"$ref":"#/components/schemas/SupplierVO","title":"供应商信息"},"companyVO":{"$ref":"#/components/schemas/CompanyVO","title":"公司信息"},"orderCostVO":{"$ref":"#/components/schemas/OrderCostVO","title":"采购订单成本项目信息"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","createdAt","paidAmount","paidAt","paidState","paymentRecordId","paymentRecordSn","targetId","targetType"],"title":"付款记录"},"SingleResponsePaymentRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PaymentRecordVO"}}},"OrderUpdateCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"remark":{"type":"string","title":"备注"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"}},"required":["orderCostItemList","orderCostList","orderDealer","orderId","orderPackageList","orderSupplierList","orderVehicle"],"title":"采购订单更新"},"SingleResponseOrderVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderVO"}}},"OrderSupplierUpdateCmd":{"type":"object","properties":{"orderSupplierId":{"type":"string","title":"订单供应商ID"},"invoiceUpload":{"type":"boolean","title":"是否上传票证"},"invoiceId":{"type":"integer","format":"int64","title":"发票ID"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票照片"},"contractUpload":{"type":"boolean","title":"是否上传合同"},"contractImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"合同照片"},"isDepositPaid":{"type":"boolean","title":"是否已付定金"},"depositAmount":{"type":"number","title":"定金金额"},"isPaid":{"type":"boolean","title":"是否付款"},"loadingMode":{"type":"string","description":"1_搭架子+网垫;2_纸箱+胶带+木隔板","enum":["FRAME_WITH_NET","BOX_WITH_TAPE"],"title":"装车模式"}},"required":["invoiceId","orderSupplierId"],"title":"订单供应商更新"},"SingleResponseOrderSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderSupplierVO"}}},"OrderShipUpdateCmd":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"shippingAddress":{"type":"string","title":"发货地址"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"}},"required":["orderShipId"],"title":"发货单更新"},"OrderShipVO":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"},"dealerId":{"type":"string","title":"经销商ID"},"dealerName":{"type":"string","title":"经销商名称"},"orderSn":{"type":"string","title":"发货单编号"},"warehouseId":{"type":"string","title":"仓库ID"},"warehouseName":{"type":"string","title":"仓库名称"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"shippingAddress":{"type":"string","title":"发货地址"},"receivingAddress":{"type":"string","title":"收货地址"},"shippingDate":{"type":"string","format":"date","title":"发货日期"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"farmerInfo":{"type":"string","title":"瓜农姓名逗号隔开"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"},"state":{"type":"string","enum":["DRAFT","WAIT_SHIPMENT","WAIT_PAYMENT","WAIT_CHANGE","PARTIAL_PAYMENT","FULL_PAYMENT","REJECT_FINISH","FINISH"],"title":"发货单状态:0_草稿;1_待发货;2_待回款;3_待改签;4_部分回款;5_已回款;6_拒收完结;7_已完结;"},"type":{"type":"string","enum":["PURCHASE_SHIP","TRANSFER_SHIP","CHANGE_SHIP","RETURN_SHIP"],"title":"发货单类型:1_采购发货;2_调货发货;3_改签发货;4_退货发货"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"发货单成本项目信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单车辆运输信息"}},"required":["createdBy","dealerId","dealerName","orderId","orderShipId","orderSn","state","type"],"title":"发货单"},"SingleResponseOrderShipVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderShipVO"}}},"MenuUpdateCmd":{"type":"object","properties":{"path":{"type":"string","title":"路径"},"component":{"type":"string","title":"组件"},"name":{"type":"string","title":"菜单名称"},"pid":{"type":"string","title":"上级菜单Id"},"type":{"type":"string","title":"菜单类型"},"platformId":{"type":"string","title":"平台id"},"roleId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色Id"},"hideInMenu":{"type":"boolean","title":"是否隐藏"},"permissionId":{"type":"integer","format":"int64","title":"权限Id"},"icon":{"type":"string","title":"菜单图标"},"iconColor":{"type":"string","title":"图标颜色"},"bgColorClass":{"type":"string","title":"背景颜色类名"},"menuId":{"type":"string","title":"菜单Id"}},"required":["component","menuId","name","path","platformId","type"],"title":"更新菜单"},"MenuVO":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单id"},"path":{"type":"string","title":"菜单路径"},"component":{"type":"string","title":"组件"},"name":{"type":"string","title":"菜单名称"},"pid":{"type":"string","title":"父菜单id"},"sort":{"type":"string","title":"排序"},"type":{"type":"string","enum":["MENU","PAGE","BUTTON"],"title":"菜单类型"},"platformId":{"type":"string","title":"平台id"},"hideInMenu":{"type":"boolean","title":"是否隐藏"},"routes":{"type":"array","items":{"required":["component","hideInMenu","menuId","name","path","pid","platformId","sort","type"],"title":"菜单"},"title":"子菜单"},"permissionId":{"type":"integer","format":"int64","title":"权限id"},"icon":{"type":"string","title":"菜单图标"},"iconColor":{"type":"string","title":"图标颜色"},"bgColorClass":{"type":"string","title":"背景颜色类名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["component","hideInMenu","menuId","name","path","permissionId","pid","platformId","sort","type"],"title":"菜单"},"SingleResponseMenuVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/MenuVO"}}},"MaterialUpdateCmd":{"type":"object","properties":{"name":{"type":"string","title":"素材内容标题"},"categoryId":{"type":"string","title":"分类ID"},"path":{"type":"string","title":"素材内容路劲"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"},"materialId":{"type":"string","title":"素材内容ID"}},"title":"更新素材内容"},"CategoryVO":{"type":"object","properties":{"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"example":"视频","title":"分类类型"},"categoryId":{"type":"string","title":"分类"},"name":{"type":"string","example":"名称","title":"分类名称"},"pid":{"type":"string","example":"名称","title":"上级分类id"},"sort":{"type":"string","example":"名称","title":"排序号"},"children":{"type":"array","items":{"required":["categoryId","name"],"title":"分类响应"},"title":"下级分类"},"count":{"type":"integer","format":"int32","title":"分类关联数量"}},"required":["categoryId","count","name"],"title":"分类响应"},"MaterialVO":{"type":"object","properties":{"materialId":{"type":"string","title":"素材内容ID"},"name":{"type":"string","title":"素材内容标题"},"path":{"type":"string","title":"素材内容路劲"},"url":{"type":"string","title":"素材内容地址"},"categoryId":{"type":"string","title":"上级分类id"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"},"categoryVO":{"$ref":"#/components/schemas/CategoryVO","title":"分类内容"}},"required":["categoryId","materialId","name","path","type","url"],"title":"素材内容"},"SingleResponseMaterialVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/MaterialVO"}}},"CategoryUpdateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"example":"视频","title":"分类类型"},"name":{"type":"string","example":"名称","title":"分类名称"},"pid":{"type":"string","example":"名称","title":"上级分类id"},"sort":{"type":"integer","format":"int32","example":"排序","title":"排序"},"categoryId":{"type":"string","title":"分类Id"}},"required":["categoryId"],"title":"分类"},"SingleResponseCategoryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CategoryVO"}}},"GiftBoxUpdateCmd":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"costPrice":{"type":"number","title":"成本价"},"weight":{"type":"number","title":"重量(kg)"},"salePrice":{"type":"number","title":"售价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["boxId","costPrice","name","salePrice","status","weight"],"title":"礼盒更新"},"GiftBoxVO":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"costPrice":{"type":"number","title":"成本价"},"weight":{"type":"number","title":"重量(kg)"},"salePrice":{"type":"number","title":"售价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["boxId","costPrice","name","salePrice","status","weight"],"title":"礼盒"},"SingleResponseGiftBoxVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/GiftBoxVO"}}},"ExpenseCost":{"type":"object","properties":{"expenseCostId":{"type":"string","title":"明细ID"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"},"costId":{"type":"string","title":"费用类型ID"},"costName":{"type":"string","title":"费用类型名称"},"expenseAmount":{"type":"number","title":"花销金额"},"remark":{"type":"string","title":"备注(可填员工、事由等)"}},"required":["costId","costName","expenseAmount","expenseCostId","expenseRecordId"],"title":"花销费用明细"},"ExpenseProvision":{"type":"object","properties":{"expenseProvisionId":{"type":"string","title":"明细ID"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"},"dealerName":{"type":"string","title":"经销商名称"},"vehicleNo":{"type":"string","title":"车次号"},"provisionAmount":{"type":"number","title":"计提金额"},"orderId":{"type":"string","title":"采购单ID"},"remark":{"type":"string","title":"备注"}},"required":["expenseProvisionId","expenseRecordId","provisionAmount"],"title":"花销计提明细"},"ExpenseRecordUpdateCmd":{"type":"object","properties":{"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"},"expenseCostList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseCost"},"title":"花销费用明细"},"expenseProvisionList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseProvision"},"title":"花销计提明细"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"}},"required":["expenseRecordId"],"title":"花销统计记录更新"},"ExpenseRecordVO":{"type":"object","properties":{"expenseRecordId":{"type":"string","title":"记录ID"},"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"},"totalVehicleCount":{"type":"integer","format":"int32","title":"计提车次数量"},"totalProvision":{"type":"number","title":"计提总金额"},"totalExpense":{"type":"number","title":"花销总额"},"dailyProfit":{"type":"number","title":"日常利润"},"expenseProvisionList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseProvision"},"title":"花销计提明细"},"expenseCostList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseCost"},"title":"花销费用明细"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["expenseRecordId"],"title":"花销统计记录"},"SingleResponseExpenseRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/ExpenseRecordVO"}}},"EmployeeUpdateCmd":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"},"name":{"type":"string","minLength":1,"title":"姓名"},"number":{"type":"string","minLength":1,"title":"工号"},"gender":{"type":"integer","format":"int32","title":"性别"},"avatar":{"type":"string","title":"头像"},"phone":{"type":"string","minLength":1,"pattern":"^(1[3-9])\\d{9}$","title":"手机号"},"remark":{"type":"string","maxLength":200,"minLength":0,"title":"备注"}},"required":["employeeId","gender","name","number","phone"],"title":"员工信息更新"},"EmployeeVO":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息"},"name":{"type":"string","title":"姓名"},"number":{"type":"string","title":"工号"},"avatar":{"type":"string","title":"头像"},"gender":{"type":"integer","format":"int32","title":"性别"},"phone":{"type":"string","title":"手机号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"userId":{"type":"string","title":"用户ID"},"roleIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色ID"},"userRoleList":{"type":"array","items":{"$ref":"#/components/schemas/UserRoleVO"},"title":"角色信息"}},"required":["employeeId","gender","name","number","phone","roleIdList","userId"],"title":"员工信息"},"SingleResponseEmployeeVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/EmployeeVO"}}},"UserRoleVO":{"type":"object","properties":{"name":{"type":"string","title":"角色名称"},"slug":{"type":"string","title":"角色标识"},"roleId":{"type":"string","title":"角色ID"},"userId":{"type":"string","title":"用户ID"},"description":{"type":"string","title":"描述"},"platformId":{"type":"string","title":"平台ID"}},"required":["description","name","platformId","roleId","slug","userId"],"title":"用户角色"},"DictionaryUpdateCmd":{"type":"object","properties":{"id":{"type":"integer","format":"int32","title":"自增id"},"code":{"type":"string","title":"代码"},"name":{"type":"string","title":"字典名称"},"parentId":{"type":"string","title":"上级id"},"sortNo":{"type":"integer","format":"int32","title":"排序号"},"type":{"type":"string","title":"类型"},"dictionaryId":{"type":"string","title":"字典ID"}},"required":["dictionaryId"],"title":"字典更新"},"DictionaryVO":{"type":"object","properties":{"dictionaryId":{"type":"integer","format":"int32","title":"自增id"},"code":{"type":"string","title":"代码"},"name":{"type":"string","title":"字典名称"},"parentId":{"type":"string","title":"上级id"},"sortNo":{"type":"integer","format":"int32","title":"排序号"},"type":{"type":"string","title":"类型"}},"title":"字典"},"SingleResponseDictionaryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DictionaryVO"}}},"DealerUpdateCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商表ID"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"receivable":{"type":"number","title":"应收金额"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"deliveryTemplate":{"type":"string","title":"发货单模板"}},"required":["dealerId","dealerType","shortName","status"],"title":"经销商表更新"},"SingleResponseDealerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerVO"}}},"DealerWarehouseUpdateCmd":{"type":"object","properties":{"warehouseId":{"type":"string","title":"经销商仓库ID"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商账户ID"},"name":{"type":"string","title":"仓库名称"},"address":{"type":"string","title":"仓库地址"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"receiverName":{"type":"string","title":"收货人姓名"},"receiverPhone":{"type":"string","title":"收货人电话"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"}},"required":["accountId","address","dealerId","name","status","warehouseId"],"title":"经销商仓库更新"},"DealerWarehouseVO":{"type":"object","properties":{"warehouseId":{"type":"string","title":"仓库ID"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商账户ID"},"name":{"type":"string","title":"仓库名称"},"address":{"type":"string","title":"仓库地址"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"receiverName":{"type":"string","title":"收货人姓名"},"receiverPhone":{"type":"string","title":"收货人电话"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"dealerPaymentAccountVO":{"$ref":"#/components/schemas/DealerPaymentAccountVO","title":"经销商账户信息"}},"required":["accountId","address","dealerId","name","status","warehouseId"],"title":"经销商仓库"},"SingleResponseDealerWarehouseVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerWarehouseVO"}}},"DealerUpdateTemplateCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"deliveryTemplate":{"type":"string","title":"发货单模板"}},"required":["dealerId","deliveryTemplate"],"title":"经销商发货单模板更新"},"DealerUpdateSettingsCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"enableShare":{"type":"boolean","title":"是否开启分成"},"shareRatio":{"type":"number","title":"分成比例"},"freightCostFlag":{"type":"boolean","title":"运费是否作为成本"},"strawMatCostFlag":{"type":"boolean","title":"草帘是否作为成本"},"includePackingFlag":{"type":"boolean","title":"发货单合计金额是否含包装费"},"includeFreightFlag":{"type":"boolean","title":"发货单合计金额是否含包运费"},"enableAccrualTax":{"type":"boolean","title":"是否开启计提税金"},"accrualTaxRatio":{"type":"number","title":"计提税金比例"},"enableCompanyRebate":{"type":"boolean","title":"是否开启公司返点"},"companyRebateRatio":{"type":"number","title":"公司返点比例"},"shareAdjusted":{"type":"boolean","title":"是否可调整比例"},"enableLoss":{"type":"boolean","title":"是否开启损耗"},"lossAmount":{"type":"number","title":"损耗金额"},"enableInitialTrainNo":{"type":"boolean","title":"是否启用初始车次号"},"initialTrainNo":{"type":"integer","format":"int32","title":"初始车次号"}},"required":["dealerId"],"title":"经销商设置更新"},"DealerRebateCustomerUpdateCmd":{"type":"object","properties":{"customerId":{"type":"string","title":"经销商返点客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式:1_按净重计算;2_固定金额;3_不固定"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"}},"required":["customerId","dealerId","name","status"],"title":"经销商返点客户更新"},"DealerRebateCustomerVO":{"type":"object","properties":{"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式:1_按净重计算;2_固定金额;3_不固定"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"}},"required":["customerId","dealerId","name","status"],"title":"经销商返点客户"},"SingleResponseDealerRebateCustomerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerRebateCustomerVO"}}},"DealerPaymentAccountUpdateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"经销商付款账户ID"},"dealerId":{"type":"string","title":"经销商ID"},"companyName":{"type":"string","title":"公司名称"},"taxNumber":{"type":"string","title":"税号"},"bankAccount":{"type":"string","title":"银行账号"},"companyAddress":{"type":"string","title":"单位地址"},"phone":{"type":"string","title":"电话"},"openingBank":{"type":"string","title":"开户行"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["accountId","bankAccount","companyName","dealerId","taxNumber"],"title":"经销商付款账户更新"},"SingleResponseDealerPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerPaymentAccountVO"}}},"DealerAccountRecordUpdateCmd":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"beforeAmount":{"type":"number","title":"变动前金额"},"amount":{"type":"number","title":"变动金额"},"afterAmount":{"type":"number","title":"变动后金额"},"remark":{"type":"string","title":"备注"}},"required":["afterAmount","amount","beforeAmount","dealerAccountRecordId","dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细更新"},"DealerAccountRecordVO":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"应收账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"beforeAmount":{"type":"number","title":"变动前金额"},"amount":{"type":"number","title":"变动金额"},"afterAmount":{"type":"number","title":"变动后金额"},"remark":{"type":"string","title":"备注"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"订单信息"},"orderShipVO":{"$ref":"#/components/schemas/OrderShipVO","title":"发货单信息"}},"required":["afterAmount","amount","beforeAmount","dealerAccountRecordId","dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细"},"SingleResponseDealerAccountRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/DealerAccountRecordVO"}}},"CostUpdateCmd":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"remark":{"type":"string","title":"备注"},"isDefault":{"type":"boolean","title":"是否默认"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"成本项ID"}},"required":["belong","costId","name","sort","status","type"],"title":"费用更新"},"SingleResponseCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CostVO"}}},"CostItemUpdateCmd":{"type":"object","properties":{"costItemId":{"type":"string","title":"费用项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;"},"costId":{"type":"integer","format":"int64","title":"费用ID"},"name":{"type":"string","title":"项目名称"},"unit":{"type":"string","title":"单位"},"price":{"type":"number","title":"单价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["costId","costItemId","name","price","rule","status","type","unit"],"title":"费用项目更新"},"SingleResponseCostItemVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CostItemVO"}}},"CompanyUpdateCmd":{"type":"object","properties":{"companyId":{"type":"string","title":"公司管理ID"},"logo":{"type":"string","title":"公司logo"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["address","companyId","contactPerson","contactPhone","fullName","shortName","status","taxNumber"],"title":"公司管理更新"},"SingleResponseCompanyVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CompanyVO"}}},"CompanyPaymentAccountUpdateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"公司付款账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"publicAccountType":{"type":"string","enum":["BASIC_ACCOUNT","GENERAL_ACCOUNT","SPECIAL_ACCOUNT","TEMPORARY_ACCOUNT"],"title":"对公账户类型:1_基本户;2_一般户;3_专用账户;4_临时户"},"accountName":{"type":"string","title":"开户公司名称、支付宝昵称、微信号"},"accountNumber":{"type":"string","title":"银行账号、支付宝账号、微信账号"},"isPrimary":{"type":"boolean","title":"是否主付款账户:0_否;1_是"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;2_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["accountCategory","accountId","accountName","accountNumber","accountType","companyId","isPrimary","status"],"title":"公司付款账户更新"},"CompanyPaymentAccountVO":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"publicAccountType":{"type":"string","enum":["BASIC_ACCOUNT","GENERAL_ACCOUNT","SPECIAL_ACCOUNT","TEMPORARY_ACCOUNT"],"title":"对公账户类型:1_基本户;2_一般户;3_专用账户;4_临时户"},"accountName":{"type":"string","title":"开户公司名称、支付宝昵称、微信号"},"accountNumber":{"type":"string","title":"银行账号、支付宝账号、微信账号"},"isPrimary":{"type":"boolean","title":"是否主付款账户:0_否;1_是"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;2_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"companyVO":{"$ref":"#/components/schemas/CompanyVO","title":"公司信息"}},"required":["accountCategory","accountId","accountName","accountNumber","accountType","companyId","isPrimary","status"],"title":"公司付款账户"},"SingleResponseCompanyPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/CompanyPaymentAccountVO"}}},"ChannelUpdateCmd":{"type":"object","properties":{"domain":{"type":"string","title":"域名"},"logo":{"type":"string","title":"Logo"},"title":{"type":"string","title":"标题"},"subTitle":{"type":"string","title":"副标题"},"backgroundImageUrl":{"type":"string","title":"背景图片"},"technicalSupport":{"type":"string","title":"技术支持"},"channelId":{"type":"string","title":"渠道ID"}},"required":["channelId"],"title":"渠道更新"},"ChannelVO":{"type":"object","properties":{"channelId":{"type":"string","title":"渠道ID"},"domain":{"type":"string","title":"域名"},"logo":{"type":"string","title":"Logo"},"title":{"type":"string","title":"标题"},"subTitle":{"type":"string","title":"副标题"},"backgroundImageUrl":{"type":"string","title":"背景图片"},"technicalSupport":{"type":"string","title":"技术支持"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"wxMpId":{"type":"string","title":"微信公众号Id"},"wxOpenId":{"type":"string","title":"第三方应用Id"}},"required":["channelId"],"title":"渠道"},"SingleResponseChannelVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/ChannelVO"}}},"BoxSpecUpdateCmd":{"type":"object","properties":{"specId":{"type":"string","title":"纸箱规格ID"},"name":{"type":"string","title":"规格名称"},"sort":{"type":"number","title":"排序号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["name","sort","specId","status"],"title":"纸箱规格更新"},"BoxSpecVO":{"type":"object","properties":{"specId":{"type":"string","title":"规格ID"},"name":{"type":"string","title":"规格名称"},"sort":{"type":"number","title":"排序号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","sort","specId","status"],"title":"纸箱规格"},"SingleResponseBoxSpecVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/BoxSpecVO"}}},"BoxProductUpdateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"纸箱产品ID"},"name":{"type":"string","title":"纸箱名称"},"weight":{"type":"number","title":"重量(kg)"},"costPrice":{"type":"number","title":"成本价"},"salePrice":{"type":"number","title":"销售价"},"specId":{"type":"string","title":"规格ID"},"specName":{"type":"string","title":"规格名称"},"brandId":{"type":"string","title":"品牌ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","productId","status","type"],"title":"纸箱产品更新"},"BoxProductVO":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"纸箱名称"},"weight":{"type":"number","title":"重量(kg)"},"costPrice":{"type":"number","title":"成本价"},"salePrice":{"type":"number","title":"销售价"},"specId":{"type":"string","title":"规格ID"},"specName":{"type":"string","title":"规格名称"},"brandId":{"type":"string","title":"品牌ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["brandId","costPrice","name","productId","salePrice","specId","specName","status","type","weight"],"title":"纸箱产品"},"SingleResponseBoxProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/BoxProductVO"}}},"BoxBrandUpdateCmd":{"type":"object","properties":{"brandId":{"type":"string","title":"纸箱品牌ID"},"name":{"type":"string","title":"品牌名称"},"image":{"type":"string","title":"品牌图片URL"},"specIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"纸箱规格ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","status","type"],"title":"纸箱品牌更新"},"BoxBrandVO":{"type":"object","properties":{"brandId":{"type":"string","title":"品牌ID"},"name":{"type":"string","title":"品牌名称"},"image":{"type":"string","title":"品牌图片URL"},"specIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"纸箱规格ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"boxProductVOList":{"type":"array","items":{"$ref":"#/components/schemas/BoxProductVO"},"title":"纸箱产品列表"},"boxSpecVOList":{"type":"array","items":{"$ref":"#/components/schemas/BoxSpecVO"},"title":"纸箱规格列表"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["brandId","name","status","type"],"title":"纸箱品牌"},"SingleResponseBoxBrandVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/BoxBrandVO"}}},"AuditUpdateCmd":{"type":"object","properties":{"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"auditId":{"type":"string","title":"审核Id"},"subjectId":{"type":"string","title":"资源Id"},"subjectType":{"type":"string","enum":["PURCHASE_ORDER"],"title":"资源类型"},"state":{"type":"string","enum":["WAITING_AUDIT","AUDITING","AUDIT_SUCCESS","AUDIT_REJECTED","AUDIT_CANCEL"],"title":"审核状态: 1_待审核;2_审核中;3_审核通过;4_审核驳回;5_审核撤回"},"type":{"type":"string","enum":["REVIEWER_AUDIT","BOSS_AUDIT"],"title":"审核类型:1_审核员审核;2_老板审核"},"auditReason":{"type":"string","title":"驳回原因"},"auditAt":{"type":"string","format":"date-time","title":"审核时间"},"auditBy":{"type":"string","title":"审核人ID"},"auditByName":{"type":"string","title":"审核人名称"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["auditId","createdBy","subjectId","subjectType","type"],"title":"审核更新"},"AuditVO":{"type":"object","properties":{"auditId":{"type":"string","title":"审核Id"},"subjectId":{"type":"string","title":"资源Id"},"subjectType":{"type":"string","enum":["PURCHASE_ORDER"],"title":"资源类型"},"state":{"type":"string","enum":["WAITING_AUDIT","AUDITING","AUDIT_SUCCESS","AUDIT_REJECTED","AUDIT_CANCEL"],"title":"审核状态: 1_待审核;2_审核中;3_审核通过;4_审核驳回;5_审核撤回"},"type":{"type":"string","enum":["REVIEWER_AUDIT","BOSS_AUDIT"],"title":"审核类型:1_审核员审核;2_老板审核"},"auditReason":{"type":"string","title":"驳回原因"},"auditAt":{"type":"string","format":"date-time","title":"审核时间"},"auditBy":{"type":"string","title":"审核人ID"},"auditByName":{"type":"string","title":"审核人名称"},"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购单信息"}},"required":["auditId","createdBy","subjectId","subjectType","type"],"title":"审核"},"SingleResponseAuditVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/AuditVO"}}},"AgreementUpdateCmd":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议ID"},"scene":{"type":"array","items":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"]},"title":"使用场景"},"title":{"type":"string","title":"协议标题"},"subTitle":{"type":"string","title":"副标题"},"content":{"type":"string","title":"协议内容"}},"required":["agreementId"],"title":"协议更新"},"AgreementVO":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议id"},"scene":{"type":"array","items":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"]},"title":"使用场景"},"title":{"type":"string","title":"协议标题"},"subTitle":{"type":"string","title":"副标题"},"content":{"type":"string","title":"协议内容"}},"required":["agreementId"],"title":"协议"},"SingleResponseAgreementVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/AgreementVO"}}},"OrderShipGenerateDocumentCmd":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"shippingAddress":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"},"pdfUrl":{"type":"string","title":"PDF 文件地址"},"picUrl":{"type":"string","title":"图片文件地址"}},"required":["orderShipId"],"title":"发货单生成单据"},"ProductDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"产品拖拽"},"DealerDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"经销商拖拽"},"CostDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"费用项目拖拽"},"CostItemDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"费用项目拖拽"},"BoxProductDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"纸箱产品拖拽"},"BoxBrandDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"纸箱品牌拖拽"},"OrderWithdrawReviewCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"}},"required":["auditId","orderId"],"title":"采购订单撤回提审(录入员撤回提审)"},"RoleUpdateCmd":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"slug":{"type":"string","title":"角色标识"},"name":{"type":"string","title":"角色名称"},"type":{"type":"string","title":"角色类型"},"description":{"type":"string","title":"角色详情"},"menuId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色id"},"roleId":{"type":"string","title":"角色ID"}},"required":["menuId","name","platformId","roleId","slug","type"],"title":"角色新增"},"RoleVO":{"type":"object","properties":{"roleId":{"type":"string","title":"角色id"},"slug":{"type":"string","title":"标识"},"name":{"type":"string","title":"名称"},"type":{"type":"string","title":"类型"},"description":{"type":"string","title":"描述"},"platformId":{"type":"string","title":"平台id"},"platformVO":{"$ref":"#/components/schemas/PlatformVO","title":"平台"},"permissionId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"权限列表"},"menuId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"菜单列表"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["createdAt","menuId","name","permissionId","platformId","roleId","slug","type"],"title":"角色"},"SingleResponseRoleVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/RoleVO"}}},"PermissionUpdateCmd":{"type":"object","properties":{"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"},"permissionId":{"type":"string","title":"权限Id"}},"required":["name","permissionId","slug"],"title":"权限更新"},"PermissionVO":{"type":"object","properties":{"permissionId":{"type":"string","title":"权限Id"},"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"}},"required":["name","permissionId","slug"],"title":"权限"},"SingleResponsePermissionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PermissionVO"}}},"UserRoleUpdateCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"},"roleIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色ID"},"cover":{"type":"boolean","title":"是否覆盖"}},"required":["cover","userId"],"title":"用户角色更新"},"OrderSubmitReviewCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"}},"required":["orderId"],"title":"采购订单提审(录入员提审)"},"OrderStep3Cmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"foreman":{"type":"string","title":"工头"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单项目信息"}},"required":["orderCostItemList","orderCostList","orderId","orderPackageList"],"title":"采购订单第三步:人工和辅料等费用信息保存"},"OrderStep2Cmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"}},"required":["orderId","orderSupplierList"],"title":"采购订单第二步:供应商信息保存"},"OrderStep1Cmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"}},"required":["orderDealer","orderVehicle"],"title":"采购订单第一步:车辆信息和经销商信息保存"},"EmployeeRestPasswordCmd":{"type":"object","properties":{"password":{"type":"string","pattern":"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$","title":"新密码"},"userId":{"type":"string","title":"用户id"}},"required":["password","userId"],"title":"员工信息更新"},"OrderRejectFinalCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"},"rejectReason":{"type":"string","title":"驳回原因"}},"required":["auditId","orderId","rejectReason"],"title":"采购订单驳回审批(老板驳回审批)"},"OrderRejectApproveCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"},"rejectReason":{"type":"string","title":"审核原因"}},"required":["auditId","orderId","rejectReason"],"title":"采购订单驳回审核(审核员驳回审核)"},"PaymentTaskPayCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"paidAmount":{"type":"number","title":"付款金额"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","paidAmount","paidAt","paymentTaskId"],"title":"付款任务付款"},"OrderCostPayCmd":{"type":"object","properties":{"orderCostId":{"type":"string","title":"费用ID"},"paidAmount":{"type":"number","title":"付款金额"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","orderCostId","paidAmount","paidAt"],"title":"费用付款"},"OrderFinalApproveCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"auditId":{"type":"string","title":"审核ID"}},"required":["auditId","orderId"],"title":"采购订单审批(老板审批)"},"VehicleExtractionCmd":{"type":"object","properties":{"message":{"type":"string","title":"消息内容"},"dealerNames":{"type":"string","title":"经销商信息"}},"required":["dealerNames","message"],"title":"车辆信息抽取"},"SingleResponseVehicleExtractionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/VehicleExtractionVO"}}},"VehicleExtractionVO":{"type":"object","properties":{"plate":{"type":"string","title":"车牌"},"driver":{"type":"string","title":"司机"},"phone":{"type":"string","title":"手机"},"origin":{"type":"string","title":"出发地"},"destination":{"type":"string","title":"目的地"},"price":{"type":"number","title":"价格"},"dealerName":{"type":"string","title":"经销商"},"dealerId":{"type":"string","title":"经销商ID"},"dealerVO":{"$ref":"#/components/schemas/DealerVO","title":"经销商信息"},"openStrawCurtain":{"type":"boolean","title":"是否开启草帘"},"strawCurtainPrice":{"type":"number","title":"草帘价格"}},"required":["dealerId"],"title":"车辆信息抽取"},"UserEnableCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户启用"},"MenuDragCmd":{"type":"object","properties":{"prevId":{"type":"integer","format":"int64","title":"相邻元素前"},"nextId":{"type":"integer","format":"int64","title":"相邻元素后"},"currentId":{"type":"integer","format":"int64","title":"当前元素"}},"title":"菜单拖拽"},"UserDisableCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户封禁"},"EmployeeDisableCmd":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"}},"required":["employeeId"],"title":"员工封禁"},"RoleDestroyCmd":{"type":"object","properties":{"roleId":{"type":"string","title":"角色ID"}},"title":"角色新增"},"PermissionDestroyCmd":{"type":"object","properties":{"permissionId":{"type":"string","title":"权限Id"}},"required":["permissionId"],"title":"权限删除"},"UserCreateCmd":{"type":"object","properties":{"name":{"type":"string","title":"会员名称"},"nickname":{"type":"string","title":"会员昵称"},"avatar":{"type":"string","title":"头像"},"phone":{"type":"string","title":"会员手机号"},"birthday":{"type":"string","title":"会员生日"},"gender":{"type":"integer","format":"int32","title":"会员性别"},"cardType":{"type":"integer","format":"int32","title":"会员卡号生成方式:1 系统生成 2 自定义"},"remark":{"type":"string","title":"备注"},"labelId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"客户标签"}},"required":["name","phone"],"title":"用户更新命令"},"SupplierCreateCmd":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"姓名"},"payeeName":{"type":"string","title":"收款人姓名"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankName":{"type":"string","title":"银行名称"},"bankCard":{"type":"string","title":"银行卡号"},"wechatQr":{"type":"string","title":"微信收款码URL"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"dealerId":{"type":"integer","format":"int64","title":"经销商ID"}},"required":["bankCard","bankName","name","payeeName","phone","status","supplierId","type"],"title":"供应商创建"},"SupplierInvoiceCreateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FARMER"],"title":"瓜农发票类型:1_瓜农"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"supplierName":{"type":"string","title":"瓜农发票开具人名称"},"orderSupplierInvoiceList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierInvoice"},"title":"代开发票人的信息"},"invoiceImg":{"type":"array","items":{"$ref":"#/components/schemas/UploadFileItem"},"title":"瓜农发票图片(支持多张)"}},"required":["supplierId","supplierName"],"title":"瓜农发票创建"},"RoleCreateCmd":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"slug":{"type":"string","title":"角色标识"},"name":{"type":"string","title":"角色名称"},"type":{"type":"string","title":"角色类型"},"description":{"type":"string","title":"角色详情"},"menuId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色id"}},"required":["menuId","name","platformId","slug","type"],"title":"角色新增"},"ProductCreateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"产品名称"},"costIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联成本费用id"},"costTemplate":{"type":"string","title":"成本模板"},"remark":{"type":"string","title":"备注"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["name","productId","sort","status"],"title":"产品表创建"},"PlatformCreateCmd":{"type":"object","properties":{"platformName":{"type":"string","title":"平台名称"},"homePage":{"type":"string","title":"首页"}},"required":["homePage","platformName"],"title":"平台创建"},"PermissionCreateCmd":{"type":"object","properties":{"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"}},"required":["name","slug"],"title":"权限创建"},"PaymentTaskCreateCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"targetId":{"type":"string","title":"付款任务对象ID"},"totalAmount":{"type":"number","title":"付款总金额"},"paidAmount":{"type":"number","title":"已付金额"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"orderCount":{"type":"integer","format":"int32","title":"订单数量"},"remark":{"type":"string","title":"备注"},"orderSupplierVOList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"},"title":"订单供应商信息"}},"required":["orderCount","paidAmount","state","targetId","taskName","taskType","totalAmount"],"title":"付款任务创建"},"PaymentRecordCreateCmd":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"targetId":{"type":"string","title":"付款对象ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"companyId":{"type":"string","title":"付款公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"accountName":{"type":"string","title":"开户公司名称/支付宝昵称/微信号"},"accountNumber":{"type":"string","title":"银行账号/支付宝账号/微信账号"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"paidAmount":{"type":"number","title":"付款金额"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidCredentials":{"type":"array","items":{"type":"string"},"title":"支付凭证"},"remark":{"type":"string","title":"备注"}},"required":["accountCategory","accountName","accountNumber","accountType","companyId","paidAmount","paidAt","paidState","paymentRecordId","paymentRecordSn","targetId","targetType"],"title":"付款记录创建"},"OrderCreateCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"remark":{"type":"string","title":"备注"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"}},"required":["orderCostItemList","orderCostList","orderDealer","orderPackageList","orderSupplierList","orderVehicle"],"title":"采购订单创建"},"OrderShipCreateCmd":{"type":"object","properties":{"createdBy":{"type":"string","title":"创建人ID"},"createdByName":{"type":"string","title":"创建人姓名"},"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"},"orderSn":{"type":"string","title":"发货单编号"},"shippingAddress":{"type":"string","title":"发货地址"},"receivingAddress":{"type":"string","title":"收货地址"},"shippingDate":{"type":"string","format":"date","title":"发货日期"},"estimatedArrivalDate":{"type":"string","format":"date","title":"预计到仓时间"},"watermelonGrade":{"type":"string","title":"西瓜品级"},"farmerInfo":{"type":"string","title":"瓜农姓名逗号隔开"},"companyId":{"type":"string","title":"公司ID"},"companyName":{"type":"string","title":"公司名称"},"remark":{"type":"string","title":"备注"},"receivableAmount":{"type":"number","title":"应收金额(元)"},"adjustedAmount":{"type":"number","title":"调整总额(元)"},"orderShipItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipItem"},"title":"发货单明细"}},"required":["createdBy","orderId","orderShipId"],"title":"发货单创建"},"OrderCostCreateCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"费用Id"},"name":{"type":"string","title":"成本项目名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"count":{"type":"integer","format":"int32","title":"数量"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"principal":{"type":"string","title":"负责人"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"关联项目id"},"isPaid":{"type":"boolean","title":"是否付款"}},"required":["costId","count","name","price","type","unit"],"title":"订单成本费用创建"},"SingleResponseOrderCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OrderCostVO"}}},"MenuCreateCmd":{"type":"object","properties":{"path":{"type":"string","title":"路径"},"component":{"type":"string","title":"组件"},"name":{"type":"string","title":"菜单名称"},"pid":{"type":"string","title":"上级菜单Id"},"type":{"type":"string","title":"菜单类型"},"platformId":{"type":"string","title":"平台id"},"roleId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色Id"},"hideInMenu":{"type":"boolean","title":"是否隐藏"},"permissionId":{"type":"integer","format":"int64","title":"权限Id"},"icon":{"type":"string","title":"菜单图标"},"iconColor":{"type":"string","title":"图标颜色"},"bgColorClass":{"type":"string","title":"背景颜色类名"}},"required":["component","name","path","platformId","type"],"title":"创建菜单请求"},"MaterialCreateCmd":{"type":"object","properties":{"name":{"type":"string","title":"素材内容标题"},"categoryId":{"type":"string","title":"分类ID"},"path":{"type":"string","title":"素材内容路劲"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"}},"title":"创建素材内容"},"CategoryCreateCmd":{"type":"object","properties":{"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"example":"视频","title":"分类类型"},"name":{"type":"string","example":"名称","title":"分类名称"},"pid":{"type":"string","example":"名称","title":"上级分类id"},"sort":{"type":"integer","format":"int32","example":"排序","title":"排序"}},"title":"分类创建"},"GiftBoxCreateCmd":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"costPrice":{"type":"number","title":"成本价"},"weight":{"type":"number","title":"重量(kg)"},"salePrice":{"type":"number","title":"售价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["boxId","costPrice","name","salePrice","status","weight"],"title":"礼盒创建"},"ExpenseRecordCreateCmd":{"type":"object","properties":{"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"},"expenseCostList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseCost"},"title":"花销费用明细"},"expenseProvisionList":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseProvision"},"title":"花销计提明细"}},"title":"花销统计记录创建"},"EmployeeCreateCmd":{"type":"object","properties":{"name":{"type":"string","minLength":1,"title":"姓名"},"number":{"type":"string","minLength":1,"title":"工号"},"gender":{"type":"integer","format":"int32","title":"性别"},"phone":{"type":"string","minLength":1,"pattern":"^(1[3-9])\\d{9}$","title":"手机号"},"remark":{"type":"string","maxLength":200,"minLength":0,"title":"备注"},"status":{"type":"boolean","title":"状态"},"username":{"type":"string","example":18367831980,"maxLength":20,"minLength":4,"title":"登录账号"},"password":{"type":"string","example":18367831980,"maxLength":20,"minLength":8,"pattern":"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$","title":"登录密码"},"roleId":{"type":"array","items":{"type":"integer","format":"int64"},"title":"角色ID"}},"required":["gender","name","number","password","phone","roleId","status","username"],"title":"员工信息创建"},"DictionaryCreateCmd":{"type":"object","properties":{"id":{"type":"integer","format":"int32","title":"自增id"},"code":{"type":"string","title":"代码"},"name":{"type":"string","title":"字典名称"},"parentId":{"type":"string","title":"上级id"},"sortNo":{"type":"integer","format":"int32","title":"排序号"},"type":{"type":"string","title":"类型"}},"title":"字典创建"},"DealerCreateCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商ID"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"receivable":{"type":"number","title":"应收金额"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["dealerId","dealerType","shortName","status"],"title":"经销商表创建"},"DealerWarehouseCreateCmd":{"type":"object","properties":{"warehouseId":{"type":"string","title":"仓库ID"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商账户ID"},"name":{"type":"string","title":"仓库名称"},"address":{"type":"string","title":"仓库地址"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"receiverName":{"type":"string","title":"收货人姓名"},"receiverPhone":{"type":"string","title":"收货人电话"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"}},"required":["accountId","address","dealerId","name","status","warehouseId"],"title":"经销商仓库创建"},"DealerRebateCustomerCreateCmd":{"type":"object","properties":{"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"remark":{"type":"string","title":"备注"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式:1_按净重计算;2_固定金额;3_不固定"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"}},"required":["customerId","dealerId","name","status"],"title":"经销商返点客户创建"},"DealerPaymentAccountCreateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"dealerId":{"type":"string","title":"经销商ID"},"companyName":{"type":"string","title":"公司名称"},"taxNumber":{"type":"string","title":"税号"},"bankAccount":{"type":"string","title":"银行账号"},"companyAddress":{"type":"string","title":"单位地址"},"phone":{"type":"string","title":"电话"},"openingBank":{"type":"string","title":"开户行"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["accountId","bankAccount","companyName","dealerId","taxNumber"],"title":"经销商付款账户创建"},"DealerAccountRecordCreateCmd":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"应收账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"beforeAmount":{"type":"number","title":"变动前金额"},"amount":{"type":"number","title":"变动金额"},"afterAmount":{"type":"number","title":"变动后金额"},"remark":{"type":"string","title":"备注"}},"required":["afterAmount","amount","beforeAmount","dealerAccountRecordId","dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细创建"},"CostCreateCmd":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"},"price":{"type":"number","title":"单价"},"unit":{"type":"string","title":"单位"},"remark":{"type":"string","title":"备注"},"isDefault":{"type":"boolean","title":"是否默认"},"sort":{"type":"number","title":"排序号"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"成本项ID"}},"required":["belong","costId","name","sort","status","type"],"title":"费用创建"},"CostItemCreateCmd":{"type":"object","properties":{"costItemId":{"type":"string","title":"项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"rule":{"type":"string","enum":["INPUT_QUANTITY","SELECT_BOX","INPUT_QUANTITY_AND_AMOUNT"],"title":"录入规则:1_填数量;2_选纸箱;"},"costId":{"type":"integer","format":"int64","title":"费用ID"},"name":{"type":"string","title":"项目名称"},"unit":{"type":"string","title":"单位"},"price":{"type":"number","title":"单价"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["costId","costItemId","name","price","rule","status","type","unit"],"title":"费用项目创建"},"CompanyCreateCmd":{"type":"object","properties":{"companyId":{"type":"string","title":"公司ID"},"logo":{"type":"string","title":"公司logo"},"shortName":{"type":"string","title":"公司简称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"contactPerson":{"type":"string","title":"联系人"},"contactPhone":{"type":"string","title":"联系电话"},"address":{"type":"string","title":"发货地址"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"}},"required":["address","companyId","contactPerson","contactPhone","fullName","shortName","status","taxNumber"],"title":"公司管理创建"},"CompanyPaymentAccountCreateCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"bankName":{"type":"string","title":"银行名称"},"branchName":{"type":"string","title":"支行名称"},"publicAccountType":{"type":"string","enum":["BASIC_ACCOUNT","GENERAL_ACCOUNT","SPECIAL_ACCOUNT","TEMPORARY_ACCOUNT"],"title":"对公账户类型:1_基本户;2_一般户;3_专用账户;4_临时户"},"accountName":{"type":"string","title":"开户公司名称、支付宝昵称、微信号"},"accountNumber":{"type":"string","title":"银行账号、支付宝账号、微信账号"},"isPrimary":{"type":"boolean","title":"是否主付款账户:0_否;1_是"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;2_禁用;"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"}},"required":["accountCategory","accountId","accountName","accountNumber","accountType","companyId","isPrimary","status"],"title":"公司付款账户创建"},"ChannelCreateCmd":{"type":"object","properties":{"domain":{"type":"string","title":"域名"},"logo":{"type":"string","title":"Logo"},"title":{"type":"string","title":"标题"},"subTitle":{"type":"string","title":"副标题"},"backgroundImageUrl":{"type":"string","title":"背景图片"},"technicalSupport":{"type":"string","title":"技术支持"}},"title":"渠道新增"},"BoxSpecCreateCmd":{"type":"object","properties":{"specId":{"type":"string","title":"规格ID"},"name":{"type":"string","title":"规格名称"},"sort":{"type":"number","title":"排序号"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"}},"required":["name","sort","specId","status"],"title":"纸箱规格创建"},"BoxProductCreateCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品ID"},"name":{"type":"string","title":"纸箱名称"},"weight":{"type":"number","title":"重量(kg)"},"costPrice":{"type":"number","title":"成本价"},"salePrice":{"type":"number","title":"销售价"},"specId":{"type":"string","title":"规格ID"},"specName":{"type":"string","title":"规格名称"},"brandId":{"type":"string","title":"品牌ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","productId","status","type"],"title":"纸箱产品创建"},"BoxBrandCreateCmd":{"type":"object","properties":{"brandId":{"type":"string","title":"品牌ID"},"name":{"type":"string","title":"品牌名称"},"image":{"type":"string","title":"品牌图片URL"},"specIds":{"type":"array","items":{"type":"integer","format":"int64"},"title":"纸箱规格ID"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"required":["brandId","name","status","type"],"title":"纸箱品牌创建"},"AgreementCreateCmd":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议id"},"scene":{"type":"array","items":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"]},"title":"使用场景"},"title":{"type":"string","title":"协议标题"},"subTitle":{"type":"string","title":"副标题"},"content":{"type":"string","title":"协议内容"}},"required":["agreementId"],"title":"协议创建"},"MaterialBatchAddCmd":{"type":"object","properties":{"materialCreateCmdList":{"type":"array","items":{"$ref":"#/components/schemas/MaterialCreateCmd"},"title":"创建素材内容"}},"title":"创建素材内容"},"MultiResponseMaterialVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/MaterialVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"OrderApproveCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"},"active":{"type":"integer","format":"int32","title":"步骤标识"},"originPrincipal":{"type":"string","title":"产地负责人"},"foreman":{"type":"string","title":"工头"},"remark":{"type":"string","title":"备注"},"orderVehicle":{"$ref":"#/components/schemas/OrderVehicle","title":"车辆信息"},"orderDealer":{"$ref":"#/components/schemas/OrderDealer","title":"经销商信息"},"orderSupplierList":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplier"},"title":"供应商信息"},"orderCostList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCost"},"title":"采购订单费用信息"},"orderCostItemList":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostItem"},"title":"采购订单费用信息"},"orderPackageList":{"type":"array","items":{"$ref":"#/components/schemas/OrderPackage"},"title":"采购订单包装箱信息"},"auditId":{"type":"string","title":"审核ID"},"draft":{"type":"boolean","title":"是否是暂存"},"pricingMethod":{"type":"string","enum":["BY_GROSS_WEIGHT","BY_NET_WEIGHT"],"title":"报价方式:1_按毛重报价;2_按净重报价;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderRebate":{"$ref":"#/components/schemas/OrderRebate","title":"返点信息"},"orderShipList":{"type":"array","items":{"$ref":"#/components/schemas/OrderShip"},"title":"发货单信息"}},"required":["auditId","draft","orderCompany","orderCostItemList","orderCostList","orderDealer","orderId","orderPackageList","orderRebate","orderShipList","orderSupplierList","orderVehicle"],"title":"采购订单审核(审核员审核)"},"MenuTreeQry":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"pid":{"type":"string","title":"父级id"}},"title":"菜单请求"},"MultiResponseTreeLong":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/TreeLong"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"TreeLong":{"type":"object","additionalProperties":{},"properties":{"name":{"type":"object","properties":{"empty":{"type":"boolean"}}},"id":{"type":"integer","format":"int64"},"parentId":{"type":"integer","format":"int64"},"config":{"$ref":"#/components/schemas/TreeNodeConfig"},"weight":{},"empty":{"type":"boolean"}}},"TreeNodeConfig":{"type":"object","properties":{"idKey":{"type":"string"},"parentIdKey":{"type":"string"},"weightKey":{"type":"string"},"nameKey":{"type":"string"},"childrenKey":{"type":"string"},"deep":{"type":"integer","format":"int32"}}},"CategoryTreeQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"typeList":{"type":"array","items":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"]},"title":"分类类型"},"name":{"type":"string","title":"分类名称"}},"title":"分类"},"PaymentTaskStatisticsQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"taskType":{"type":"integer","format":"int32","description":"按任务类型筛选统计","title":"任务类型"}},"title":"付款任务统计查询"},"PaymentTaskStatisticsVO":{"type":"object","properties":{"pendingCount":{"type":"integer","format":"int64","description":"状态为待付款的数量","title":"待付款数量"},"partialCount":{"type":"integer","format":"int64","description":"状态为部分付款的数量","title":"部分付款数量"},"completedCount":{"type":"integer","format":"int64","description":"状态为已完成的数量","title":"已完成数量"},"cancelledCount":{"type":"integer","format":"int64","description":"状态为已取消的数量","title":"已取消数量"},"totalCount":{"type":"integer","format":"int64","description":"所有状态的总数量","title":"总数量"}},"title":"付款任务统计响应"},"SingleResponsePaymentTaskStatisticsVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/PaymentTaskStatisticsVO"}}},"UserShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"查询用户请求"},"SupplierShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"}},"title":"供应商查询"},"SupplierInvoiceShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"title":"瓜农发票查询"},"SettingShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"settingKey":{"type":"string","enum":["WX_MA_CONFIG","WX_MA_MESSAGE_PUSH_CONFIG","WX_MA_SUBSCRIBE_MESSAGE_CONFIG","WX_MA_CODE_UPLOAD_CONFIG","WX_PAY_CONFIG","TENCENT_MAP_CONFIG","SMS_CONFIG","VIRTUAL_PHONE_CONFIG","WX_MP_CONFIG","WX_MP_MESSAGE_PUSH_CONFIG","ALI_PAY_CONFIG","CHARGING_PILE_PURCHASE_CONFIG","CUSTOM_THEME_CONFIG","CUSTOM_MENU_CONFIG","WX_CP_NOTIFY_CONFIG","SMART_RECOGNITION_PROMPT"],"title":"系统设置项key"}},"required":["settingKey"],"title":"设置查询"},"RoleShowQry":{"type":"object","properties":{"roleId":{"type":"string","title":"角色编号"}},"title":"角色查询"},"ProductShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"产品表ID"}},"title":"产品表查询"},"PlatformShowQry":{"type":"object","properties":{"platformId":{"type":"string","title":"平台ID"}},"required":["platformId"],"title":"平台查询"},"PermissionShowQry":{"type":"object","properties":{"permissionId":{"type":"string","title":"权限Id"}},"required":["permissionId"],"title":"权限查询"},"PaymentTaskShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentTaskId":{"type":"string","title":"付款任务ID"}},"title":"付款任务查询"},"PaymentRecordShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentRecordId":{"type":"string","title":"付款记录ID"}},"title":"付款记录查询"},"OrderShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"采购订单ID"},"orderShipId":{"type":"string","title":"采购订单发货ID"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"}},"title":"采购订单查询"},"OrderShipShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderShipId":{"type":"string","title":"发货单ID"},"orderId":{"type":"string","title":"采购单ID"}},"title":"发货单查询"},"OrderCostShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderCostId":{"type":"string","title":"费用ID"}},"required":["orderCostId"],"title":"订单成本项详情查询"},"MenuShowQry":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单Id"}},"required":["menuId"],"title":"菜单详情"},"MaterialShowQry":{"type":"object","properties":{"materialId":{"type":"string","title":"素材内容ID"}},"required":["materialId"],"title":"素材内容请求"},"CategoryShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"categoryId":{"type":"string","title":"分类Id"}},"required":["categoryId"],"title":"分类"},"GiftBoxShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"boxId":{"type":"string","title":"礼盒ID"}},"title":"礼盒查询"},"ExpenseRecordShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"expenseRecordId":{"type":"string","title":"花销统计记录ID"},"recordDate":{"type":"string","format":"date","title":"记录日期(YYYY-MM-DD)"}},"title":"花销统计记录查询"},"EmployeeShowQry":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"},"userId":{"type":"string","title":"用户ID"},"platformId":{"type":"string","title":"平台ID"}},"title":"员工信息查询"},"DictionaryShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dictionaryId":{"type":"string","title":"字典ID"}},"title":"字典查询"},"DealerShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商表ID"}},"title":"经销商表查询"},"DealerWarehouseShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"warehouseId":{"type":"string","title":"经销商仓库ID"},"accountId":{"type":"string","title":"经销商付款账户ID"},"dealerId":{"type":"string","title":"经销商ID"}},"title":"经销商仓库查询"},"DealerRebateCustomerShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"customerId":{"type":"string","title":"经销商返点客户ID"},"dealerId":{"type":"string","title":"经销商ID"}},"title":"经销商返点客户查询"},"DealerPaymentAccountShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"经销商付款账户ID"},"dealerId":{"type":"string","title":"经销商ID"}},"title":"经销商付款账户查询"},"DealerAccountRecordShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"}},"title":"经销商账款明细查询"},"CostShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costId":{"type":"string","title":"费用ID"}},"title":"费用查询"},"CostItemShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costItemId":{"type":"string","title":"费用项目ID"}},"title":"费用项目查询"},"CompanyShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"companyId":{"type":"string","title":"公司管理ID"}},"title":"公司管理查询"},"CompanyPaymentAccountShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"公司付款账户ID"}},"title":"公司付款账户查询"},"ChannelShowQry":{"type":"object","properties":{"channelId":{"type":"string","title":"渠道编号"},"domain":{"type":"string","title":"域名"}},"required":["channelId"],"title":"渠道查询"},"BoxSpecShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"specId":{"type":"string","title":"纸箱规格ID"}},"title":"纸箱规格查询"},"BoxProductShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"纸箱产品ID"}},"title":"纸箱产品查询"},"BoxBrandShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"brandId":{"type":"string","title":"纸箱品牌ID"}},"title":"纸箱品牌查询"},"AuditShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"auditId":{"type":"string","title":"审核ID"}},"title":"审核查询"},"AgreementShowQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"agreementId":{"type":"string","title":"协议ID"}},"title":"协议查询"},"UserPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"keyword":{"type":"string","title":"关键词"},"cardNo":{"type":"string","title":"会员卡号"},"phone":{"type":"string","title":"会员手机号码"},"name":{"type":"string","title":"会员名称"},"nickname":{"type":"string","title":"会员昵称"},"createdAt":{"type":"array","items":{"type":"string","format":"date-time"},"title":"查询创建时间"},"isBindPhone":{"type":"boolean","title":"是否绑定手机号码"},"gender":{"type":"integer","format":"int32","title":"性别"},"bindPhoneAt":{"type":"array","items":{"type":"string","format":"date-time"},"title":"查询绑定手机号码时间"},"state":{"type":"array","items":{"type":"string","enum":["ENABLE","DISABLE"]},"title":"状态"},"isAdmin":{"type":"boolean","title":"是否是管理员"},"userIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"会员id列表"},"excludeUserIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"排除的用户id列表"},"communityId":{"type":"integer","format":"int64","title":"小区id"},"offset":{"type":"integer","format":"int32"}},"title":"查询用户分页请求"},"PageResponseUserVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/UserVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"SupplierPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"供应商名称"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"bankCard":{"type":"string","title":"银行卡号"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"offset":{"type":"integer","format":"int32"}},"title":"供应商分页查询"},"PageResponseSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"SupplierInvoicePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"},"invoiceSn":{"type":"string","title":"瓜农发票编号"},"supplierId":{"type":"string","title":"瓜农发票开具人"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"offset":{"type":"integer","format":"int32"}},"title":"瓜农发票分页查询"},"PageResponseSupplierInvoiceVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierInvoiceVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"RolePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"name":{"type":"string","title":"角色名称"},"slug":{"type":"string","title":"角色标识"},"type":{"type":"string","title":"角色类型"},"roleId":{"type":"string","title":"角色编号"},"platformId":{"type":"string","title":"平台id"},"offset":{"type":"integer","format":"int32"}},"title":"角色分页查询"},"PageResponseRoleVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/RoleVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"ProductPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"产品表ID"},"offset":{"type":"integer","format":"int32"}},"title":"产品表分页查询"},"PageResponseProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PlatformPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"platformId":{"type":"string","title":"平台ID"},"offset":{"type":"integer","format":"int32"}},"required":["platformId"],"title":"平台分页查询"},"PageResponsePlatformVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PlatformVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PermissionPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"slug":{"type":"string","title":"权限标识"},"name":{"type":"string","title":"权限名称"},"offset":{"type":"integer","format":"int32"}},"title":"权限分页查询"},"PageResponsePermissionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PermissionVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PaymentTaskPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"taskName":{"type":"string","title":"付款任务名称"},"taskType":{"type":"string","enum":["MELON_FARMER"],"title":"任务类型:1-瓜农付款任务"},"paymentTaskSn":{"type":"string","title":"付款编码"},"state":{"type":"string","enum":["PENDING","PARTIAL","COMPLETED","CANCELLED"],"title":"付款状态:0-待付款任务,1-部分付款任务,2-已完成任务,3-已取消任务"},"supplierId":{"type":"integer","format":"int64","title":"供应商ID"},"offset":{"type":"integer","format":"int32"}},"title":"付款任务分页查询"},"PageResponsePaymentTaskVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentTaskVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"PaymentRecordPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentRecordId":{"type":"string","title":"付款记录ID"},"targetType":{"type":"string","enum":["SUPPLIER","ORDER_COST"],"title":"付款对象类型:1_瓜农;2_成本项"},"paidState":{"type":"string","enum":["DRAFT","PAID"],"title":"支付状态:1_草稿;2_已支付;"},"paidAt":{"type":"string","format":"date-time","title":"支付时间"},"companyId":{"type":"string","title":"付款公司ID"},"paymentRecordSn":{"type":"string","title":"付款编码"},"paymentTaskId":{"type":"string","title":"付款任务ID"},"supplierId":{"type":"string","title":"供应商ID"},"costId":{"type":"string","title":"成本项ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"accountType":{"type":"string","enum":["BANK_CARD","ALIPAY","WECHAT"],"title":"账户类型:1_银行卡;2_支付宝;3_微信"},"offset":{"type":"integer","format":"int32"}},"title":"付款记录分页查询"},"PageResponsePaymentRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"采购订单ID"},"vehicleNo":{"type":"string","title":"车辆编号"},"orderSn":{"type":"string","title":"采购订单编号"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"supplierName":{"type":"string","title":"供应商名称"},"dealerId":{"type":"string","title":"经销商ID"},"supplierId":{"type":"string","title":"供应商ID"},"offset":{"type":"integer","format":"int32"}},"title":"采购订单分页查询"},"PageResponseOrderVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderSupplierPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderSupplierId":{"type":"string","title":"订单供应商ID"},"orderId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商id"},"deliveryTime":{"type":"array","items":{"type":"string","format":"date-time"},"title":"发货日期"},"invoiceUpload":{"type":"boolean","title":"瓜农发票上传"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"poType":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"订单类型"},"isPaid":{"type":"boolean","title":"是否支付"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"},"invoiceId":{"type":"string","title":"发票ID"},"offset":{"type":"integer","format":"int32"}},"title":"订单供应商分页查询"},"PageResponseOrderSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderSupplierVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderShipPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderShipId":{"type":"string","title":"发货单ID"},"vehicleNo":{"type":"string","title":"车辆编号"},"orderSn":{"type":"string","title":"采购订单编号"},"state":{"type":"string","enum":["DRAFT","WAIT_SHIPMENT","WAIT_PAYMENT","WAIT_CHANGE","PARTIAL_PAYMENT","FULL_PAYMENT","REJECT_FINISH","FINISH"],"title":"发货单状态:0_草稿;1_待发货;2_待回款;3_待改签;4_部分回款;5_已回款;6_拒收完结;7_已完结;"},"type":{"type":"string","enum":["PURCHASE_SHIP","TRANSFER_SHIP","CHANGE_SHIP","RETURN_SHIP"],"title":"发货单类型:1_采购发货;2_调货发货;3_改签发货;4_退货发货"},"supplierName":{"type":"string","title":"供应商名称"},"dealerId":{"type":"string","title":"经销商ID"},"offset":{"type":"integer","format":"int32"}},"title":"发货单分页查询"},"PageResponseOrderShipVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderRebatePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"订单ID"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"poType":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"订单类型"},"isPaid":{"type":"boolean","title":"是否支付"},"offset":{"type":"integer","format":"int32"}},"title":"订单返点分页查询"},"OrderRebateVO":{"type":"object","properties":{"orderRebateId":{"type":"string","title":"记录ID"},"orderId":{"type":"string","title":"订单ID"},"customerId":{"type":"string","title":"客户ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT"],"title":"返点计算方式:1_按净重计算;2_固定金额;"},"netWeight":{"type":"number","title":"返点净重"},"unitPrice":{"type":"number","title":"返点单价"},"amount":{"type":"number","title":"返点金额"},"createdAt":{"type":"string","format":"date-time","title":"创建时间"},"poState":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"orderCompany":{"$ref":"#/components/schemas/OrderCompany","title":"公司信息"},"orderVO":{"$ref":"#/components/schemas/OrderVO","title":"采购订单信息"},"isPaid":{"type":"boolean","title":"是否付款"}},"required":["createdAt","orderCompany","orderVO"]},"PageResponseOrderRebateVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderRebateVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OrderCostPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"订单ID"},"costId":{"type":"string","title":"订单ID"},"supplierId":{"type":"string","title":"供应商id"},"poStates":{"type":"array","items":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"]},"title":"订单状态"},"poType":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"订单类型"},"belongs":{"type":"array","items":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"]},"title":"所属方"},"isPaid":{"type":"boolean","title":"是否支付"},"offset":{"type":"integer","format":"int32"}},"title":"订单成本分页查询"},"PageResponseOrderCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderCostVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"MaterialPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"title":{"type":"string","title":"素材内容标题"},"type":{"type":"string","enum":["FILE_IMAGE","FILE_VIDEO","PRODUCT","CUSTOMER_INTENTION","COURSE","ROOM","SPEECH"],"title":"素材类型"},"materialId":{"type":"string","title":"素材内容ID"},"categoryId":{"type":"string","title":"分类ID"},"offset":{"type":"integer","format":"int32"}},"title":"素材内容分页请求"},"PageResponseMaterialVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/MaterialVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"GiftBoxPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"boxId":{"type":"string","title":"礼盒ID"},"name":{"type":"string","title":"礼盒名称"},"offset":{"type":"integer","format":"int32"}},"title":"礼盒分页查询"},"PageResponseGiftBoxVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/GiftBoxVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"EmployeePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"employeeId":{"type":"string","title":"员工信息ID"},"name":{"type":"string","title":"姓名"},"number":{"type":"string","title":"工号"},"phone":{"type":"string","title":"手机号"},"status":{"type":"integer","format":"int32","title":"状态"},"offset":{"type":"integer","format":"int32"}},"required":["employeeId","name","number","phone"],"title":"员工信息分页查询"},"PageResponseEmployeeVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DictionaryPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dictionaryId":{"type":"string","title":"字典ID"},"name":{"type":"string","title":"字典名称"},"type":{"type":"string","title":"字典类型"},"offset":{"type":"integer","format":"int32"}},"title":"字典分页查询"},"PageResponseDictionaryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DictionaryVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"shortName":{"type":"string","title":"经销商简称"},"fullName":{"type":"string","title":"经销商全称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"],"title":"经销商类型:1_市场;2_超市;"},"offset":{"type":"integer","format":"int32"}},"title":"经销商表分页查询"},"PageResponseDealerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerWarehousePageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商付款账户ID"},"offset":{"type":"integer","format":"int32"}},"title":"经销商仓库分页查询"},"PageResponseDealerWarehouseVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerWarehouseVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerRebateCustomerPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式"},"offset":{"type":"integer","format":"int32"}},"title":"经销商返点客户分页查询"},"PageResponseDealerRebateCustomerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerRebateCustomerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerPaymentAccountPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"offset":{"type":"integer","format":"int32"}},"title":"经销商付款账户分页查询"},"PageResponseDealerPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"DealerAccountRecordPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"},"recordSn":{"type":"string","title":"流水编号"},"dealerId":{"type":"string","title":"经销商ID"},"orderId":{"type":"string","title":"订单ID"},"targetId":{"type":"string","title":"变动对象ID"},"targetType":{"type":"string","enum":["ORIGIN_PURCHASE_SHIP","MARKET_PURCHASE_SHIP","MARKET_TRANSFER_SHIP"],"title":"变动类型:1-产地采购发货单;2-市场采购发货单;3-市场调货发货单;"},"offset":{"type":"integer","format":"int32"}},"required":["dealerId","orderId","recordSn","targetId","targetType"],"title":"经销商账款明细分页查询"},"PageResponseDealerAccountRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerAccountRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CostPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"offset":{"type":"integer","format":"int32"}},"title":"费用分页查询"},"PageResponseCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CostItemPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costItemId":{"type":"string","title":"费用项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"},"name":{"type":"string","title":"项目名称"},"offset":{"type":"integer","format":"int32"}},"title":"费用项目分页查询"},"PageResponseCostItemVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostItemVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CompanyPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"companyId":{"type":"string","title":"公司管理ID"},"shortName":{"type":"string","title":"公司名称"},"fullName":{"type":"string","title":"公司全称"},"taxNumber":{"type":"string","title":"税号"},"offset":{"type":"integer","format":"int32"}},"title":"公司管理分页查询"},"PageResponseCompanyVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"CompanyPaymentAccountPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"公司付款账户ID"},"companyId":{"type":"string","title":"公司ID"},"accountName":{"type":"string","title":"付款账户名称"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"},"offset":{"type":"integer","format":"int32"}},"title":"公司付款账户分页查询"},"PageResponseCompanyPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"ChannelPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"domain":{"type":"string","title":"域名"},"offset":{"type":"integer","format":"int32"}},"title":"渠道分页查询"},"PageResponseChannelVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ChannelVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"BoxSpecPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"specId":{"type":"string","title":"纸箱规格ID"},"offset":{"type":"integer","format":"int32"}},"title":"纸箱规格分页查询"},"PageResponseBoxSpecVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxSpecVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"BoxProductPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"纸箱产品ID"},"name":{"type":"string","title":"纸箱产品名称"},"brandId":{"type":"string","title":"纸箱品牌ID"},"specId":{"type":"string","title":"规格ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"offset":{"type":"integer","format":"int32"}},"title":"纸箱产品分页查询"},"PageResponseBoxProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"BoxBrandPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"brandId":{"type":"string","title":"纸箱品牌ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"},"offset":{"type":"integer","format":"int32"}},"title":"纸箱品牌分页查询"},"PageResponseBoxBrandVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxBrandVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"AuditPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"auditId":{"type":"string","title":"审核ID"},"type":{"type":"string","enum":["REVIEWER_AUDIT","BOSS_AUDIT"],"title":"审核类型:1_报价审核员审核;2_老板审核"},"state":{"type":"string","enum":["WAITING_AUDIT","AUDITING","AUDIT_SUCCESS","AUDIT_REJECTED","AUDIT_CANCEL"],"title":"审核状态: 1_待审核;2_审核中;3_审核通过;4_审核驳回;5_审核撤回"},"subjectType":{"type":"string","enum":["PURCHASE_ORDER"],"title":"审核对象类型:1_采购单;"},"offset":{"type":"integer","format":"int32"}},"title":"审核分页查询"},"PageResponseAuditVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/AuditVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"AgreementPageQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"agreementId":{"type":"string","title":"协议ID"},"scene":{"type":"string","title":"协议类型"},"offset":{"type":"integer","format":"int32"}},"title":"协议分页查询"},"PageResponseAgreementVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"totalCount":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"data":{"type":"array","items":{"$ref":"#/components/schemas/AgreementVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"},"totalPages":{"type":"integer","format":"int32"}}},"OssTokenVO":{"type":"object","properties":{"securityToken":{"type":"string"},"accessKeySecret":{"type":"string"},"accessKeyId":{"type":"string"},"domain":{"type":"string"},"bucket":{"type":"string"},"region":{"type":"string"}},"title":"商家响应"},"SingleResponseOssTokenVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"$ref":"#/components/schemas/OssTokenVO"}}},"UserListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"userIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"用户ID"},"name":{"type":"string","title":"用户名"}},"title":"查询用户请求"},"MultiResponseUserVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/UserVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"SupplierListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"供应商名称"},"type":{"type":"string","enum":["FARMER","STALL","OTHER_STALL"],"title":"供应商类型:1_瓜农;2_自家档口;3_其他家档口"}},"title":"供应商列表查询"},"MultiResponseSupplierVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"SupplierInvoiceListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"title":"瓜农发票列表查询"},"MultiResponseSupplierInvoiceVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/SupplierInvoiceVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"RoleListQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"name":{"type":"string","title":"角色名称"},"userId":{"type":"string","title":"用户Id"},"roleId":{"type":"string","title":"角色编号"},"roleIdList":{"type":"array","items":{"type":"integer","format":"int64"},"title":"应用角色Id"},"platformId":{"type":"string","title":"平台Id"},"platformIdList":{"type":"string","title":"平台Id"},"type":{"type":"integer","format":"int32","title":"角色类型"},"offset":{"type":"integer","format":"int32"}},"title":"角色查询"},"MultiResponseRoleVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/RoleVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"ProductListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"产品表ID"}},"title":"产品表列表查询"},"MultiResponseProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PlatformListQry":{"title":"平台列表查询"},"MultiResponsePlatformVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PlatformVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PermissionListQry":{"title":"权限查询"},"MultiResponsePermissionVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PermissionVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PaymentTaskListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentTaskId":{"type":"string","title":"付款任务ID"}},"title":"付款任务列表查询"},"MultiResponsePaymentTaskVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentTaskVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"PaymentRecordListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"paymentRecordId":{"type":"string","title":"付款记录ID"}},"title":"付款记录列表查询"},"MultiResponsePaymentRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/PaymentRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"OrderListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderId":{"type":"string","title":"采购订单ID"},"dealerId":{"type":"string","title":"经销商ID"},"orderSn":{"type":"string","title":"采购订单编号"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"},"month":{"type":"string","title":"月份"}},"title":"采购订单列表查询"},"MultiResponseOrderVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"OrderShipListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"orderShipId":{"type":"string","title":"发货单ID"}},"title":"发货单列表查询"},"MultiResponseOrderShipVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/OrderShipVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"MenuListQry":{"type":"object","properties":{"platformId":{"type":"string","title":"平台id"},"pid":{"type":"string","title":"父级id"}},"title":"菜单请求"},"MultiResponseMenuVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/MenuVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"GiftBoxListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"boxId":{"type":"string","title":"礼盒ID"}},"title":"礼盒列表查询"},"MultiResponseGiftBoxVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/GiftBoxVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"ExpenseRecordListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"startDate":{"type":"string","title":"开始日期"},"endDate":{"type":"string","title":"结束日期"}},"title":"花销统计记录列表查询"},"MultiResponseExpenseRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ExpenseRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"EmployeeListQry":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"}},"required":["employeeId"],"title":"员工信息列表查询"},"MultiResponseEmployeeVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DictionaryListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dictionaryId":{"type":"string","title":"字典ID"},"type":{"type":"string","title":"字典类型"}},"title":"字典列表查询"},"MultiResponseDictionaryVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DictionaryVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商表ID"},"shortName":{"type":"string","title":"经销商简称"},"dealerType":{"type":"string","enum":["MARKET","SUPERMARKET"]}},"title":"经销商表列表查询"},"MultiResponseDealerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerWarehouseListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"accountId":{"type":"string","title":"经销商付款账户ID"},"name":{"type":"string","title":"仓库名称"}},"title":"经销商仓库列表查询"},"MultiResponseDealerWarehouseVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerWarehouseVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerRebateCustomerListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"name":{"type":"string","title":"客户名称"},"calcMethod":{"type":"string","enum":["NET_WEIGHT","FIXED_AMOUNT","NOT_FIXED"],"title":"返点计算方式"}},"title":"经销商返点客户列表查询"},"MultiResponseDealerRebateCustomerVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerRebateCustomerVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerPaymentAccountListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"},"keyword":{"type":"string","title":"关键词"}},"title":"经销商付款账户列表查询"},"MultiResponseDealerPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"DealerAccountRecordListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"}},"title":"经销商账款明细列表查询"},"MultiResponseDealerAccountRecordVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/DealerAccountRecordVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CostListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"costId":{"type":"string","title":"费用ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE","PRODUCTION_TYPE","OTHER_TYPE","LOGISTICS_TYPE","EXPENSE_TYPE"],"title":"费用类型:1_辅料类型;2_人工类型;3_产地类型;4_其他类型;5_物流类型"},"belong":{"type":"string","enum":["NONE_TYPE","WORKER_TYPE","PRODUCTION_TYPE","DRIVER_TYPE"],"title":"费用归属:0_无归属;1_工头;2_产地;3_司机;"},"name":{"type":"string","title":"费用名称"}},"title":"费用列表查询"},"MultiResponseCostVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CostItemListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用"},"costItemId":{"type":"string","title":"费用项目ID"},"type":{"type":"string","enum":["MATERIAL_TYPE","ARTIFICIAL_TYPE"],"title":"项目类型:1_辅料类型;2_人工类型;"}},"title":"费用项目列表查询"},"MultiResponseCostItemVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CostItemVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CompanyListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"companyId":{"type":"string","title":"公司管理ID"}},"title":"公司管理列表查询"},"MultiResponseCompanyVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"CompanyPaymentAccountListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"accountId":{"type":"string","title":"公司付款账户ID"},"accountName":{"type":"string","title":"公司付款账户名称"},"companyName":{"type":"string","title":"公司名称"},"companyId":{"type":"string","title":"公司ID"},"accountCategory":{"type":"string","enum":["COMPANY_ACCOUNT","PRIVATE_ACCOUNT"],"title":"账户类别:1_对公账户;2_私人账户"}},"title":"公司付款账户列表查询"},"MultiResponseCompanyPaymentAccountVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/CompanyPaymentAccountVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"BoxSpecListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"specId":{"type":"string","title":"纸箱规格ID"}},"title":"纸箱规格列表查询"},"MultiResponseBoxSpecVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxSpecVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"BoxProductListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"productId":{"type":"string","title":"纸箱产品ID"},"name":{"type":"string","title":"纸箱产品名称"},"brandId":{"type":"string","title":"纸箱品牌ID"},"specId":{"type":"string","title":"规格ID"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"title":"纸箱产品列表查询"},"MultiResponseBoxProductVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxProductVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"BoxBrandListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"纸箱品牌状态"},"brandId":{"type":"string","title":"纸箱品牌ID"},"withProduct":{"type":"boolean","title":"是否包含纸箱产品"},"type":{"type":"string","enum":["OUR_BOX","FARMER_BOX","THIRD_PARTY_BOX","GIFT_BOX"],"title":"品牌类型:1_我方纸箱;2_瓜农纸箱;3_第三方纸箱;4_礼盒;"}},"title":"纸箱品牌列表查询"},"MultiResponseBoxBrandVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/BoxBrandVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"AgreementListQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"agreementId":{"type":"string","title":"协议ID"},"scene":{"type":"string","enum":["STAKEHOLDER_SETUP","CUSTOMER_SETUP","PERSONAL_CENTER"],"title":"协议类型"}},"title":"协议列表查询"},"MultiResponseAgreementVO":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"array","items":{"$ref":"#/components/schemas/AgreementVO"}},"empty":{"type":"boolean"},"notEmpty":{"type":"boolean"}}},"LastVehicleNoQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"dealerId":{"type":"string","title":"经销商ID"}},"required":["dealerId"],"title":"上一车车次号查询参数"},"SingleResponseString":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"string"}}},"OrderCountQry":{"type":"object","properties":{"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"state":{"type":"string","enum":["DRAFT","AUDITING","COMPLETED","CLOSED"],"title":"采购订单状态: 0_草稿;1_审核中;2_已完成;3_已关闭;"},"auditState":{"type":"string","enum":["NONE","PENDING_QUOTE_APPROVAL","PENDING_BOSS_APPROVAL","BOSS_APPROVED","QUOTE_REJECTED","BOSS_REJECTED"],"title":"采购单审核状态: 1_待报价审核;2_待老板审批;3_老板审批通过;4_报价审核驳回;5_老板审批驳回"},"type":{"type":"string","enum":["PRODUCTION_PURCHASE","MARKET_PURCHASE"],"title":"采购类型:1_产地采购;2_市场采购;"}},"title":"采购订单数量查询"},"SingleResponseLong":{"type":"object","properties":{"success":{"type":"boolean"},"errCode":{"type":"string"},"errMessage":{"type":"string"},"data":{"type":"integer","format":"int64"}}},"SupplierCheckQry":{"type":"object","properties":{"pageSize":{"type":"integer","format":"int32"},"pageIndex":{"type":"integer","format":"int32"},"orderBy":{"type":"string"},"orderDirection":{"type":"string"},"groupBy":{"type":"string"},"needTotalCount":{"type":"boolean"},"customFieldKey":{"type":"string","title":"自定义字段key"},"customFieldValue":{"type":"string","title":"自定义字段value"},"remark":{"type":"string","title":"备注"},"status":{"type":"boolean","title":"状态:1_启用;0_禁用;"},"supplierId":{"type":"string","title":"供应商ID"},"name":{"type":"string","title":"供应商名称"},"idCard":{"type":"string","title":"身份证号"},"phone":{"type":"string","title":"手机号"},"offset":{"type":"integer","format":"int32"}},"title":"供应商检测"},"UserDestroyCmd":{"type":"object","properties":{"userId":{"type":"string","title":"用户ID"}},"required":["userId"],"title":"用户删除命令"},"SupplierDestroyCmd":{"type":"object","properties":{"supplierId":{"type":"string","title":"供应商ID"}},"required":["supplierId"],"title":"删除供应商"},"SupplierInvoiceDestroyCmd":{"type":"object","properties":{"supplierInvoiceId":{"type":"string","title":"瓜农发票ID"}},"required":["supplierInvoiceId"],"title":"删除发票"},"ProductDestroyCmd":{"type":"object","properties":{"productId":{"type":"string","title":"产品表ID"}},"required":["productId"],"title":"删除产品表"},"PlatformDestroyCmd":{"type":"object","properties":{"platformId":{"type":"string","title":"平台ID"}},"required":["platformId"],"title":"删除平台"},"PaymentTaskDestroyCmd":{"type":"object","properties":{"paymentTaskId":{"type":"string","title":"付款任务ID"}},"required":["paymentTaskId"],"title":"删除付款任务"},"PaymentRecordDestroyCmd":{"type":"object","properties":{"paymentRecordId":{"type":"string","title":"付款记录ID"}},"required":["paymentRecordId"],"title":"删除付款记录"},"OrderDestroyCmd":{"type":"object","properties":{"orderId":{"type":"string","title":"采购订单ID"}},"required":["orderId"],"title":"删除采购订单"},"OrderShipDestroyCmd":{"type":"object","properties":{"orderShipId":{"type":"string","title":"发货单ID"}},"required":["orderShipId"],"title":"删除发货单"},"MenuDestroyCmd":{"type":"object","properties":{"menuId":{"type":"string","title":"菜单Id"}},"required":["menuId"],"title":"菜单删除"},"MaterialDestroyCmd":{"type":"object","properties":{"materialId":{"type":"string","title":"素材Id"}},"required":["materialId"],"title":"素材删除"},"CategoryDestroyCmd":{"type":"object","properties":{"categoryId":{"type":"string","title":"分类Id"}},"required":["categoryId"],"title":"分类删除"},"GiftBoxDestroyCmd":{"type":"object","properties":{"boxId":{"type":"string","title":"礼盒ID"}},"required":["boxId"],"title":"删除礼盒"},"EmployeeDestroyCmd":{"type":"object","properties":{"employeeId":{"type":"string","title":"员工信息ID"}},"required":["employeeId"],"title":"删除员工信息"},"DictionaryDestroyCmd":{"type":"object","properties":{"dictionaryId":{"type":"string","title":"字典ID"}},"required":["dictionaryId"],"title":"删除字典"},"DealerDestroyCmd":{"type":"object","properties":{"dealerId":{"type":"string","title":"经销商表ID"}},"required":["dealerId"],"title":"删除经销商表"},"DealerWarehouseDestroyCmd":{"type":"object","properties":{"warehouseId":{"type":"string","title":"经销商仓库ID"}},"required":["warehouseId"],"title":"删除经销商仓库"},"DealerRebateCustomerDestroyCmd":{"type":"object","properties":{"customerId":{"type":"string","title":"经销商返点客户ID"}},"required":["customerId"],"title":"删除经销商返点客户"},"DealerPaymentAccountDestroyCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"经销商付款账户ID"}},"required":["accountId"],"title":"删除经销商付款账户"},"DealerAccountRecordDestroyCmd":{"type":"object","properties":{"dealerAccountRecordId":{"type":"string","title":"经销商账款明细ID"}},"required":["dealerAccountRecordId"],"title":"删除经销商账款明细"},"CostDestroyCmd":{"type":"object","properties":{"costId":{"type":"string","title":"费用ID"}},"required":["costId"],"title":"删除费用"},"CostItemDestroyCmd":{"type":"object","properties":{"costItemId":{"type":"string","title":"费用项目ID"}},"required":["costItemId"],"title":"删除费用项目"},"CompanyDestroyCmd":{"type":"object","properties":{"companyId":{"type":"string","title":"公司管理ID"}},"required":["companyId"],"title":"删除公司管理"},"CompanyPaymentAccountDestroyCmd":{"type":"object","properties":{"accountId":{"type":"string","title":"公司付款账户ID"}},"required":["accountId"],"title":"删除公司付款账户"},"ChannelDestroyCmd":{"type":"object","properties":{"channelId":{"type":"string","title":"渠道ID"}},"required":["channelId"],"title":"渠道删除"},"BoxSpecDestroyCmd":{"type":"object","properties":{"specId":{"type":"string","title":"纸箱规格ID"}},"required":["specId"],"title":"删除纸箱规格"},"BoxProductDestroyCmd":{"type":"object","properties":{"productId":{"type":"string","title":"纸箱产品ID"}},"required":["productId"],"title":"删除纸箱产品"},"BoxBrandDestroyCmd":{"type":"object","properties":{"brandId":{"type":"string","title":"纸箱品牌ID"}},"required":["brandId"],"title":"删除纸箱品牌"},"AgreementDestroyCmd":{"type":"object","properties":{"agreementId":{"type":"string","title":"协议ID"}},"required":["agreementId"],"title":"删除协议"}}}}