InfApplyResultDao.java 306 B

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