Beispiel #1
0
  /**
   * Copyright (C), 2000-2006, Kingstar Co., Ltd.<br>
   * File name: .java<br>
   * Description: GetDictionary与会人员状态<br>
   * Return: String<br>
   * Modify History: <br>
   * 操作类型 操作人 操作时间 操作内容<br>
   * ======================================<br>
   * 创建 韩纪伟 2006-4-30 <br>
   *
   * @author 韩纪伟
   * @version
   * @since 1.0
   */
  public static String getAttendeeStatus(String statusid) {
    DictionaryDAO dao = DictionaryDAO.getInstance();
    String attStatus = "";
    try {
      attStatus = dao.getAttendeeStatus(statusid);
    } catch (HibernateException he) {

    } finally {
      closeSession();
    }
    return attStatus;
  }