InfLoginLogDao.java 285 B

123456789101112131415
  1. package com.jtgh.qlyg.dao;
  2. import com.jtgh.qlyg.dao.common.QlygRepository;
  3. import com.jtgh.qlyg.entity.InfLoginLogEntity;
  4. /**
  5. * 登录情况记录DAO
  6. *
  7. * @author masn
  8. *
  9. */
  10. public interface InfLoginLogDao extends
  11. QlygRepository<InfLoginLogEntity, String> {
  12. }