downlicensedaoimpl.java

来自「JAVA做的CMS源码」· Java 代码 · 共 24 行

JAVA
24
字号
package com.jeecms.download.dao.impl;

import java.util.List;

import org.springframework.stereotype.Repository;

import com.jeecms.core.JeeCoreDaoImpl;
import com.jeecms.download.dao.DownLicenseDao;
import com.jeecms.download.entity.DownLicense;

@Repository
public class DownLicenseDaoImpl extends JeeCoreDaoImpl<DownLicense> implements
		DownLicenseDao {
	@SuppressWarnings("unchecked")
	public List<DownLicense> getList(Long webId, boolean all) {
		String hql = "from DownLicense l where l.website.id=?";
		if (!all) {
			hql += " l.disabled = false";
		}
		hql += " order by l.priority asc";
		List<DownLicense> list = find(hql, webId);
		return list;
	}
}

⌨️ 快捷键说明

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