Class AdminUserApiImpl
- java.lang.Object
-
- org.openea.eap.module.system.api.user.AdminUserApiImpl
-
- All Implemented Interfaces:
com.fhs.trans.service.AutoTransable<AdminUserRespDTO>,AdminUserApi
@RestController @Validated public class AdminUserApiImpl extends Object implements AdminUserApi
-
-
Field Summary
-
Fields inherited from interface org.openea.eap.module.system.api.user.AdminUserApi
PREFIX
-
-
Constructor Summary
Constructors Constructor Description AdminUserApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.openea.eap.framework.common.pojo.CommonResult<AdminUserRespDTO>getUser(Long id)org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>>getUserList(Collection<Long> ids)org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>>getUserListByDeptIds(Collection<Long> deptIds)org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>>getUserListByPostIds(Collection<Long> postIds)org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>>getUserListBySubordinate(Long id)org.openea.eap.framework.common.pojo.CommonResult<Boolean>validateUserList(Collection<Long> ids)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openea.eap.module.system.api.user.AdminUserApi
getUserMap, selectById, selectByIds, validateUser
-
-
-
-
Method Detail
-
getUser
public org.openea.eap.framework.common.pojo.CommonResult<AdminUserRespDTO> getUser(Long id)
- Specified by:
getUserin interfaceAdminUserApi
-
getUserListBySubordinate
public org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>> getUserListBySubordinate(Long id)
- Specified by:
getUserListBySubordinatein interfaceAdminUserApi
-
getUserList
public org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>> getUserList(Collection<Long> ids)
- Specified by:
getUserListin interfaceAdminUserApi
-
getUserListByDeptIds
public org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>> getUserListByDeptIds(Collection<Long> deptIds)
- Specified by:
getUserListByDeptIdsin interfaceAdminUserApi
-
getUserListByPostIds
public org.openea.eap.framework.common.pojo.CommonResult<List<AdminUserRespDTO>> getUserListByPostIds(Collection<Long> postIds)
- Specified by:
getUserListByPostIdsin interfaceAdminUserApi
-
validateUserList
public org.openea.eap.framework.common.pojo.CommonResult<Boolean> validateUserList(Collection<Long> ids)
- Specified by:
validateUserListin interfaceAdminUserApi
-
-