InfApplyProcessService.java 556 B

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