Ejemplo n.º 1
0
 /**
  * Copyright (C), 2000-2006, Kingstar Co., Ltd.<br>
  * File name: .java<br>
  * Description: GetDictionary根据操作员编号得到分组列表中的所有人员<br>
  * Return: List<br>
  * Modify History: <br>
  * 操作类型 操作人 操作时间 操作内容<br>
  * ======================================<br>
  * 创建 韩纪伟 2006-4-11 <br>
  *
  * @author 韩纪伟
  * @version
  * @since 1.0
  */
 public static List getAttendeeGroupListByOper(String username) {
   DictionaryDAO dao = DictionaryDAO.getInstance();
   List groupList = new ArrayList();
   try {
     groupList = dao.getAttendeeGroupListByOper(username);
   } catch (HibernateException he) {
     he.printStackTrace();
   } finally {
     closeSession();
   }
   return groupList;
 }