Package net.risesoft.service.impl
Class TabEntityServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.TabEntityServiceImpl
-
- All Implemented Interfaces:
TabEntityService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class TabEntityServiceImpl extends Object implements TabEntityService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description TabEntityServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TabEntitygetById(String id)根据唯一标示查找页签List<TabEntity>listAll()查找所有的页签实体voidremoveTabEntitys(String[] tabEntityIds)根据传进来的Id集合删除页签实体TabEntitysaveOrUpdate(TabEntity tabEntity)保存或者更新页签实体
-
-
-
Method Detail
-
getById
public TabEntity getById(String id)
Description copied from interface:TabEntityService根据唯一标示查找页签- Specified by:
getByIdin interfaceTabEntityService- Returns:
-
listAll
public List<TabEntity> listAll()
Description copied from interface:TabEntityService查找所有的页签实体- Specified by:
listAllin interfaceTabEntityService- Returns:
-
removeTabEntitys
@Transactional public void removeTabEntitys(String[] tabEntityIds)
Description copied from interface:TabEntityService根据传进来的Id集合删除页签实体- Specified by:
removeTabEntitysin interfaceTabEntityService
-
saveOrUpdate
@Transactional public TabEntity saveOrUpdate(TabEntity tabEntity)
Description copied from interface:TabEntityService保存或者更新页签实体- Specified by:
saveOrUpdatein interfaceTabEntityService- Returns:
-
-