From 5d3661fd40aa5fe0f669edb18b1c2aed458fb4e8 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 11 六月 2024 14:03:58 +0800 Subject: [PATCH] 低代码更新,工单更新 --- src/api/tigerapi/model/mesModel.ts | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/src/api/tigerapi/model/mesModel.ts b/src/api/tigerapi/model/mesModel.ts index 8569780..0bb755b 100644 --- a/src/api/tigerapi/model/mesModel.ts +++ b/src/api/tigerapi/model/mesModel.ts @@ -232,6 +232,39 @@ }; export type MesWslistPageParams = BasicPageParams & MES_WORKSHOPParams; +export interface BIZ_MES_WO_BATCH { + ID: string; + CREATE_TIME: Date; + CREATE_USER: string; + UPDATE_TIME: Date; + UPDATE_USER: string; + GHOST_ROW: boolean; + AUTH_ORG: string; + AUTH_PROD: string; + AUTH_WH: string; + ORDER_NO: string; + STATUS: number; + ITEM_CODE: string; + CUST_CODE: string; + FACTORY: string; + WS_CODE: string; + ACT_LINE: string; + ACT_START_TIME: Date; + ACT_END_TIME: Date; + STD_WORKER_QTY: number; + ACT_WORKER_QTY: number; + RELEASE_TIME: Date; + RELEASE_USER: string; + PLAN_QTY: number; + INPUT_QTY: number; + OUTPUT_QTY: number; + SCRAP_QTY: number; + STOCK_IN_QTY: number; + UPH: number; + UPPH: number; + REMARK: string; +} + export type OperPageListGetResultModel = BasicFetchResult<OperListItem>; export type CheckRulePageListGetResultModel = BasicFetchResult<CheckRuleListItem>; export type MeslinePageListGetResultModel = BasicFetchResult<MeslineListItem>; -- Gitblit v1.9.3