📄 hotspotadminservice.java
字号:
package com.shandong.business.iface;
import java.util.List;
import com.shandong.bean.THotspot;
import com.shandong.struts.form.HotspotForm;
import com.shandong.struts.form.QueryHotspotForm;
public interface HotspotAdminService {
public boolean newHotspot(HotspotForm form, String realPath);
public THotspot findHotspotById(int id);
public List findHotspot(QueryHotspotForm form);
public List findAllHotspot();
public boolean updateHotspot(HotspotForm form, String realPath);
public boolean deleteHotspotVideo(int id, String realPath);
public boolean deleteHotspot(int id, String realPath);
public boolean insertHotspot(String name, String info);
public boolean exportHotspot(List l, String fileName);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -