| | |
| | | package com.fzzy.async.fzzy35.repository; |
| | | |
| | | import com.fzzy.async.fzzy35.entity.InoutNoticeIn; |
| | | import com.fzzy.async.fzzy35.entity.InoutRecord; |
| | | import com.fzzy.async.fzzy35.entity.Fz35InoutNoticeIn; |
| | | 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 Fzzy35SyncNoticeInRep extends JpaRepository<InoutNoticeIn, String> { |
| | | public interface Fzzy35SyncNoticeInRep extends JpaRepository<Fz35InoutNoticeIn, String> { |
| | | |
| | | |
| | | /** |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @Query("from InoutNoticeIn where id=:id ") |
| | | List<InoutNoticeIn> listInoutNoticeInById(@Param("id") String id); |
| | | @Query("from Fz35InoutNoticeIn where id=:id ") |
| | | List<Fz35InoutNoticeIn> listInoutNoticeInById(@Param("id") String id); |
| | | |
| | | } |