Parcourir la source

신규 Service, Dao, xml 추가

gagamel il y a 5 ans
Parent
commit
eb5f4b6763
41 fichiers modifiés avec 792 ajouts et 1 suppressions
  1. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfCartDao.java
  2. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfCouponDao.java
  3. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfCustomerDao.java
  4. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfDisplayDao.java
  5. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfGiftcardDao.java
  6. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfGoodsDao.java
  7. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfOrderDao.java
  8. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfPlanningDao.java
  9. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfPointDao.java
  10. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfReviewDao.java
  11. 14 0
      style24.front/src/main/java/com/style24/front/biz/dao/TsfWishlistDao.java
  12. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfCartService.java
  13. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfCouponService.java
  14. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfCustomerService.java
  15. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfDisplayService.java
  16. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfGiftcardService.java
  17. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfGoodsService.java
  18. 22 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfOrderService.java
  19. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfPlanningService.java
  20. 22 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfPointService.java
  21. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfReviewService.java
  22. 23 0
      style24.front/src/main/java/com/style24/front/biz/service/TsfWishlistService.java
  23. 30 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfCartController.java
  24. 10 1
      style24.front/src/main/java/com/style24/front/biz/web/TsfCustomerController.java
  25. 30 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfDisplayController.java
  26. 30 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfEventController.java
  27. 30 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfGoodsController.java
  28. 54 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfMypageController.java
  29. 30 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfOrderController.java
  30. 30 0
      style24.front/src/main/java/com/style24/front/biz/web/TsfPlanningController.java
  31. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfCart.xml
  32. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfCoupon.xml
  33. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfCustomer.xml
  34. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfDisplay.xml
  35. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfGiftcard.xml
  36. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfGoods.xml
  37. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfOrder.xml
  38. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfPlanning.xml
  39. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfPoint.xml
  40. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfReview.xml
  41. 13 0
      style24.front/src/main/java/com/style24/persistence/mybatis/TsfWishlist.xml

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfCartDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 장바구니 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfCartDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfCouponDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 쿠폰 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfCouponDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfCustomerDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 고객(회원) Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfCustomerDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfDisplayDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 전시 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfDisplayDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfGiftcardDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 상품권 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfGiftcardDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfGoodsDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 상품 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfGoodsDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfOrderDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 주문 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfOrderDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfPlanningDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 기획전 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfPlanningDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfPointDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 포인트 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfPointDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfReviewDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 상품평 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfReviewDao {
+
+}

+ 14 - 0
style24.front/src/main/java/com/style24/front/biz/dao/TsfWishlistDao.java

