| | |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | @Query("update Api1202 set czbz =:czbz where rkywdh=:rkywdh") |
| | | int updateStatus(@Param("rkywdh") String rkywdh, @Param("czbz") String czbz); |
| | | |
| | | @Query("from Api1202 where rkywdh=:hwdm ") |
| | | List<Api1202> getDataByHwdm(@Param("hwdm") String hwdm); |
| | | |
| | | @Query("from Api1202 where rkywdh=:rkywdh ") |
| | | List<Api1202> getDataById(@Param("rkywdh") String rkywdh); |
| | | |