InfApplyDao.java 285 B

1234567891011121314
  1. package com.jtgh.qlyg.dao;
  2. import com.jtgh.qlyg.dao.common.QlygRepository;
  3. import com.jtgh.qlyg.entity.InfApplyEntity;
  4. /**
  5. * 行政权力办件基本信息DAO
  6. *
  7. * @author masn
  8. *
  9. */
  10. public interface InfApplyDao extends QlygRepository<InfApplyEntity, String> {
  11. }