InfCheckLogService.java 254 B

123456789101112131415
  1. package com.jtgh.qlyg.service;
  2. import com.jtgh.qlyg.entity.InfCheckLogEntity;
  3. /**
  4. * 办件查看记录Service
  5. *
  6. * @author masn
  7. *
  8. */
  9. public interface InfCheckLogService {
  10. public <S extends InfCheckLogEntity> S save(S entity);
  11. }