From 964bd8741dc8d373b4f427e0947402425c07502f Mon Sep 17 00:00:00 2001 From: yinq Date: Wed, 1 Apr 2026 16:17:00 +0800 Subject: [PATCH] 1.1.11 add ContractOrderPurchaseMaterialVO --- src/api/oa/erp/contractOrder/types.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/api/oa/erp/contractOrder/types.ts diff --git a/src/api/oa/erp/contractOrder/types.ts b/src/api/oa/erp/contractOrder/types.ts new file mode 100644 index 0000000..a7e1add --- /dev/null +++ b/src/api/oa/erp/contractOrder/types.ts @@ -0,0 +1,12 @@ +export interface ContractOrderPurchaseMaterialVO { + contractMaterialId: string | number; + contractId: string | number; + materialCode?: string; + materialName?: string; + saleMaterialName?: string; + specificationDescription?: string; + unitName?: string; + contractAmount?: number; + purchasedAmount?: number; + unpurchasedAmount?: number; +}