📄 picturedao.java
字号:
package com.eline.wap.resource.dao;
import com.eline.wap.common.model.Page;
import com.eline.wap.resource.exceptions.ResourceDAOSysException;
import com.eline.wap.resource.model.Picture;
import com.eline.wap.resource.model.PictureCondition;
public interface PictureDAO {
public Picture getPicture(int pictureId) throws ResourceDAOSysException;
public Page getPictures(int parentId, int start, int count) throws ResourceDAOSysException;
public Page searchPictures(PictureCondition condition, int start, int count) throws ResourceDAOSysException;
public void createPicture(Picture item) throws ResourceDAOSysException;
public void updatePicture(Picture item) throws ResourceDAOSysException;
public void deletePicture(int pictureId) throws ResourceDAOSysException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -