123456789101112131415 |
- 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<PatientLabelDO, String>, JpaSpecificationExecutor<PatientLabelDO> {
- public List<PatientLabelDO> findByLabelTypeAndStatus(String labelType,Integer status);
- }
|