admin
2021-08-27 8fee151ffae0c3818694b7318583814bf92663e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yeshi.buwan.dao.juhe.iqiyi;
 
import org.springframework.stereotype.Repository;
 
import com.yeshi.buwan.dao.base.BaseDao;
import com.yeshi.buwan.videos.iqiyi.entity.VideoIqiyi;
 
import java.util.List;
 
@Repository
public class VideoIqiyiDao extends BaseDao<VideoIqiyi> {
 
    /**
     * 根据VideoId检索
     *
     * @param videoId
     * @return
     */
    public List<VideoIqiyi> listByVideoId(String videoId) {
        return list("from VideoIqiyi video where video.video.id=" + videoId);
    }
 
}