InfCheckLogDao.java 285 B

123456789101112131415
  1. package com.jtgh.qlyg.dao;
  2. import com.jtgh.qlyg.dao.common.QlygRepository;
  3. import com.jtgh.qlyg.entity.InfCheckLogEntity;
  4. /**
  5. * 办件查看记录DAO
  6. *
  7. * @author masn
  8. *
  9. */
  10. public interface InfCheckLogDao extends
  11. QlygRepository<InfCheckLogEntity, String> {
  12. }