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

📄 daofactorymssqlimpl.java

📁 基于Java的地图数据管理软件。使用MySQL数据库管理系统。
💻 JAVA
字号:
package com.tongtu.Dao;

import com.tongtu.Dao.plan.PlanDAO;
import com.tongtu.Dao.plan.planDao.PlanDAOImpl;
import com.tongtu.Dao.role.RoleDAO;
import com.tongtu.Dao.role.roleDao.RoleDAOImpl;
import com.tongtu.Dao.user.UserDAO;
import com.tongtu.Dao.user.userDao.UserDAOImpl;


/**
 * Created by IntelliJ IDEA.
 * User: Administrator
 * Date: 2003-8-22
 * Time: 14:02:12
 * To change this template use Options | File Templates.
 */
public class DAOFactoryMssqlImpl extends DAOFactory {
   
   

   
    public UserDAO getUserDAO() {
        // TODO 自动生成方法存根
        return new UserDAOImpl();
    }

	
	public RoleDAO getRoleDAO() {
		// TODO Auto-generated method stub
		return new RoleDAOImpl();
	}



	public PlanDAO getPlanDAO() {
		// TODO Auto-generated method stub
		return new PlanDAOImpl();
	}
  
}

⌨️ 快捷键说明

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