| | |
| | | |
| | | import com.linghu.model.entity.Platform; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author xy |
| | |
| | | * @Entity com.linghu.model.entity.Platfrom |
| | | */ |
| | | public interface PlatformMapper extends BaseMapper<Platform> { |
| | | public Platform getPlatformByDomain(String domain); |
| | | public Platform getPlatformByDomain(@Param("domain") String domain, @Param("platformName") String platformName); |
| | | |
| | | public Platform getPlatformByDomainWeiYi(@Param("domain") String domain); |
| | | } |