DtywCbsbService.java 1.3 KB

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