checkservice.java

来自「一个关于短信的java程序,非常适合java程序员,谢谢大家」· Java 代码 · 共 23 行

JAVA
23
字号
package com.chinatech.cpmanage.service;

import com.chinatech.cpmanage.common.BusinessException;
import com.chinatech.cpmanage.hibernate.CpmanageContentsTemp;
import com.chinatech.cpmanage.hibernate.CpmanageOperatorLog;

import java.util.List;

public interface CheckService {
	public List getContentsTemp(String str) throws BusinessException;
	
	public CpmanageContentsTemp getContentsById(String columnId) throws BusinessException;
	
	public void modifyContent(CpmanageContentsTemp cct) throws BusinessException;
	
	public int getContentCount() throws BusinessException;
	
	public List getContent(int startRow, int pageSize) throws BusinessException;
	
	public void addOperLog(CpmanageOperatorLog operlog) throws BusinessException;

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?