📄 counterdao.java
字号:
/**
*
*/
package com.jdlssoft.portal.counter.dao;
import java.util.List;
import com.jdlssoft.portal.counter.entity.CounterDTO;
import com.nci.nportal.ufw.exception.DAOException;
/**
* @project:
* @function:
* @author jones
* @email: hkan@nci.com.cn
* @version:1.0
*/
public interface CounterDAO {
public boolean updateCounter(int counterNumber) throws DAOException;
public int getCounter() throws DAOException;
public boolean creatCounter(CounterDTO dto) throws DAOException;
public boolean updateCounter(CounterDTO dto) throws DAOException;
public boolean removeCounter(String counterId) throws DAOException;
public CounterDTO getCounter(String counterId) throws DAOException;
public List getAllCounters() throws DAOException;
public List getAllCountersNotDisabled() throws DAOException;
public List getAscCounters() throws DAOException;
public List getDownCounters() throws DAOException;
public CounterDTO getCounterOfPortlet(String portletId) throws DAOException;
public boolean updateCounterOfPortlet(String counterId,String portletId) throws DAOException;
public boolean isAlreadyExist(CounterDTO dto) throws DAOException;
public boolean createCounterOfPortlet(String counterId,String portletId) throws DAOException;
public boolean isAlreadyExistCounterOfPortlet(String portletId) throws DAOException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -