|
@@ -1,6 +1,17 @@
|
|
|
package org.dromara.productionManagement.controller;
|
|
|
|
|
|
+import lombok.RequiredArgsConstructor;
|
|
|
import org.dromara.common.web.core.BaseController;
|
|
|
+import org.dromara.productionManagement.service.ProductionPlanService;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+/**
|
|
|
+ * 生产计划管理接口
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequiredArgsConstructor
|
|
|
+@RequestMapping("/productionManagement/productionPlan")
|
|
|
public class ProductionPlanController extends BaseController {
|
|
|
+ private final ProductionPlanService productionPlanService;
|
|
|
}
|