From 3aedad63dd01f1fc5154cb520af32edab967d6e0 Mon Sep 17 00:00:00 2001
From: schangxiang@126.com <schangxiang@126.com>
Date: 周一, 12 5月 2025 09:15:26 +0800
Subject: [PATCH] Merge branch 'master' of http://222.71.245.114:9086/r/HIA24016N_PipeLineDemo

---
 PipeLineLems/pipelinelems_web/src/widgets/CallMaterialOrder/Models/CallMaterialOrder.ts |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/PipeLineLems/pipelinelems_web/src/widgets/CallMaterialOrder/Models/CallMaterialOrder.ts b/PipeLineLems/pipelinelems_web/src/widgets/CallMaterialOrder/Models/CallMaterialOrder.ts
new file mode 100644
index 0000000..2506a38
--- /dev/null
+++ b/PipeLineLems/pipelinelems_web/src/widgets/CallMaterialOrder/Models/CallMaterialOrder.ts
@@ -0,0 +1,48 @@
+import { Base } from '@/libs/Base/Base' 
+import { 
+  deleteCallMaterialOrders, 
+  callMaterialByDataIdentifier,
+  addCallMaterialOrder, 
+  cloneData, 
+} from './Service/CallMaterialOrder' 
+ 
+export class CallMaterialOrder extends Base<{ [key: string]: any }> { 
+  constructor() { 
+    super({ 
+      data: [], 
+    }) 
+  } 
+  onMounted() {} 
+  /** 
+   * 鍒犻櫎 
+   * @param id 
+   * @returns 
+   */ 
+  async deleteCallMaterialOrders(ids: string[]) { 
+    return deleteCallMaterialOrders(ids) 
+  } 
+
+  async callMaterialByDataIdentifier(ids: string) { 
+    return callMaterialByDataIdentifier(ids) 
+  } 
+
+
+ 
+  /** 
+   * 娣诲姞鏁版嵁 
+   * @param data 
+   * @returns 
+   */ 
+  addCallMaterialOrder(data: Record<string, any>) { 
+    return addCallMaterialOrder(data) 
+  } 
+ 
+  /** 
+   * 鍏嬮殕 
+   * @param ids 
+   * @returns 
+   */ 
+  cloneData(ids: string[]) { 
+    return cloneData(ids) 
+  } 
+} 

--
Gitblit v1.9.3