package com.fzzy.async.fzzy35.repository;
|
|
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;
|
|
import java.util.List;
|
|
/**
|
* 出库通知单
|
*
|
* @author czt
|
* @date 2023-04-06 10:10
|
*/
|
public interface Fzzy35SyncNoticeOutRep extends JpaRepository<Fz35InoutNoticeOut, String> {
|
|
|
/**
|
* 根据id获取出库通知单信息
|
* @param id
|
* @return
|
*/
|
@Query("from Fz35InoutNoticeOut where id=:id ")
|
List<Fz35InoutNoticeOut> listInoutNoticeOutById(@Param("id") String id);
|
|
}
|