|
|
@@ -0,0 +1,54 @@
|
|
|
+package com.style24.front.biz.web;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+
|
|
|
+import com.style24.core.support.message.TscMessageByLocale;
|
|
|
+import com.style24.front.biz.service.TsfCouponService;
|
|
|
+import com.style24.front.biz.service.TsfCustomerService;
|
|
|
+import com.style24.front.biz.service.TsfGiftcardService;
|
|
|
+import com.style24.front.biz.service.TsfOrderService;
|
|
|
+import com.style24.front.biz.service.TsfPointService;
|
|
|
+import com.style24.front.biz.service.TsfReviewService;
|
|
|
+import com.style24.front.biz.service.TsfWishlistService;
|
|
|
+import com.style24.front.support.controller.TsfBaseController;
|
|
|
+
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 마이페이지 Controller
|
|
|
+ *
|
|
|
+ * @author gagamel
|
|
|
+ * @since 2020. 12. 29
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/mypage")
|
|
|
+@Slf4j
|
|
|
+public class TsfMypageController extends TsfBaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TscMessageByLocale message;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfCustomerService customerService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfOrderService orderService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfReviewService reviewService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfWishlistService wishlistService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfPointService pointService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfGiftcardService giftcardService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TsfCouponService couponService;
|
|
|
+
|
|
|
+}
|