📄 gbs_serviceinfoactionlogic.java
字号:
package LOGIC;
import javax.servlet.http.HttpServletResponse;
import javax.sql.DataSource;
import COMMON.ReturnValue;
import COMMON.SystemConstants;
import DB.GBS_MServiceInfo_DB;
/**
* GBS_ServiceInfoActionLogic implements SystemConstants
* created on 29-07-2004
* @author mxx
* @version 1.0
*/
public class GBS_ServiceInfoActionLogic implements SystemConstants {
private DataSource datasource = null;
/**
* method GBS_ServiceInfoActionLogic
* @param datasource
* @return
* @throws Exception
*/
public GBS_ServiceInfoActionLogic(DataSource datasource) {
this.datasource = datasource;
}
/**
* method getServiceInfoList
* @param
* @return ReturnValue
* @throws Exception
*/
public ReturnValue getServiceInfoList(int plusHour) throws Exception {
GBS_MServiceInfo_DB Service_DB = new GBS_MServiceInfo_DB(this.datasource);
return Service_DB.getServiceinfoList(plusHour);
}
/**
* method getAttachmentFile
* @param strSeqNo
* @param response
* @return ReturnValue
* @throws Exception
*/
public ReturnValue getAttachmentFile( String strSeqNo,
HttpServletResponse response)throws Exception{
GBS_MServiceInfo_DB service_DB = new GBS_MServiceInfo_DB(this.datasource);
ReturnValue returnValue = service_DB.getAttachmentFile( strSeqNo, response);
return returnValue;
}
//ATTACHMENT_FILE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -