package com.gkhy.labRiskManage.domain.basic.repository.jpa; import com.gkhy.labRiskManage.domain.basic.entity.FactorLecC; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.jpa.repository.Query; import org.springframework.stereotype.Repository; import java.util.List; /** * 评价因子LEC-C */ @Repository public interface FactorLecCRepository extends JpaRepository , JpaSpecificationExecutor { /** * 评价因子LEC-C 列表 */ @Query(value = "select t from FactorLecC t ") List listLecC(); }