serproblemservise.java.svn-base
来自「本例使用Java + Jsp 实现选择树的过程,主要使用Struts+JDBC/」· SVN-BASE 代码 · 共 28 行
SVN-BASE
28 行
/*
* $Workfile: SerProblemServise.java$
* Copyright (c) 2007 Jama, International.
* All rights reserved.
* Creator Jun
* Last Changed by: $Author: Jun$
* On: $Date: 2007-8-30 下午09:52:37$
* $Revision: 1$
*/
package com.jama.rcrm.service.business;
import java.util.List;
import com.jama.common.taglib.QueryInfo;
import com.jama.rcrm.service.business.dto.SerProblemDto;
import com.jama.rcrm.service.web.form.ProblemForm;
public interface SerProblemServise
{
public abstract boolean addProblemType(SerProblemDto serProblemDto) throws Exception;
public abstract boolean modifyProblemType(SerProblemDto serProblemDto) throws Exception;
public abstract boolean deleteProblemType(String ...ids) throws Exception;
public abstract ProblemForm getProblemTypeById(String id) throws Exception;
public abstract List getProblem(QueryInfo queryInfo) throws Exception;
public abstract List getProblemList()throws Exception;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?