⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modifyenterprisedaofactory.java

📁 一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs12315src里,没有打包数据库.
💻 JAVA
字号:
/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

package com.gs.component.enterprise.dao;

import com.gs.util.*;

public class ModifyEnterpriseDAOFactory {
    public ModifyEnterpriseDAOFactory() {
    }

    /**
     * This method instantiates a ModifyEnterpriseDAOImpl return ModifyEnterpriseDAO
     * ModifyEnterpriseDAOImpl implements ModifyEnterpriseDAO
     */
    public static ModifyEnterpriseDAO getDAO() throws AppException {
        ModifyEnterpriseDAO modifyEnterpriseDAO = null;
        try {
            modifyEnterpriseDAO = new ModifyEnterpriseDAOImpl();
        }
        catch (Exception e) {
            throw new AppException("ModifyEnterpriseDAOFactory.getDAO:  FetcAppException while instantiates ModifyEnterpriseDAOImpl : \n" +
                                   e.getMessage());
        }
        return modifyEnterpriseDAO;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -