| | |
| | | |
| | | User findByUsername(@Param("username") String username); |
| | | |
| | | User findByOpenid(@Param("openid") String openid); |
| | | |
| | | User findByRiderOpenId(@Param("riderOpenId") String riderOpenId); |
| | | |
| | | User findByEmail(@Param("email") String email); |
| | | |
| | | User findByPhone(@Param("phone") String phone); |
| | |
| | | |
| | | List<User> findByRoleId(@Param("roleId") Long roleId); |
| | | |
| | | List<User> findByRoleDeptId(@Param("deptId") Long deptId); |
| | | |
| | | List<User> findByMenuId(@Param("menuId") Long menuId); |
| | | |
| | | int countByJobs(@Param("jobIds") Set<Long> jobIds); |
| | | |
| | | int countByDepts(@Param("deptIds") Set<Long> deptIds); |
| | | |
| | | int countByRoles(@Param("roleIds") Set<Long> roleIds); |
| | | |
| | | void resetPwd(@Param("userIds") Set<Long> userIds, @Param("pwd") String pwd); |
| | | |
| | | } |