| | |
| | | package com.fzzy.api.view.repository; |
| | | |
| | | import com.fzzy.api.entity.Api1109; |
| | | import com.fzzy.api.entity.Api1202; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.JpaSpecificationExecutor; |
| | | import org.springframework.data.jpa.repository.Modifying; |
| | |
| | | @Modifying |
| | | @Query("update Api1109 set czbz =:czbz where id=:id") |
| | | void updateStatus(@Param("id") String id, @Param("czbz") String czbz); |
| | | |
| | | @Query("from Api1109 where bizId=:bizId ") |
| | | List<Api1109> getDataByBizId(@Param("bizId") String bizId); |
| | | } |