DtywCbsbService.java 589 B

12345678910111213141516171819202122232425262728
  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. /**
  8. * 危险品申报信息
  9. * @author 刘福亮
  10. *
  11. */
  12. public interface DtywCbsbService {
  13. public Page<DtywCbsbEntity> findAll(Specification<DtywCbsbEntity> spec,
  14. Pageable pageable);
  15. public DtywCbsbEntity findBySbdbh(String sbdbh);
  16. public List<DtywCbsbEntity> findByZwcm(String zwcm);
  17. }