|
|
@@ -7,17 +7,18 @@ import java.util.List;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpSession;
|
|
|
|
|
|
-import com.style24.core.biz.service.TscKakaotalkService;
|
|
|
-import com.style24.core.biz.service.TscMailService;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.core.env.Environment;
|
|
|
import org.springframework.security.core.authority.SimpleGrantedAuthority;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
+import com.gagaframework.web.parameter.GagaMap;
|
|
|
+import com.gagaframework.web.security.GagaPasswordEncoder;
|
|
|
import com.style24.core.biz.service.TscCustomerService;
|
|
|
+import com.style24.core.biz.service.TscKakaotalkService;
|
|
|
+import com.style24.core.biz.service.TscMailService;
|
|
|
import com.style24.core.support.env.TscConstants;
|
|
|
import com.style24.core.support.session.TscSession;
|
|
|
import com.style24.core.support.util.MaskingUtils;
|
|
|
@@ -35,9 +36,6 @@ import com.style24.persistence.domain.WishList;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
-import com.gagaframework.web.parameter.GagaMap;
|
|
|
-import com.gagaframework.web.security.GagaPasswordEncoder;
|
|
|
-
|
|
|
/**
|
|
|
* 고객(회원) Service
|
|
|
*
|
|
|
@@ -1230,5 +1228,16 @@ public class TsfCustomerService {
|
|
|
return resultCnt;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 선물하기 알림톡 발송 정보 조회
|
|
|
+ *
|
|
|
+ * @param Customer
|
|
|
+ * @return int
|
|
|
+ * @author card007
|
|
|
+ * @since 2021. 06. 04
|
|
|
+ */
|
|
|
+ public int getGiftKakaoSendInfo(Customer customer) {
|
|
|
+ return customerDao.getGiftKakaoSendInfo(customer);
|
|
|
+ }
|
|
|
|
|
|
}
|