InfApplyProcessDao.java 309 B

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