1234567891011121314151617181920212223 |
- package cn.com.yskj.zfdm.repo.zfd;
-
- import java.util.List;
-
- import org.springframework.data.jpa.repository.Query;
-
- import cn.com.taiji.common.repo.jpa.AbstractJpaRepo;
- import cn.com.yskj.zfdm.entity.zfd.ZfdGasCoupons;
-
- /**
- * zfd加油券Repo
- *
- * @author yu
- * @date 2022/09/19
- */
- public interface ZfdGasCouponsRepo extends AbstractJpaRepo<ZfdGasCoupons, String> {
-
- /***
- * 根据申请ID获取申请详情
- */
- @Query("from ZfdGasCoupons where serviceApplyId=?1")
- List<ZfdGasCoupons> findByServiceApplyId(String serviceApplyId);
- }
|