CZT
2023-09-23 a1f0690d10288f9aa82b7fe96a9c4e33d9ad7661
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.fzzy.async.fzzy35.repository;
 
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;
import java.util.List;
 
/**
 * 入库通知单
 *
 * @author czt
 * @date 2023-04-06 10:10
 */
public interface Fzzy35SyncNoticeInRep extends JpaRepository<Fz35InoutNoticeIn, String> {
 
 
    /**
     * 根据id获取入库通知单信息
     * @param id
     * @return
     */
    @Query("from Fz35InoutNoticeIn where id=:id ")
    List<Fz35InoutNoticeIn> listInoutNoticeInById(@Param("id") String id);
 
}