| | |
| | | import { requestClient } from '#/api/request'; |
| | | |
| | | export namespace MesProRouteProcessApi { |
| | | /** 工序投料BOM明细 */ |
| | | export interface ProcessBomItem { |
| | | itemId?: number; |
| | | itemCode?: string; |
| | | itemName?: string; |
| | | quantity?: number; |
| | | remark?: string; |
| | | } |
| | | |
| | | /** MES 工艺路线工序 */ |
| | | export interface RouteProcess { |
| | | id?: number; |
| | |
| | | colorCode?: string; |
| | | keyFlag?: boolean; |
| | | checkFlag?: boolean; |
| | | backflushFlag?: boolean; |
| | | outputItemId?: number; |
| | | outputItemCode?: string; |
| | | outputItemName?: string; |
| | | remark?: string; |
| | | bomItems?: ProcessBomItem[]; |
| | | createTime?: Date; |
| | | } |
| | | } |