12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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<DtywCbsbEntity> findAll(Specification<DtywCbsbEntity> spec,
- Pageable pageable);
- public DtywCbsbEntity findBySbdbh(String sbdbh);
- public List<DtywCbsbEntity> findByZwcm(String zwcm,Date bgsj);
- public List<DtywCbsbgtHwEntity> findCbsbgtHwBySbdbh(String sbdbh);
- public List<DtywCbsbszHwEntity> findCbsbszHwBySbdbh(String sbdbh);
- public List<DtywCbsbytHwEntity> findCbsbytHwBySbdbh(String sbdbh);
- public List<DtywCbsbgtHwEntity> findCbsbgtHwBySbdbhAndBsxhAndXh(
- String sbdbh, Long bsxh, Long xh);
- public List<DtywCbsbszHwEntity> findCbsbszHwBySbdbhAndBsxhAndXh(
- String sbdbh, Long bsxh, Long xh);
- public List<DtywCbsbytHwEntity> findCbsbytHwBySbdbhAndBsxhAndXh(
- String sbdbh, Long bsxh, Long xh);
- }
|