package com.jtgh.qlyg.service; import com.jtgh.qlyg.entity.InfApplyEntity; import com.jtgh.yjpt.entity.qlyg.ApplyEntity; /** * 行政权力办件基本信息Service * * @author masn * */ public interface InfApplyService { /** * 根据ID获取行政权力办件基本信息 */ public InfApplyEntity findOne(String id); /** * 保存办件基本信息 * * @param Entity * @return */ public S save(S Entity); /** * 同步办件基本信息 * * @param entity * @return */ public InfApplyEntity save(ApplyEntity entity); }