jiazx0107@163.com
2023-10-31 e95de698a8a0619ede3d5b672ebaf24cac321297
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.fzzy40.repository;
 
import com.fzzy.async.fzzy40.entity.Fz40InoutNoticeOut;
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 Fzzy40SyncNoticeOutRep extends JpaRepository<Fz40InoutNoticeOut, String> {
 
 
    /**
     * 根据id获取出库通知单信息
     * @param id
     * @return
     */
    @Query("from Fz40InoutNoticeOut where id=:id ")
    List<Fz40InoutNoticeOut> listInoutNoticeOutById(@Param("id") String id);
 
}