DtxtBwDao.java 484 B

123456789101112131415161718192021
  1. package com.jtgh.cjhs.dao;
  2. import java.util.List;
  3. import org.springframework.data.jpa.repository.Query;
  4. import com.jtgh.cjhs.dao.common.CjhsRepository;
  5. import com.jtgh.cjhs.entity.DtxtBwEntity;
  6. /**
  7. *长江海事DAO
  8. *
  9. * @author 刘福亮
  10. *
  11. */
  12. public interface DtxtBwDao extends
  13. CjhsRepository<DtxtBwEntity, String> {
  14. @Query(value = " SELECT * FROM DTXT_BW WHERE BWDM=?1 ", nativeQuery = true)
  15. public List<DtxtBwEntity> findByBwdm(String bwdm);
  16. }