|
|
@@ -0,0 +1,23 @@
|
|
|
+package com.style24.batch.biz.web;
|
|
|
+
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.CrossOrigin;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+
|
|
|
+import com.style24.core.support.controller.TscBaseController;
|
|
|
+
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 마케팅 Controller
|
|
|
+ *
|
|
|
+ * @author gagamel
|
|
|
+ * @since 2021. 5. 24
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/goods")
|
|
|
+@CrossOrigin(origins = "${domain.admin}")
|
|
|
+@Slf4j
|
|
|
+public class TsbMarketingController extends TscBaseController {
|
|
|
+
|
|
|
+}
|