package com.jtgh.cjhs.service; import java.util.List; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.domain.Specification; import com.jtgh.cjhs.entity.DtywCbsbEntity; /** * 危险品申报信息 * @author 刘福亮 * */ public interface DtywCbsbService { public Page findAll(Specification spec, Pageable pageable); public DtywCbsbEntity findBySbdbh(String sbdbh); public List findByZwcm(String zwcm); }