From eef5ec9b7857104f91ccd5e8156c2598c3a78523 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Tue, 24 Mar 2026 14:03:16 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(mes):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=9D=A5=E6=BA=90=E5=8D=95=E6=8D=AE=E7=B1=BB=E5=9E=8B=E4=B8=BA?= =?UTF-8?q?=E6=95=B4=E5=9E=8B=EF=BC=8C=E4=BC=98=E5=8C=96=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=B8=80=E8=87=B4=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将来源单据类型字段从字符串更改为整型,以提高数据一致性和类型安全性。同时,添加了相关的枚举类型以支持新的字段定义。 --- src/api/mes/qc/ipqc/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/mes/qc/ipqc/index.ts b/src/api/mes/qc/ipqc/index.ts index 93ab09a46..0c239a30a 100644 --- a/src/api/mes/qc/ipqc/index.ts +++ b/src/api/mes/qc/ipqc/index.ts @@ -8,7 +8,7 @@ export interface QcIpqcVO { type: string // IPQC 检验类型 templateId: number // 检验模板 ID sourceDocId: number // 来源单据 ID - sourceDocType: string // 来源单据类型 + sourceDocType: number // 来源单据类型 sourceDocCode: string // 来源单据编号 sourceLineId: number // 来源单据行 ID workOrderId: number // 生产工单 ID