Example #1
0
  /**
   * Copyright (C), 2000-2006, Kingstar Co., Ltd.<br>
   * File name: .java<br>
   * Description: OperatorUtil人员列表<br>
   * Return: boolean<br>
   * Modify History: <br>
   * 操作类型 操作人 操作时间 操作内容<br>
   * ======================================<br>
   * 创建 韩纪伟 2006-4-24 <br>
   *
   * @author 韩纪伟
   * @version
   * @since 1.0
   */
  public static List getCustTypeList() {
    DictionaryDAO dao = DictionaryDAO.getInstance();
    List custType = null;
    try {
      custType = dao.getCustTypeList();
    } catch (HibernateException he) {

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