|
|
@@ -0,0 +1,25 @@
|
|
|
+package com.style24.admin.biz.web;
|
|
|
+
|
|
|
+import com.style24.admin.biz.service.TsaTestService;
|
|
|
+import com.style24.admin.support.controller.TsaBaseController;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Test Controller
|
|
|
+ *
|
|
|
+ * @author swkim
|
|
|
+ * @since 2020. 03. 19
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/test")
|
|
|
+@Slf4j
|
|
|
+public class TsaTestController extends TsaBaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsaTestService testService;
|
|
|
+
|
|
|
+
|
|
|
+}
|