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

📄 votetopicdaoimpl.java

📁 jeecms 网站后台源码,提供基本网站管理的功能,相当强大
💻 JAVA
字号:
package com.jeecms.auxiliary.dao.impl;

import org.springframework.stereotype.Repository;

import com.jeecms.auxiliary.entity.VoteTopic;
import com.jeecms.auxiliary.dao.VoteTopicDao;
import com.jeecms.core.JeeCoreDaoImpl;

@Repository
public class VoteTopicDaoImpl extends JeeCoreDaoImpl<VoteTopic> implements
		VoteTopicDao {
	public VoteTopic getCurrentTopic(Long webId) {
		String hql = "from VoteTopic v where v.website.id=? and v.current=true and v.disabled=false order by v.id desc";
		return (VoteTopic) findUnique(hql, webId);
	}
}

⌨️ 快捷键说明

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