DtywCbsbService.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.jtgh.cjhs.service;
  2. import java.util.List;
  3. import org.springframework.data.domain.Page;
  4. import org.springframework.data.domain.Pageable;
  5. import org.springframework.data.jpa.domain.Specification;
  6. import com.jtgh.cjhs.entity.DtywCbsbEntity;
  7. import com.jtgh.cjhs.entity.DtywCbsbgtHwEntity;
  8. import com.jtgh.cjhs.entity.DtywCbsbszHwEntity;
  9. import com.jtgh.cjhs.entity.DtywCbsbytHwEntity;
  10. /**
  11. * 危险品申报信息
  12. *
  13. * @author 刘福亮
  14. *
  15. */
  16. public interface DtywCbsbService {
  17. public Page<DtywCbsbEntity> findAll(Specification<DtywCbsbEntity> spec,
  18. Pageable pageable);
  19. public DtywCbsbEntity findBySbdbh(String sbdbh);
  20. public List<DtywCbsbEntity> findByZwcm(String zwcm);
  21. public List<DtywCbsbgtHwEntity> findCbsbgtHwBySbdbh(String sbdbh);
  22. public List<DtywCbsbszHwEntity> findCbsbszHwBySbdbh(String sbdbh);
  23. public List<DtywCbsbytHwEntity> findCbsbytHwBySbdbh(String sbdbh);
  24. public List<DtywCbsbgtHwEntity> findCbsbgtHwBySbdbhAndBsxhAndXh(
  25. String sbdbh, Long bsxh, Long xh);
  26. public List<DtywCbsbszHwEntity> findCbsbszHwBySbdbhAndBsxhAndXh(
  27. String sbdbh, Long bsxh, Long xh);
  28. public List<DtywCbsbytHwEntity> findCbsbytHwBySbdbhAndBsxhAndXh(
  29. String sbdbh, Long bsxh, Long xh);
  30. }