admin
2021-09-24 f788607ff771a47bc60d6a86e00b3433c40f3d2c
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);
    }
 
}