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

📄 collegedaoimpl.java

📁 基于JAVA的学生就业信息网 实现对信息浏览 检索 审核 修改和删除
💻 JAVA
字号:
/*
 * Created on 2005-7-11
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.ug.sztz.dao.ibatis.sztz;

import java.util.List;

import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;
import org.ug.sztz.dao.sztz.CollegeDao;
//import org.ug.sztz.domain.sztz.College;

/**
 * @author xix
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class CollegeDaoImpl extends SqlMapClientDaoSupport implements CollegeDao {
	
/*
	public College createCollege(Object college) {
		// TODO Auto-generated method stub
		return (College)this.getSqlMapClientTemplate().insert("createCollege", college);
	}


	public int upadateCollege(Object college) {
		// TODO Auto-generated method stub
		return this.getSqlMapClientTemplate().update("updateCollege", college);
	}


	public int delegeCollege(String collegeId) {
		// TODO Auto-generated method stub
		return this.getSqlMapClientTemplate().delete("deleteCollegeById", collegeId);
	}


	public int delegeCollegeByCid(String cid) {
		// TODO Auto-generated method stub
		return this.getSqlMapClientTemplate().delete("deleteCollegeByCId", cid);
	}


	public List listCollege() {
		// TODO Auto-generated method stub
		return this.getSqlMapClientTemplate().queryForList("listCollege", null);
	}


	public College getCollegeById(String id) {
		// TODO Auto-generated method stub
		return (College)this.getSqlMapClientTemplate().queryForObject("getCollegeById", id);
	}

	public College getCollegeByCId(String cid) {
		// TODO Auto-generated method stub
		return (College)this.getSqlMapClientTemplate().queryForObject("getCollegeByCId", cid);
	}
	
*/
}

⌨️ 快捷键说明

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