| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.zhcs.dt.service.system.buttonrights;
- import java.util.List;
- import com.zhcs.dt.util.PageData;
- /**
- * 说明:按钮权限 接口
- * 创建人:FH Q313596790
- * 创建时间:2016-01-16
- * @version
- */
- public interface ButtonrightsManager{
- /**新增
- * @param pd
- * @throws Exception
- */
- public void save(PageData pd)throws Exception;
-
- /**通过(角色ID和按钮ID)获取数据
- * @param pd
- * @throws Exception
- */
- public PageData findById(PageData pd)throws Exception;
-
- /**删除
- * @param pd
- * @throws Exception
- */
- public void delete(PageData pd)throws Exception;
-
- /**列表(全部)
- * @param pd
- * @throws Exception
- */
- public List<PageData> listAll(PageData pd)throws Exception;
-
- /**列表(全部)左连接按钮表,查出安全权限标识(主副职角色综合)
- * @param pd
- * @throws Exception
- */
- public List<PageData> listAllBrAndQxnameByZF(String[] ROLE_IDS)throws Exception;
-
- /**列表(全部)左连接按钮表,查出安全权限标识(主职角色)
- * @param pd
- * @throws Exception
- */
- public List<PageData> listAllBrAndQxname(PageData pd)throws Exception;
-
- }
|