| | |
| | | import type { PageParam, PageResult } from '../../../../packages/effects/request/src'; |
| | | import type { PageParam, PageResult } from '@vben/request'; |
| | | |
| | | import { requestClient } from '#/api/request'; |
| | | |
| | |
| | | id?: number; // 编号 |
| | | no?: string; // 申请编号 |
| | | status?: number; // 状态:0未提交 10审批中 20审核通过 30审核不通过 40已取消 |
| | | processInstanceId?: string; // 工作流编号 |
| | | requestUserId?: number; // 申请人编号 |
| | | requestUserName?: string; // 申请人名称 |
| | | requestDeptId?: number; // 申请部门编号 |
| | |
| | | supplierId?: number; // 供应商编号 |
| | | supplierName?: string; // 供应商名称 |
| | | discountPercent?: number; // 优惠率 |
| | | fileUrl?: string; // 附件地址 |
| | | attachmentList?: { id: number; name?: string; url?: string }[]; // 附件列表 |
| | | remark?: string; // 备注 |
| | | totalCount?: number; // 总数量 |
| | | totalPrice?: number; // 总金额 |