admin
2020-10-27 69cb3ca5c0fd5f78b0c33bf92601066a37b0209e
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.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);
    }
 
}