|
@@ -2,6 +2,9 @@ package com.style24.core.biz.dao;
|
|
|
|
|
|
|
|
import com.style24.core.support.annotation.ShopDs;
|
|
import com.style24.core.support.annotation.ShopDs;
|
|
|
import com.style24.persistence.domain.Clause;
|
|
import com.style24.persistence.domain.Clause;
|
|
|
|
|
+import org.springframework.stereotype.Repository;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.Collection;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 약관 Dao
|
|
* 약관 Dao
|
|
@@ -10,6 +13,7 @@ import com.style24.persistence.domain.Clause;
|
|
|
* @since 2020. 10. 29
|
|
* @since 2020. 10. 29
|
|
|
*/
|
|
*/
|
|
|
@ShopDs
|
|
@ShopDs
|
|
|
|
|
+@Repository
|
|
|
public interface TscClauseDao {
|
|
public interface TscClauseDao {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -21,4 +25,23 @@ public interface TscClauseDao {
|
|
|
*/
|
|
*/
|
|
|
String getClause(Clause clause);
|
|
String getClause(Clause clause);
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 약관목록
|
|
|
|
|
+ * @param clause - 약관타입, 사이트코드
|
|
|
|
|
+ * @return Collection<Clause> - 약관목록
|
|
|
|
|
+ * @author jsshin
|
|
|
|
|
+ * @since 2021. 06. 10
|
|
|
|
|
+ */
|
|
|
|
|
+ Collection<Clause> getClauseList(Clause clause);
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 약관정보
|
|
|
|
|
+ * @param clauseSq - 약관시퀀스
|
|
|
|
|
+ * @return String - 약관내용
|
|
|
|
|
+ * @author jsshin
|
|
|
|
|
+ * @since 2021. 06. 10
|
|
|
|
|
+ */
|
|
|
|
|
+ Clause getClauseInfo(Integer clauseSq);
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|