类 Y9OperationManagerImpl
- java.lang.Object
-
- net.risesoft.y9public.manager.resource.impl.Y9OperationManagerImpl
-
- 所有已实现的接口:
Y9OperationManager
@Service @CacheConfig(cacheNames="y9cache_operationResource") @Transactional(value="rsPublicTransactionManager", readOnly=true) public class Y9OperationManagerImpl extends Object implements Y9OperationManager按钮 manager 实现类- 从以下版本开始:
- 9.6.3
- 作者:
- shidaobang
- Date:
- 2023/07/26
-
-
构造器概要
构造器 构造器 说明 Y9OperationManagerImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voiddelete(Y9Operation y9Operation)Optional<Y9Operation>findById(String id)Y9OperationgetById(String id)Y9Operationsave(Y9Operation y9Operation)Y9OperationupdateTabIndex(String id, int index)
-
-
-
方法详细资料
-
findById
@Cacheable(key="#id", condition="#id!=null", unless="#result==null") public Optional<Y9Operation> findById(String id)- 指定者:
findById在接口中Y9OperationManager
-
getById
@Cacheable(key="#id", condition="#id!=null", unless="#result==null") public Y9Operation getById(String id)- 指定者:
getById在接口中Y9OperationManager
-
save
@Transactional(readOnly=false) @CacheEvict(key="#y9Operation.id", condition="#y9Operation.id!=null") public Y9Operation save(Y9Operation y9Operation)- 指定者:
save在接口中Y9OperationManager
-
delete
@Transactional(readOnly=false) @CacheEvict(key="#y9Operation.id", condition="#y9Operation.id!=null") public void delete(Y9Operation y9Operation)- 指定者:
delete在接口中Y9OperationManager
-
updateTabIndex
@Transactional(readOnly=false) public Y9Operation updateTabIndex(String id, int index)
- 指定者:
updateTabIndex在接口中Y9OperationManager
-
-