|
@@ -3,6 +3,7 @@ package com.winhc.repal.repository;
|
|
import com.winhc.repal.entity.UserInfo;
|
|
import com.winhc.repal.entity.UserInfo;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.winhc.repal.model.vo.UserAvatarInfoVO;
|
|
import com.winhc.repal.model.vo.UserAvatarInfoVO;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@@ -23,5 +24,5 @@ public interface UserInfoMapper extends BaseMapper<UserInfo> {
|
|
* @author xda
|
|
* @author xda
|
|
* @date 2022/5/27 17:08
|
|
* @date 2022/5/27 17:08
|
|
*/
|
|
*/
|
|
- List<UserAvatarInfoVO> getUserAvatarInfo(List<Long> userIdList);
|
|
|
|
|
|
+ List<UserAvatarInfoVO> getUserAvatarInfo(@Param("userIdList") List<Long> userIdList);
|
|
}
|
|
}
|