|
|
package com.yoho.search.dal;
|
|
|
|
|
|
import com.yoho.search.dal.model.Videos;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
...
|
...
|
@@ -15,7 +16,7 @@ public interface VideosMapper { |
|
|
|
|
|
int selectCountByPrimaryKey(Integer id);
|
|
|
|
|
|
List<Videos> selectByIds(List<Integer> ids);
|
|
|
List<Videos> selectByIds(@Param("ids") List<Integer> ids);
|
|
|
|
|
|
int updateByPrimaryKeySelective(Videos record);
|
|
|
|
...
|
...
|
|