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