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