Class CatalogStoreServiceImpl
- java.lang.Object
-
- cn.sliew.sakura.catalog.service.impl.CatalogStoreServiceImpl
-
- All Implemented Interfaces:
CatalogStoreService
public class CatalogStoreServiceImpl extends java.lang.Object implements CatalogStoreService
-
-
Constructor Summary
Constructors Constructor Description CatalogStoreServiceImpl(org.apache.ibatis.session.SqlSessionFactory sqlSessionFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(cn.sliew.sakura.common.dict.catalog.CatalogType type, java.lang.String catalogName)java.util.Optional<CatalogStoreDTO>get(cn.sliew.sakura.common.dict.catalog.CatalogType type, java.lang.String catalogName)voidinsert(CatalogStoreDTO dto)java.util.List<CatalogStoreDTO>list(cn.sliew.sakura.common.dict.catalog.CatalogType type)
-
-
-
Method Detail
-
list
public java.util.List<CatalogStoreDTO> list(cn.sliew.sakura.common.dict.catalog.CatalogType type)
- Specified by:
listin interfaceCatalogStoreService
-
get
public java.util.Optional<CatalogStoreDTO> get(cn.sliew.sakura.common.dict.catalog.CatalogType type, java.lang.String catalogName)
- Specified by:
getin interfaceCatalogStoreService
-
insert
public void insert(CatalogStoreDTO dto)
- Specified by:
insertin interfaceCatalogStoreService
-
delete
public void delete(cn.sliew.sakura.common.dict.catalog.CatalogType type, java.lang.String catalogName)- Specified by:
deletein interfaceCatalogStoreService
-
-