📄 serproblemservise.java.svn-base
字号:
/*
* $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -