ShyVideosMapper.java 430 Bytes
package com.cnlive.shenhe.mapper;

import com.cnlive.shenhe.entity.ShyVideos;
import org.apache.ibatis.annotations.Param;
import tk.mybatis.mapper.common.Mapper;

import java.util.List;

public interface ShyVideosMapper extends Mapper<ShyVideos> {
    ShyVideos selectBySpId(@Param("id") Integer id,
                           @Param("spId") Integer spId);

    List<ShyVideos> findMSVideo();

    List<ShyVideos> findJSVideo();
}