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/CallMaterialOrderRecord/Models/CallMaterialOrderRecord.ts |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

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

--
Gitblit v1.9.3