1234567891011121314151617 |
- package com.jtgh.qlyg.service;
- import com.jtgh.qlyg.entity.SuperviseStatEntity;
- /**
- * 监察统计信息Service
- *
- * @author masn
- *
- */
- public interface SuperviseStatService {
- /**
- * 保存监察统计信息
- */
- public <S extends SuperviseStatEntity> S save(S entity);
- }
|