czt
2025-09-22 11430ae628f098654579811131abc522d679e870
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.fzzy.async.fzzy35.repository;
 
import com.fzzy.async.fzzy35.entity.Fz35DrugLogDtl;
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
 */
public interface Fzzy35SyncDrugLogDtlRep extends JpaRepository<Fz35DrugLogDtl, String> {
 
 
    @Query("from Fz35DrugLogDtl where id =:id")
    List<Fz35DrugLogDtl> listDrugLogDtl(@Param("id") String id);
 
}