xiaoyong931011
2021-12-21 5932c45bd0d3ea78cbe1dbafc4136abd1492f11d
src/main/java/cc/mrbird/febs/video/mapper/VideoVipInfoMapper.java
@@ -2,12 +2,13 @@
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);
    VideoVipInfoEntity selectVideoVipInfoByMemberIdAndState(@Param("memberId") long memberId, @Param("state")Integer state);
    VideoVipInfoEntity selectByMemberId(@Param("memberId") Long memberId);
}