Ben Lin
2024-10-22 78999ce1626d2a786f3a705281eeba79c2f1d6dd
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,30 @@
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[]
}
export interface PageRotTree {
  name: string;
  treeInfo: MesRotTree[];
}