Helius
2021-06-30 e47031a11b23168ceb5c0e8987baddada1a7b6ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.OtherUserInfo;
import com.xzx.gc.model.admin.UserModel;
import com.xzx.gc.model.order.OrderInfoReq;
import com.xzx.gc.model.user.UserInfoVo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Repository
public interface OtherUserMapper extends GcMapper<OtherUserInfo> {
 
 
    UserModel queryUserOtherById(@Param("userId") String userId);
 
 
    List<Map<String, Object>> queryCuserByTypeList(@Param("userType") String userType, @Param("nickName") String nickName, @Param("phone") String phone, @Param("partnerId") String partnerId);
 
    UserModel queryUserOtherApiById(@Param("userId") String userId, @Param("userType") String userType);
}