|
@@ -0,0 +1,22 @@
|
|
|
+package com.fjhx.controller.stock;
|
|
|
+
|
|
|
+import com.fjhx.service.stock.StockService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 申购入库
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/applyIn")
|
|
|
+public class ApplyInController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private StockService stockService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|