📄 videotype.java
字号:
package com.singnet.video.ejb;
import java.rmi.RemoteException;
import java.util.ArrayList;
import javax.ejb.EJBObject;
import com.singnet.util.Pager;
import com.singnet.video.VideoTypeInfo;
public interface VideoType extends EJBObject {
public boolean addVideoType(VideoTypeInfo videoTypeinfo) throws
RemoteException;
public boolean editVideoType(VideoTypeInfo videoTypeinfo) throws
RemoteException;
public boolean deleteVideoType(String id) throws RemoteException;
public ArrayList queryVideoType(Pager pager) throws RemoteException;
public int getTotal(Pager pager) throws RemoteException;
public VideoTypeInfo getVideoTypeById(String id) throws RemoteException;
public VideoTypeInfo getVideoTypeByTypename(String typename) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -