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

📄 cmschanneldao.java

📁 JEECMS是JavaEE版网站管理系统(Java Enterprise Edition Content Manage System)的简称。 基于java技术开发
💻 JAVA
字号:
package com.jeecms.cms.dao;

import java.util.List;

import com.jeecms.cms.entity.CmsChannel;
import com.jeecms.core.JeeCoreDao;

public interface CmsChannelDao extends JeeCoreDao<CmsChannel> {
	/**
	 * 根据路径查找栏目
	 * 
	 * @param webId
	 * @param path
	 *            栏目路径
	 * @return
	 */
	public CmsChannel getByPath(Long webId, String path);

	/**
	 * 查找根栏目
	 * 
	 * @param webId
	 * @param sysType
	 *            系统类型
	 * @return
	 */
	public CmsChannel getRoot(Long webId, String sysType);

	/**
	 * 查找根栏目,启动过滤器,过滤不能有子节点的栏目。
	 * 
	 * @param webId
	 * @param sysType
	 * @return
	 */
	public CmsChannel getRootWithFilter(Long webId, String sysType);

	public boolean isChild(Long pid, Long cid);

	public List<CmsChannel> getRightChnl(Long webId, String sysType,
			Long adminId, Boolean hasChild);

	public List<CmsChannel> getRightChnl(Long webId, String sysType,
			Long chnlId, Long adminId, Long modelId, Boolean hasChild);

	public List<CmsChannel> getChnlsAndExclude(Long webId, String sysType,
			Long excludeNode);

	public List<CmsChannel> getChnlsForMember(Long webId, Integer groupLevel);
}

⌨️ 快捷键说明

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