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

📄 ilinkcontroldao.java

📁 本平台是以web2.0为基本的标准
💻 JAVA
字号:
package com.afuer.hib.dao.orgModel.Idao;

import java.io.Serializable;
import java.util.List;

import org.springframework.dao.DataAccessException;

import com.afuer.hib.form.LinkControl;
import com.afuer.hib.form.UserAcl;

public interface ILinkControlDao {
	Serializable saveLinkcontrol(LinkControl link) throws DataAccessException;

	Serializable saveUserACL(UserAcl ua) throws DataAccessException;

	List getRolesByLink(final Integer linkid) throws DataAccessException;

	List getFreeRoles(final Integer linkid) throws DataAccessException;

	List find(LinkControl link) throws DataAccessException;

	List find(Integer id) throws DataAccessException;

	LinkControl get(Integer id) throws DataAccessException;

	void UpdateLinkControl(LinkControl link) throws DataAccessException;

	void deleteLinkControl(LinkControl link) throws DataAccessException;

	String getLinkTree() throws DataAccessException;

	List findAll() throws DataAccessException;

	List getSubListByParentid(String parentid) throws DataAccessException;

	void deleteUserAcl(final Integer roleid, final Integer linkid)
			throws DataAccessException;

	void deleteLinkInfo(Integer id) throws DataAccessException;

	void delSubLinkTree(final Integer id) throws DataAccessException;
}

⌨️ 快捷键说明

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