📄 bsssreachpayinfo.java
字号:
package com.doone.fj1w.fjmgr.order.list;
import java.io.IOException;
import java.util.Map;
import com.doone.data.DataTable;
import com.doone.fj1w.fjmgr.order.*;
import com.doone.iossp.FormBody;
import com.doone.util.FileLogger;
/**
* <strong>
* bss接口获取客户的所有信息,
* 包括:增加,查询客户信息
* </strong>
* @author predan
*
*/
public class BssSreachPayInfo implements QueryListInterface{
private static final long serialVersionUID = 1L;
static private FileLogger log = new FileLogger();
public BssSreachPayInfo() {
}
/**
* <code>获取bss接口的计费方式信息/code>
* @param request
* @param response
* @param _map
*/
static public DataTable getPayModeList(Map _map) {
try{
if(_map == null)
throw new RuntimeException("获取bss接口的计费方式信息的入参为空。");
String areaId = (String)_map.get("SERVIAREA_ID");
String serverType_Id = (String)_map.get("SERVISERV_TYPE_ID");
String cityCode = (String)_map.get("CITYCODE");
DataTable _dt = BssInter3.callWebQryBillType(areaId,serverType_Id,cityCode);
if(_dt == null)throw new java.io.IOException("网络异常,获取计费方式信息失败。");
return _dt;
}catch(java.io.IOException iox){
log.warn(iox.getMessage(),iox);
}catch(RuntimeException rux){
log.warn(rux.getMessage(),rux);
}
throw new RuntimeException("未知异常");
}
/**
* <code>获取bss接口的帐目类型信息/code>
* @param request
* @param response
* @param _map
*/
static public DataTable getPayTypeList(Map _map) {
try{
if(_map == null)
throw new RuntimeException("获取bss接口的帐目类型信息的入参为空。");
String serverType_Id = (String)_map.get("SERVISERV_TYPE_ID");
String cityCode = (String)_map.get("CITYCODE");
DataTable _dt = BssInter3.callWebQryAcctItem(serverType_Id,cityCode);
if(_dt == null)throw new java.io.IOException("网络异常,获取帐目类型信息失败。");
return _dt;
}catch(java.io.IOException iox){
log.warn(iox.getMessage(),iox);
}catch(RuntimeException rux){
log.warn(rux.getMessage(),rux);
}
throw new RuntimeException("未知异常");
}
public DataTable getList(Map map) throws RuntimeException {
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -