ButtonrightsManager.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.zhcs.dt.service.system.buttonrights;
  2. import java.util.List;
  3. import com.zhcs.dt.util.PageData;
  4. /**
  5. * 说明:按钮权限 接口
  6. * 创建人:FH Q313596790
  7. * 创建时间:2016-01-16
  8. * @version
  9. */
  10. public interface ButtonrightsManager{
  11. /**新增
  12. * @param pd
  13. * @throws Exception
  14. */
  15. public void save(PageData pd)throws Exception;
  16. /**通过(角色ID和按钮ID)获取数据
  17. * @param pd
  18. * @throws Exception
  19. */
  20. public PageData findById(PageData pd)throws Exception;
  21. /**删除
  22. * @param pd
  23. * @throws Exception
  24. */
  25. public void delete(PageData pd)throws Exception;
  26. /**列表(全部)
  27. * @param pd
  28. * @throws Exception
  29. */
  30. public List<PageData> listAll(PageData pd)throws Exception;
  31. /**列表(全部)左连接按钮表,查出安全权限标识(主副职角色综合)
  32. * @param pd
  33. * @throws Exception
  34. */
  35. public List<PageData> listAllBrAndQxnameByZF(String[] ROLE_IDS)throws Exception;
  36. /**列表(全部)左连接按钮表,查出安全权限标识(主职角色)
  37. * @param pd
  38. * @throws Exception
  39. */
  40. public List<PageData> listAllBrAndQxname(PageData pd)throws Exception;
  41. }