9e6430ec49b2b6d97fd2e3b63a0d57ef70b1b4b9.svn-base 792 B

123456789101112131415161718192021222324
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.dto.BisInspKeyRegSecDicDto;
  3. import cn.com.goldenwater.dcproj.model.ObjKeyPblmRel;
  4. import cn.com.goldenwater.dcproj.param.KeyRegParam;
  5. import cn.com.goldenwater.dcproj.param.ObjKeyPblmRelParam;
  6. import cn.com.goldenwater.core.persistence.CrudDao;
  7. import org.apache.ibatis.annotations.Param;
  8. import org.springframework.stereotype.Repository;
  9. import java.util.List;
  10. @Repository
  11. public interface ObjKeyPblmRelDao extends CrudDao<ObjKeyPblmRel, ObjKeyPblmRelParam> {
  12. List<ObjKeyPblmRel> findProType(@Param("proType") String proType);
  13. List<ObjKeyPblmRel> convertGroup(ObjKeyPblmRelParam pblmRelParam);
  14. List<BisInspKeyRegSecDicDto> findOrgType();
  15. List<ObjKeyPblmRel> findPblmType(KeyRegParam regParam);
  16. }