InfApplyResultService.java 550 B

1234567891011121314151617181920212223242526272829
  1. package com.jtgh.qlyg.service;
  2. import com.jtgh.qlyg.entity.InfApplyResultEntity;
  3. import com.jtgh.yjpt.entity.qlyg.ApplyResultEntity;
  4. /**
  5. * 行政权力办件结果信息Service
  6. *
  7. * @author masn
  8. *
  9. */
  10. public interface InfApplyResultService {
  11. /**
  12. * 保存办件过程信息
  13. *
  14. * @param entity
  15. * @return
  16. */
  17. public <S extends InfApplyResultEntity> S save(S entity);
  18. /**
  19. * 同步办件基本信息
  20. *
  21. * @param entity
  22. * @return
  23. */
  24. public InfApplyResultEntity save(ApplyResultEntity entity);
  25. }