类 Y9JobManagerImpl
- java.lang.Object
-
- net.risesoft.manager.org.impl.Y9JobManagerImpl
-
- 所有已实现的接口:
Y9JobManager
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) @CacheConfig(cacheNames="y9cache_orgJob") public class Y9JobManagerImpl extends Object implements Y9JobManager职位 manager 实现类- 从以下版本开始:
- 9.6.3
- 作者:
- shidaobang
- Date:
- 2023/07/26
-
-
构造器概要
构造器 构造器 说明 Y9JobManagerImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voiddelete(Y9Job y9Job)Optional<Y9Job>findById(String id)Optional<Y9Job>findByIdNotCache(String id)根据id,获取职位信息(直接读取数据库)Y9JobgetById(String id)根据id,获取职位信息Y9JobgetByIdNotCache(String id)根据id,获取职位信息(直接读取数据库)Y9Jobsave(Y9Job y9Job)Y9JobupdateTabIndex(String id, int tabIndex)
-
-
-
方法详细资料
-
delete
@CacheEvict(key="#y9Job.id") @Transactional(readOnly=false) public void delete(Y9Job y9Job)
- 指定者:
delete在接口中Y9JobManager
-
findById
@Cacheable(key="#id", condition="#id!=null", unless="#result==null") public Optional<Y9Job> findById(String id)- 指定者:
findById在接口中Y9JobManager
-
findByIdNotCache
public Optional<Y9Job> findByIdNotCache(String id)
从接口复制的说明:Y9JobManager根据id,获取职位信息(直接读取数据库)- 指定者:
findByIdNotCache在接口中Y9JobManager- 参数:
id- 职位id- 返回:
Y9Job职位对象
-
getByIdNotCache
public Y9Job getByIdNotCache(String id)
从接口复制的说明:Y9JobManager根据id,获取职位信息(直接读取数据库)- 指定者:
getByIdNotCache在接口中Y9JobManager- 参数:
id- 职位id- 返回:
Y9Job职位对象
-
getById
@Cacheable(key="#id", condition="#id!=null", unless="#result==null") public Y9Job getById(String id)从接口复制的说明:Y9JobManager根据id,获取职位信息- 指定者:
getById在接口中Y9JobManager- 参数:
id- 职位id- 返回:
Y9Job职位对象
-
save
@CacheEvict(key="#y9Job.id", condition="#y9Job.id!=null") @Transactional(readOnly=false) public Y9Job save(Y9Job y9Job)- 指定者:
save在接口中Y9JobManager
-
updateTabIndex
@CacheEvict(key="#id") @Transactional(readOnly=false) public Y9Job updateTabIndex(String id, int tabIndex)
- 指定者:
updateTabIndex在接口中Y9JobManager
-
-