| 123456789101112131415161718192021222324 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.dcproj.dto.BisInspKeyRegSecDicDto;
- import cn.com.goldenwater.dcproj.model.ObjKeyPblmRel;
- import cn.com.goldenwater.dcproj.param.KeyRegParam;
- import cn.com.goldenwater.dcproj.param.ObjKeyPblmRelParam;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- @Repository
- public interface ObjKeyPblmRelDao extends CrudDao<ObjKeyPblmRel, ObjKeyPblmRelParam> {
- List<ObjKeyPblmRel> findProType(@Param("proType") String proType);
- List<ObjKeyPblmRel> convertGroup(ObjKeyPblmRelParam pblmRelParam);
- List<BisInspKeyRegSecDicDto> findOrgType();
- List<ObjKeyPblmRel> findPblmType(KeyRegParam regParam);
- }
|