📄 imoviebusiness.java
字号:
package com.hintsoft.vod.business;
import java.util.Collection;
import com.hintsoft.vod.entities.Movie;
import com.hintsoft.vod.entities.PageBean;
public interface IMovieBusiness {
public void createMovie(Movie movie);
public void updateMovie(Movie movie);
public void delete(int movieId);
/**
* 读取影片信息.
* 如果没有找到,将返回<tt>null</tt>
*
* @param movieId 影片primary key
*/
public Movie readMovie(int movieId);
public Collection getMovies(Movie movie);
public PageBean getNextMovie(int currentPage, int recordPage);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -