package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.BisInspQaScore1; import cn.com.goldenwater.dcproj.model.BisInspQaScore1Sd; import cn.com.goldenwater.dcproj.param.BisInspQaScore1SdParam; 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 BisInspQaScore1SdDao extends CrudDao { BisInspQaScore1Sd getByCaseScore(@Param("caseId") String caseId, @Param("scoreName") String scoreName); }