|
@@ -0,0 +1,15 @@
|
|
|
+package com.yaoxiang.planning.action
|
|
|
+
|
|
|
+import com.yaoxiang.planning.service.PlanningItemService
|
|
|
+import io.swagger.annotations.Api
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping
|
|
|
+
|
|
|
+@Api(tags = ["分计划"])
|
|
|
+@RequestMapping("planningItem")
|
|
|
+class PlanningItemAction {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private lateinit var planningItemService: PlanningItemService
|
|
|
+
|
|
|
+}
|