FhbuttonManager.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.zhcs.dt.service.system.fhbutton;
  2. import java.util.List;
  3. import com.zhcs.dt.entity.Page;
  4. import com.zhcs.dt.util.PageData;
  5. /**
  6. * 说明:按钮管理 接口
  7. * 创建人:FH Q313596790
  8. * 创建时间:2016-01-15
  9. * @version
  10. */
  11. public interface FhbuttonManager{
  12. /**新增
  13. * @param pd
  14. * @throws Exception
  15. */
  16. public void save(PageData pd)throws Exception;
  17. /**删除
  18. * @param pd
  19. * @throws Exception
  20. */
  21. public void delete(PageData pd)throws Exception;
  22. /**修改
  23. * @param pd
  24. * @throws Exception
  25. */
  26. public void edit(PageData pd)throws Exception;
  27. /**列表
  28. * @param page
  29. * @throws Exception
  30. */
  31. public List<PageData> list(Page page)throws Exception;
  32. /**列表(全部)
  33. * @param pd
  34. * @throws Exception
  35. */
  36. public List<PageData> listAll(PageData pd)throws Exception;
  37. /**通过id获取数据
  38. * @param pd
  39. * @throws Exception
  40. */
  41. public PageData findById(PageData pd)throws Exception;
  42. /**批量删除
  43. * @param ArrayDATA_IDS
  44. * @throws Exception
  45. */
  46. public void deleteAll(String[] ArrayDATA_IDS)throws Exception;
  47. }