mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 00:15:06 +08:00
trade:【交易售后】查询分页列表
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
package cn.iocoder.yudao.module.member.api.user;
|
||||
|
||||
import cn.iocoder.yudao.module.member.api.user.dto.UserRespDTO;
|
||||
import cn.iocoder.yudao.module.member.api.user.dto.MemberUserRespDTO;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
@ -21,7 +21,7 @@ public interface MemberUserApi {
|
||||
* @param id 用户编号
|
||||
* @return 用户信息
|
||||
*/
|
||||
UserRespDTO getUser(Long id);
|
||||
MemberUserRespDTO getUser(Long id);
|
||||
|
||||
/**
|
||||
* 获得会员用户信息们
|
||||
@ -29,7 +29,7 @@ public interface MemberUserApi {
|
||||
* @param ids 用户编号的数组
|
||||
* @return 用户信息们
|
||||
*/
|
||||
List<UserRespDTO> getUsers(Collection<Long> ids);
|
||||
List<MemberUserRespDTO> getUsers(Collection<Long> ids);
|
||||
|
||||
/**
|
||||
* 获得会员用户 Map
|
||||
@ -37,8 +37,8 @@ public interface MemberUserApi {
|
||||
* @param ids 用户编号的数组
|
||||
* @return 会员用户 Map
|
||||
*/
|
||||
default Map<Long, UserRespDTO> getUserMap(Collection<Long> ids) {
|
||||
return convertMap(getUsers(ids), UserRespDTO::getId);
|
||||
default Map<Long, MemberUserRespDTO> getUserMap(Collection<Long> ids) {
|
||||
return convertMap(getUsers(ids), MemberUserRespDTO::getId);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -47,6 +47,6 @@ public interface MemberUserApi {
|
||||
* @param nickname 用户昵称,模糊匹配
|
||||
* @return 用户信息的列表
|
||||
*/
|
||||
List<UserRespDTO> getUserListByNickname(String nickname);
|
||||
List<MemberUserRespDTO> getUserListByNickname(String nickname);
|
||||
|
||||
}
|
||||
|
@ -9,7 +9,7 @@ import lombok.Data;
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Data
|
||||
public class UserRespDTO {
|
||||
public class MemberUserRespDTO {
|
||||
|
||||
/**
|
||||
* 用户ID
|
Reference in New Issue
Block a user