InfLoginLogService.java 254 B

123456789101112131415
  1. package com.jtgh.qlyg.service;
  2. import com.jtgh.qlyg.entity.InfLoginLogEntity;
  3. /**
  4. * 登录情况记录Service
  5. *
  6. * @author masn
  7. *
  8. */
  9. public interface InfLoginLogService {
  10. public <S extends InfLoginLogEntity> S save(S entity);
  11. }