| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- package com.style24.batch.biz.dao;
- import com.style24.core.support.annotation.ShopDs;
- /**
- * 전시 Dao
- *
- * @author bin2107
- * @since 2021. 3. 15
- */
- @ShopDs
- public interface TsbDisplayDao {
- /**
- * TB_CATE_4SRCH 삭제
- * @author bin2107
- * @since 2021. 3. 15
- */
- void deleteCate4srch();
- /**
- * TB_CATE_4SRCH 생성
- * @author bin2107
- * @since 2021. 3. 15
- */
- void createCate4srch();
- /**
- * 카테고리별재고임시 테이블 truncate
- * @author gagamel
- * @since 2021. 4. 7
- */
- void truncateTemporaryCategoryStock();
- /**
- * 카테고리별재고 임시테이블에 생성
- * @return 생성된 건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryStock();
- /**
- * 카테고리별재고 삭제
- * @author gagamel
- * @since 2021. 4. 7
- */
- void deleteCategoryStock();
- /**
- * 카테고리별재고 생성
- * @return 생성된 건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createCategoryStock();
- /**
- * 임시카테고리별검색필터 테이블 truncate
- * @author gagamel
- * @since 2021. 4. 7
- */
- void truncateTemporaryCategoryFilter();
- /**
- * 임시카테고리별검색필터 - 브랜드 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterBrand();
- /**
- * 임시카테고리별검색필터 - 사이즈 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterSize();
- /**
- * 임시카테고리별검색필터 - 가격 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterPrice();
- /**
- * 임시카테고리별검색필터 - 연령대 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterAge();
- /**
- * 임시카테고리별검색필터 - 시즌 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterSeason();
- /**
- * 임시카테고리별검색필터 - 색상 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterColor();
- /**
- * 임시카테고리별검색필터 - 혜택 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createTemporaryCategoryFilterBenefit();
- /**
- * 임시브랜드별검색필터 - 사이즈 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandFilterSize();
- /**
- * 임시브랜드별검색필터 - 가격 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandFilterPrice();
- /**
- * 임시브랜드별검색필터 - 연령대 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandFilterAge();
- /**
- * 임시브랜드별검색필터 - 시즌 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandFilterSeason();
- /**
- * 임시브랜드별검색필터 - 색상 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandFilterColor();
- /**
- * 임시브랜드별검색필터 - 혜택 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandFilterBenefit();
- /**
- * 임시브랜드별 카테고리검색필터 - 사이즈 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandForCategoryFilterSize();
- /**
- * 임시브랜드별 카테고리검색필터 - 가격 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandForCategoryFilterPrice();
- /**
- * 임시브랜드별 카테고리검색필터 - 연령대 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandForCategoryFilterAge();
- /**
- * 임시브랜드별 카테고리검색필터 - 시즌 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandForCategoryFilterSeason();
- /**
- * 임시브랜드별 카테고리검색필터 - 색상 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandForCategoryFilterColor();
- /**
- * 임시브랜드별 카테고리검색필터 - 혜택 생성
- * @return 생성건수
- * @author bin2107
- * @since 2021. 5. 28
- */
- int createTemporaryBrandForCategoryFilterBenefit();
- /**
- * 카테고리별검색필터 삭제
- * @author gagamel
- * @since 2021. 4. 7
- */
- void deleteCategoryFilter();
- /**
- * 카테고리별검색필터 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createCategoryFilter();
- /**
- * 최근등록된 상품 100개 삭제
- * @author gagamel
- * @since 2021. 7. 9
- */
- void deleteRecentlyRegisterGoods();
- /**
- * 최근등록된 상품 100개 생성
- * @return 생성건수
- * @author gagamel
- * @since 2021. 4. 7
- */
- int createRecentlyRegisterGoods();
- /**
- * 몰 메인 컨텐츠 상품 삭제
- *
- * @author jmh
- * @since 2021. 8. 13
- */
- void deleteMainContentsGoods();
- /**
- * 몰 메인 컨텐츠 상품생성
- *
- * @return 생성건수
- * @author jmh
- * @since 2021. 8. 13
- */
- int createMainContentsGoods();
-
- /**
- * 브랜드 그룹 전시상태 초기화
- * @author smlee
- * @since 2021. 12. 07
- */
- void updateBrandDisplayYnInit();
-
- /**
- * 상품의 승인상태로 브랜드 그룹 전시상태 업데이트
- * @author smlee
- * @since 2021. 12. 07
- */
- int updateBrandDisplayYn();
- }
|