| | |
| | | |
| | | import cc.mrbird.febs.video.entity.VideoVipInfoEntity; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import io.lettuce.core.dynamic.annotation.Param; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface VideoVipInfoMapper extends BaseMapper<VideoVipInfoEntity> { |
| | | |
| | | List<VideoVipInfoEntity> selectVideoVipInfoByMemberIdAndState(@Param("memberId") long id, @Param("state")Integer state); |
| | | List<VideoVipInfoEntity> selectVideoVipInfoByMemberIdAndState(@Param("memberId") long memberId, @Param("state")Integer state); |
| | | |
| | | } |