@@ -0,0 +1,14 @@
+package com.style24.front.biz.dao;
+
+import com.style24.core.support.annotation.ShopDs;
+
+/**
+ * 위시리스트 Dao
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@ShopDs
+public interface TsfWishlistDao {
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfCartService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfCartDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 장바구니 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfCartService {
+
+	@Autowired
+	private TsfCartDao cartDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfCouponService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfCouponDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 쿠폰 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfCouponService {
+
+	@Autowired
+	private TsfCouponDao couponDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfCustomerService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfCustomerDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 고객(회원) Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfCustomerService {
+
+	@Autowired
+	private TsfCustomerDao customerDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfDisplayService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfDisplayDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 전시 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfDisplayService {
+
+	@Autowired
+	private TsfDisplayDao displayDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfGiftcardService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfGiftcardDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 상품권 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfGiftcardService {
+
+	@Autowired
+	private TsfGiftcardDao giftcardDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfGoodsService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfGoodsDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 상품 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfGoodsService {
+
+	@Autowired
+	private TsfGoodsDao goodsDao;
+
+}

+ 22 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfOrderService.java

@@ -0,0 +1,22 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfOrderDao;
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 주문 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfOrderService {
+
+	@Autowired
+	private TsfOrderDao orderDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfPlanningService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfPlanningDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 기획전 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfPlanningService {
+
+	@Autowired
+	private TsfPlanningDao planningDao;
+
+}

+ 22 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfPointService.java

@@ -0,0 +1,22 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfPointDao;
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 포인트 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfPointService {
+
+	@Autowired
+	private TsfPointDao pointDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfReviewService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfReviewDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 상품평 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfReviewService {
+
+	@Autowired
+	private TsfReviewDao reviewDao;
+
+}

+ 23 - 0
style24.front/src/main/java/com/style24/front/biz/service/TsfWishlistService.java

@@ -0,0 +1,23 @@
+package com.style24.front.biz.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.style24.front.biz.dao.TsfWishlistDao;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 위시리스트 Service
+ *
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Service
+@Slf4j
+public class TsfWishlistService {
+
+	@Autowired
+	private TsfWishlistDao wishlistDao;
+
+}

+ 30 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfCartController.java

@@ -0,0 +1,30 @@
+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.TsfCartService;
+import com.style24.front.support.controller.TsfBaseController;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 장바구니 Controller
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Controller
+@RequestMapping("/cart")
+@Slf4j
+public class TsfCartController extends TsfBaseController {
+
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfCartService cartService;
+
+}

+ 10 - 1
style24.front/src/main/java/com/style24/front/biz/web/TsfCustomerController.java

@@ -1,14 +1,17 @@
 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.TsfCustomerService;
 import com.style24.front.support.controller.TsfBaseController;
 
 import lombok.extern.slf4j.Slf4j;
 
 /**
- * 고객 Controller
+ * 고객(회원) Controller
  * 
  * @author gagamel
  * @since 2020. 12. 28
@@ -18,4 +21,10 @@ import lombok.extern.slf4j.Slf4j;
 @Slf4j
 public class TsfCustomerController extends TsfBaseController {
 
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfCustomerService customerService;
+
 }

+ 30 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfDisplayController.java

@@ -0,0 +1,30 @@
+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.TsfDisplayService;
+import com.style24.front.support.controller.TsfBaseController;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 전시 Controller
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Controller
+@RequestMapping("/display")
+@Slf4j
+public class TsfDisplayController extends TsfBaseController {
+
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfDisplayService displayService;
+
+}

+ 30 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfEventController.java

@@ -0,0 +1,30 @@
+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.TsfPlanningService;
+import com.style24.front.support.controller.TsfBaseController;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 이벤트 Controller
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Controller
+@RequestMapping("/event")
+@Slf4j
+public class TsfEventController extends TsfBaseController {
+
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfPlanningService planningService;
+
+}

+ 30 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfGoodsController.java

@@ -0,0 +1,30 @@
+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.TsfGoodsService;
+import com.style24.front.support.controller.TsfBaseController;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 상품 Controller
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Controller
+@RequestMapping("/goods")
+@Slf4j
+public class TsfGoodsController extends TsfBaseController {
+
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfGoodsService goodsService;
+
+}

+ 54 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfMypageController.java

@@ -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;
+
+}

+ 30 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfOrderController.java

@@ -0,0 +1,30 @@
+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.TsfOrderService;
+import com.style24.front.support.controller.TsfBaseController;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 주문 Controller
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Controller
+@RequestMapping("/order")
+@Slf4j
+public class TsfOrderController extends TsfBaseController {
+
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfOrderService orderService;
+
+}

+ 30 - 0
style24.front/src/main/java/com/style24/front/biz/web/TsfPlanningController.java

@@ -0,0 +1,30 @@
+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.TsfPlanningService;
+import com.style24.front.support.controller.TsfBaseController;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 기획전 Controller
+ * 
+ * @author gagamel
+ * @since 2020. 12. 29
+ */
+@Controller
+@RequestMapping("/planning")
+@Slf4j
+public class TsfPlanningController extends TsfBaseController {
+
+	@Autowired
+	private TscMessageByLocale message;
+
+	@Autowired
+	private TsfPlanningService planningService;
+
+}

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfCart.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfCartDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfCoupon.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfCouponDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfCustomer.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfCustomerDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfDisplay.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfDisplayDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfGiftcard.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfGiftcardDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfGoods.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfGoodsDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfOrder.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfOrderDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfPlanning.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfPlanningDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfPoint.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfPointDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfReview.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfReviewDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>

+ 13 - 0
style24.front/src/main/java/com/style24/persistence/mybatis/TsfWishlist.xml

@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.style24.front.biz.dao.TsfWishlistDao">
+
+	<!-- Paging -->
+	<sql id="pageSql">
+		LIMIT #{pageable.startRow}, #{pageable.pageSize}
+	</sql>
+	<!--// Paging -->
+	
+	
+
+</mapper>