12345678910111213141516171819202122232425262728 |
- 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<DtywCbsbEntity> findAll(Specification<DtywCbsbEntity> spec,
- Pageable pageable);
-
- public DtywCbsbEntity findBySbdbh(String sbdbh);
-
- public List<DtywCbsbEntity> findByZwcm(String zwcm);
-
-
- }
|