FHlogManager.java 1006 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.zhcs.dt.service.system.fhlog;
  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-05-10
  9. * @version
  10. */
  11. public interface FHlogManager{
  12. /**新增
  13. * @param pd
  14. * @throws Exception
  15. */
  16. public void save(String USERNAME, String CONTENT)throws Exception;
  17. /**删除
  18. * @param pd
  19. * @throws Exception
  20. */
  21. public void delete(PageData pd)throws Exception;
  22. /**列表
  23. * @param page
  24. * @throws Exception
  25. */
  26. public List<PageData> list(Page page)throws Exception;
  27. /**列表(全部)
  28. * @param pd
  29. * @throws Exception
  30. */
  31. public List<PageData> listAll(PageData pd)throws Exception;
  32. /**通过id获取数据
  33. * @param pd
  34. * @throws Exception
  35. */
  36. public PageData findById(PageData pd)throws Exception;
  37. /**批量删除
  38. * @param ArrayDATA_IDS
  39. * @throws Exception
  40. */
  41. public void deleteAll(String[] ArrayDATA_IDS)throws Exception;
  42. }