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 { UserModel queryUserOtherById(@Param("userId") String userId); List> 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); }