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 { List findProType(@Param("proType") String proType); List convertGroup(ObjKeyPblmRelParam pblmRelParam); List findOrgType(); List findPblmType(KeyRegParam regParam); }