| | |
| | | package com.fzzy.async.fzzy35.repository; |
| | | |
| | | import com.fzzy.async.fzzy35.entity.InoutNoticeOut; |
| | | import com.fzzy.async.fzzy35.entity.InoutRecord; |
| | | import com.fzzy.async.fzzy35.entity.Fz35InoutNoticeOut; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | |
| | | * @author czt |
| | | * @date 2023-04-06 10:10 |
| | | */ |
| | | public interface Fzzy35SyncNoticeOutRep extends JpaRepository<InoutNoticeOut, String> { |
| | | public interface Fzzy35SyncNoticeOutRep extends JpaRepository<Fz35InoutNoticeOut, String> { |
| | | |
| | | |
| | | /** |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @Query("from InoutNoticeOut where id=:id ") |
| | | List<InoutNoticeOut> listInoutNoticeOutById(@Param("id") String id); |
| | | @Query("from Fz35InoutNoticeOut where id=:id ") |
| | | List<Fz35InoutNoticeOut> listInoutNoticeOutById(@Param("id") String id); |
| | | |
| | | } |