src/main/java/com/gk/firework/Mapper/AuthorizationInfoMapper.java
对比新文件 @@ -0,0 +1,13 @@ package com.gk.firework.Mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gk.firework.Domain.AuthorizationInfo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; @Repository public interface AuthorizationInfoMapper extends BaseMapper<AuthorizationInfo> { AuthorizationInfo selectByUser(@Param("enterprisenumber") String enterprisenumber,@Param("authcode") String authcode); }