1234567891011121314151617181920212223242526272829 |
- package com.jtgh.qlyg.service;
- import com.jtgh.qlyg.entity.InfApplyResultEntity;
- import com.jtgh.yjpt.entity.qlyg.ApplyResultEntity;
- /**
- * 行政权力办件结果信息Service
- *
- * @author masn
- *
- */
- public interface InfApplyResultService {
- /**
- * 保存办件过程信息
- *
- * @param entity
- * @return
- */
- public <S extends InfApplyResultEntity> S save(S entity);
- /**
- * 同步办件基本信息
- *
- * @param entity
- * @return
- */
- public InfApplyResultEntity save(ApplyResultEntity entity);
- }
|