|
@@ -240,8 +240,6 @@ public interface CompanyUserMapper
|
|
|
@Select("select qw_user_id FROM company_user where user_id=#{companyUserId}")
|
|
|
String selectQwUserIdsByCompany(Long companyUserId);
|
|
|
|
|
|
- List<String> selectCompanyUserNameByIds(@Param("companyUserIds")String companyUserIds);
|
|
|
-
|
|
|
@Select("select * from company_user where user_id=#{userId}")
|
|
|
CompanyUser selectCompanyUserByUserId(Long userId);
|
|
|
|
|
@@ -257,4 +255,7 @@ public interface CompanyUserMapper
|
|
|
List<CompanyUser> selectCompanyUserByIds(Set<Long> ids);
|
|
|
|
|
|
List<CompanyUser> selectAllCompanyUserByParentId(Long parentId);
|
|
|
+
|
|
|
+ List<CompanyUser> getAllUserListLimit(@Param("companyId") Long companyId,
|
|
|
+ @Param("keywords") String keywords);
|
|
|
}
|