123456789101112131415161718192021 |
- package com.jtgh.cjhs.dao;
- import java.util.List;
- import org.springframework.data.jpa.repository.Query;
- import com.jtgh.cjhs.dao.common.CjhsRepository;
- import com.jtgh.cjhs.entity.DtxtBwEntity;
- /**
- *长江海事DAO
- *
- * @author 刘福亮
- *
- */
- public interface DtxtBwDao extends
- CjhsRepository<DtxtBwEntity, String> {
- @Query(value = " SELECT * FROM DTXT_BW WHERE BWDM=?1 ", nativeQuery = true)
- public List<DtxtBwEntity> findByBwdm(String bwdm);
- }
|