📄 areaqueryimpl.java
字号:
package com.doone.fj1w.fjmgr.order.list;
import java.util.Map;
import com.doone.data.DataTable;
import com.doone.fj1w.fjmgr.order.DAO;
/**
* <code>
* 获取地市中的地区信息。
* 传入citycode.
* </code>
* @author Administrator
*
*/
public class AreaQueryImpl extends DAO implements QueryListInterface {
private static final long serialVersionUID = -625423542543221L;
public AreaQueryImpl() {
super();
// TODO Auto-generated constructor stub
}
/* (non-Javadoc)
* @see com.doone.fj1w.fjmgr.order.list.QueryListInterface#getList(java.util.Map)
*/
public DataTable getList(Map _map) throws RuntimeException {
try{
if(_map == null)
throw new RuntimeException("输入参数不存在");
String citycode = (String)_map.get("CITYCODE");
if("".equals(citycode)){
}
}catch(RuntimeException ex){}
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -