| | |
| | | export interface SaveWoBatchInput { |
| | | Wo: BIZ_MES_WO; |
| | | WoBatch: BIZ_MES_WO_BATCH; |
| | | IfToCust: boolean; |
| | | } |
| | | |
| | | export type OperPageListGetResultModel = BasicFetchResult<OperListItem>; |
| | |
| | | |
| | | export interface ProdRotInput extends RouteInput { |
| | | prodCode: string; |
| | | custCode: string; |
| | | isDefault: boolean; |
| | | } |
| | | |
| | | /** |
| | | * @description: 工艺路线树形 |
| | | * @return {*} |
| | | */ |
| | | export interface MesRotTree { |
| | | org: string; |
| | | pid: string; |
| | | tid: string; |
| | | id: string; |
| | | code: string; |
| | | name: string; |
| | | type: string; |
| | | seq: string; |
| | | isDefault: boolean; |
| | | level: number; |
| | | cust:string; |
| | | children: MesRotTree[] |
| | | } |