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 save(S entity); /** * 同步办件基本信息 * * @param entity * @return */ public InfApplyResultEntity save(ApplyResultEntity entity); }