* @return
*/
public List<Map<String, String>> getSsbmList(String GG_CZYB_ID) {
try {
if (GG_CZYB_ID == null) {
throw new MisException("人员ID参数为null!");
}
Map map = new HashMap();
String sql = "select GG_BMXX.Id,GG_BMXX.BMMC,GG_BMXX.BMFL from GG_BMRY,GG_BMXX where GG_BMRY.BMID=GG_BMXX.Id and GG_BMRY.RYID=:GG_CZYB_ID order by GG_BMXX.Sxh";
map.put("GG_CZYB_ID", GG_CZYB_ID);
return this.baseDaoEntity.queryForList(sql,map);
} catch (MisException e) {
e.printStackTrace();
throw e;
} catch (Exception e) {
e.printStackTrace();
throw new MisException("[LoginServiceImpl.getSsbmList]异常!");
}
}