package com.xzx.gc.pay.mapper; import com.xzx.gc.entity.OtherUserInfo; import com.xzx.gc.model.admin.UserModel; import com.xzx.gc.util.GcMapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; @Repository public interface OtherUserMapper extends GcMapper { UserModel queryUserOtherInfoById(@Param("userId") String userId); UserModel queryRecoveryById(@Param("userId") String userId, @Param("userType") String userType); }