Răsfoiți Sursa

维多利亚

home 2 ani în urmă
părinte
comite
f27e40e567

+ 0 - 15
hx-service-api/victoriatourist-api/src/main/java/com/fjhx/entity/apply/ApplyPurchase.java

@@ -51,26 +51,11 @@ public class ApplyPurchase extends BaseEntity {
     private BigDecimal quantity;
 
     /**
-     * 到货数量
-     */
-    private BigDecimal arrivalQuantity;
-
-    /**
      * 单价
      */
     private BigDecimal unitPrice;
 
     /**
-     * 申购金额
-     */
-    private BigDecimal applyPrice;
-
-    /**
-     * 到货金额
-     */
-    private BigDecimal arrivalPrice;
-
-    /**
      * 要求到货时间
      */
     private Date planArrivalTime;

+ 22 - 0
hx-service/victoriatourist/src/main/java/com/fjhx/controller/stock/ApplyInController.java

@@ -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;
+
+
+
+
+
+}