package com.dy.pipIrrGlobal.daoDemo; import com.dy.pipIrrGlobal.pojoDemo.DemoAddress; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface DemoAddressMapper { DemoAddress selectByUserId(@Param("userId") Long userId) ; }