package com.yihu.jw.label; import com.yihu.jw.entity.base.label.PatientLabelDO; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.repository.PagingAndSortingRepository; import java.util.List; /** * Created by Trick on 2018/12/7. */ public interface PatientLabelDao extends PagingAndSortingRepository, JpaSpecificationExecutor { public List findByLabelTypeAndStatus(String labelType,Integer status); }