⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkservice.java

📁 一个关于短信的java程序,非常适合java程序员,谢谢大家
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -