|
@@ -0,0 +1,14 @@
|
|
|
+package com.zswl.cloud.springBtach.server.core.controller.manager
|
|
|
+
|
|
|
+import com.zswl.cloud.springBatch.client.service.Video2Service
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping
|
|
|
+import org.springframework.web.bind.annotation.RestController
|
|
|
+
|
|
|
+@RestController
|
|
|
+@RequestMapping("manager/video2")
|
|
|
+class Video2ManagerController {
|
|
|
+ @Autowired
|
|
|
+ @Delegate(methodAnnotations = true, parameterAnnotations = true, includeTypes = Video2Service.class, interfaces = false)
|
|
|
+ private Video2Service video2Service;
|
|
|
+}
|