Ben Lin
2024-10-13 234b6cf8944ef95c415c4898f19b8fb4d12e898f
src/api/tigerapi/model/router.ts
@@ -1,4 +1,4 @@
import { BIZ_MES_WO } from "./mesModel";
import { BIZ_MES_WO } from './mesModel';
export interface MES_ROUTE {
  ID: string;
@@ -143,8 +143,14 @@
  type: string;
  x: number;
  y: number;
  properties: {};
  properties: properties;
  text: nodeText;
}
export interface properties {
  isReturn: boolean;
  operType: string;
  operCode: string;
}
export interface edge {
@@ -177,35 +183,29 @@
}
export interface MES_ROUTE_NODE_POST {
   NODE_ID: string;
   POST_CODE: string;
  NODE_ID: string;
  POST_CODE: string;
}
export interface V_MES_ROUTE_PTREE {
   pid: string;
   tid: string;
   id: string;
   code: string;
   name: string;
   type: string;
   seq: number;
  pid: string;
  tid: string;
  id: string;
  code: string;
  name: string;
  type: string;
  seq: number;
}
export interface V_MES_WO_PTREE {
   pid: string;
   tid: string;
   id: string;
   wo: string;
   prod: string;
   cust: string;
   code: string;
   name: string;
   type: string;
   seq: number;
  pid: string;
  tid: string;
  id: string;
  wo: string;
  prod: string;
  cust: string;
  code: string;
  name: string;
  type: string;
  seq: number;
}