package com.jtgh.qlyg.service; import com.jtgh.qlyg.entity.InfApplyProcessEntity; import com.jtgh.yjpt.entity.qlyg.ApplyProcessEntity; /** * 行政权力办件过程信息Service * * @author masn * */ public interface InfApplyProcessService { /** * 保存办件过程信息 * * @param entity * @return */ public S save(S entity); /** * 同步办件基本信息 * * @param entity * @return */ public InfApplyProcessEntity save(ApplyProcessEntity entity); }