From 4dcb5e299757924aef0edc4d608d2305dbedc780 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期四, 18 九月 2025 08:59:33 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override

---
 north-glass-erp/src/main/java/com/example/erp/controller/sd/BomDataController.java |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/sd/BomDataController.java b/north-glass-erp/src/main/java/com/example/erp/controller/sd/BomDataController.java
new file mode 100644
index 0000000..3a5927e
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/controller/sd/BomDataController.java
@@ -0,0 +1,31 @@
+package com.example.erp.controller.sd;
+
+import cn.dev33.satoken.annotation.SaCheckPermission;
+import com.example.erp.common.Result;
+import com.example.erp.entity.sd.BasicData;
+import com.example.erp.entity.sd.BomBase;
+import com.example.erp.service.sd.BasicDataService;
+import com.example.erp.service.sd.BomDataService;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.web.bind.annotation.*;
+
+import java.util.Map;
+
+@RestController
+@RequestMapping("/BomData")
+@Api(value="BOM鐩稿叧controller",tags={"BOM鐩稿叧鎿嶄綔鎺ュ彛"})
+public class BomDataController {
+    final
+    BomDataService bomDataService;
+
+    public BomDataController(BomDataService bomDataService) {
+        this.bomDataService = bomDataService;
+    }
+    @ApiOperation("鏇存柊鍩虹鏁版嵁")
+    @PostMapping("saveMaterialBomData")
+    public Result saveMaterialBomData(@RequestBody Map<String, Object> object){
+        return  Result.seccess(bomDataService.saveMaterialBomDataSv(object));
+    }
+
+}

--
Gitblit v1.8.0