?? cmschanneldao.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 + -