对比新文件 |
| | |
| | | package com.fzzy.async.fzzy40.repository; |
| | | |
| | | import com.fzzy.async.fzzy40.entity.*; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 鐔忚捀澶囨瀛愯〃 - 绮儏淇℃伅 |
| | | * |
| | | * @Author:YAN |
| | | */ |
| | | public interface Fzzy40SyncDrugLogDtlRep extends JpaRepository<Fz40DrugLogDtl, String> { |
| | | |
| | | |
| | | @Query("from Fz40DrugLogDtl where id =:id") |
| | | List<Fz40DrugLogDtl> listDrugLogDtl(@Param("id") String id ); |
| | | |
| | | } |
对比新文件 |
| | |
| | | package com.fzzy.async.fzzy40.repository; |
| | | |
| | | import com.fzzy.async.fzzy40.entity.*; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 璁惧淇℃伅 |
| | | * |
| | | * @Author:YAN |
| | | */ |
| | | public interface Fzzy40SyncDrugLogPeopleRep extends JpaRepository<Fz40DrugLogPeople, String> { |
| | | |
| | | @Query("from Fz40DrugLogPeople where id =:id") |
| | | List<Fz40DrugLogPeople> listDrugLogPeople(@Param("id") String id ); |
| | | } |
对比新文件 |
| | |
| | | package com.fzzy.async.fzzy40.repository; |
| | | |
| | | import com.fzzy.async.fzzy40.entity.*; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 璁惧淇℃伅 |
| | | * |
| | | * @Author:YAN |
| | | */ |
| | | public interface Fzzy40SyncDrugLogWayRep extends JpaRepository<Fz40DrugLogWay, String> { |
| | | |
| | | @Query("from Fz40DrugLogWay where id =:id") |
| | | List<Fz40DrugLogWay> listDrugLogWay(@Param("id") String id ); |
| | | } |