package com.jtgh.cjhs.service; import java.util.Date; 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; import com.jtgh.cjhs.entity.DtywCbsbgtHwEntity; import com.jtgh.cjhs.entity.DtywCbsbszHwEntity; import com.jtgh.cjhs.entity.DtywCbsbytHwEntity; /** * 危险品申报信息 * * @author 刘福亮 * */ public interface DtywCbsbService { public Page findAll(Specification spec, Pageable pageable); public DtywCbsbEntity findBySbdbh(String sbdbh); public List findByZwcm(String zwcm,Date bgsj); public List findCbsbgtHwBySbdbh(String sbdbh); public List findCbsbszHwBySbdbh(String sbdbh); public List findCbsbytHwBySbdbh(String sbdbh); public List findCbsbgtHwBySbdbhAndBsxhAndXh( String sbdbh, Long bsxh, Long xh); public List findCbsbszHwBySbdbhAndBsxhAndXh( String sbdbh, Long bsxh, Long xh); public List findCbsbytHwBySbdbhAndBsxhAndXh( String sbdbh, Long bsxh, Long xh); }