YangYuGang
2025-04-14 6a7257f9d8f659c508cf826726126c0fa4363eef
src/api/tigerapi/model/mesModel.ts
@@ -311,6 +311,7 @@
  rotId: string;
  rotCode: string;
  prodCode: string;
  custCode: string;
}
export interface BizMesWoInput {
@@ -510,6 +511,10 @@
  isDefault: boolean;
}
export interface WoRotInput extends RouteInput {
  wo: string;
}
/**
 * @description: 工艺路线树形
 * @return {*}
@@ -525,6 +530,40 @@
  seq: string;
  isDefault: boolean;
  level: number;
  cust:string;
  children: MesRotTree[]
  cust: string;
  children: MesRotTree[];
}
export interface PageRotTree {
  name: string;
  treeInfo: MesRotTree[];
}
export interface WoFlowCardPrintJson {
  ID: string;
  OrderNo: string;
  Status: string;
  ItemCode: string;
  ItemDesc: string;
  SapCode: string;
  Model: string;
  Qty: number;
  SoRemark: string;
  MoRemark: string;
  Customer: string;
  DemandCode: string;
  RouteStr: string;
  Items: PrintWoPickList[]
}
export interface PrintWoPickList {
  LineNo: number;
  SapCode: string;
  ItemCode: string;
  ItemDesc: string;
  PickQty: string;
  LineRemark: string;
  WhCode: string;
  WhCode07: string;
  Method: string;
}