Ben Lin
2024-10-17 07895c65b99fa43f8e54f5054bd8351a71158143
src/api/tigerapi/model/mesModel.ts
@@ -289,6 +289,7 @@
export interface SaveWoBatchInput {
  Wo: BIZ_MES_WO;
  WoBatch: BIZ_MES_WO_BATCH;
  IfToCust: boolean;
}
export type OperPageListGetResultModel = BasicFetchResult<OperListItem>;
@@ -505,5 +506,25 @@
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[]
}