InfApplyService.java 624 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.jtgh.qlyg.service;
  2. import com.jtgh.qlyg.entity.InfApplyEntity;
  3. import com.jtgh.yjpt.entity.qlyg.ApplyEntity;
  4. /**
  5. * 行政权力办件基本信息Service
  6. *
  7. * @author masn
  8. *
  9. */
  10. public interface InfApplyService {
  11. /**
  12. * 根据ID获取行政权力办件基本信息
  13. */
  14. public InfApplyEntity findOne(String id);
  15. /**
  16. * 保存办件基本信息
  17. *
  18. * @param Entity
  19. * @return
  20. */
  21. public <S extends InfApplyEntity> S save(S Entity);
  22. /**
  23. * 同步办件基本信息
  24. *
  25. * @param entity
  26. * @return
  27. */
  28. public InfApplyEntity save(ApplyEntity entity);
  29. }