DatajurManager.java 713 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.zhcs.dt.service.fhoa.datajur;
  2. import com.zhcs.dt.util.PageData;
  3. /**
  4. * 说明: 组织数据权限接口
  5. * 创建人:FH Q313596790
  6. * 创建时间:2016-04-26
  7. * @version
  8. */
  9. public interface DatajurManager{
  10. /**新增
  11. * @param pd
  12. * @throws Exception
  13. */
  14. public void save(PageData pd)throws Exception;
  15. /**修改
  16. * @param pd
  17. * @throws Exception
  18. */
  19. public void edit(PageData pd)throws Exception;
  20. /**通过id获取数据
  21. * @param pd
  22. * @throws Exception
  23. */
  24. public PageData findById(PageData pd)throws Exception;
  25. /**取出某用户的组织数据权限
  26. * @param pd
  27. * @throws Exception
  28. */
  29. public PageData getDEPARTMENT_IDS(String USERNAME)throws Exception;
  30. }