|
|
@@ -5,6 +5,7 @@ import com.style24.persistence.domain.Point;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
@@ -29,6 +30,7 @@ public class TsbPointService {
|
|
|
* @author jsshin
|
|
|
* @since 2021. 04. 23
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public Collection<Point> getAutoBuyConfirmList(Point point) {
|
|
|
return pointDao.getAutoBuyConfirmList(point);
|
|
|
}
|
|
|
@@ -41,6 +43,7 @@ public class TsbPointService {
|
|
|
* @author sowon
|
|
|
* @since 2021. 04. 26
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public Collection<Point> getExpirePointList(Point point){
|
|
|
return pointDao.getExpirePointList(point);
|
|
|
}
|
|
|
@@ -53,6 +56,7 @@ public class TsbPointService {
|
|
|
* @author sowon
|
|
|
* @since 2021. 04. 26
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void saveExpirePointHst(Point point) {
|
|
|
pointDao.saveExpirePointHst(point);
|
|
|
}
|
|
|
@@ -66,6 +70,7 @@ public class TsbPointService {
|
|
|
* @author sowon
|
|
|
* @since 2021. 04. 26
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void updateCustPointExpire(Point point) {
|
|
|
pointDao.updateCustPointExpire(point);
|
|
|
}
|