ringdao.java
来自「一个免费wap站」· Java 代码 · 共 29 行
JAVA
29 行
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.RingEntity;
import com.eline.wap.resource.model.Ring;
import com.eline.wap.resource.model.RingCondition;
public interface RingDAO {
public Ring getRing(int ringId) throws ResourceDAOSysException;
public Page getRing(int parentId, int start, int count) throws ResourceDAOSysException;
public Page searchRing(RingCondition condition, int start, int count) throws ResourceDAOSysException;
public void createRing(Ring item) throws ResourceDAOSysException;
public void updateRing(Ring item) throws ResourceDAOSysException;
public void deleteRing(int ringId) throws ResourceDAOSysException;
public Page getRingEntities(int ringId, int start, int count) throws ResourceDAOSysException;
public void createRingEntity(RingEntity item) throws ResourceDAOSysException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?