YYC
2025-02-25 eab8ea1cd432ed95fc983483d325ba74c50408b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.fzzy.async.whhpjl.repository;
 
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultCustomer;
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:YAN
 */
 
public interface Fz40ToWhjlSync1204Rep extends JpaRepository<Fz40WhjlDefaultCustomer, String> {
    /**
     * 客户信息
     *
     * @return
     */
    @Query("from Fz40WhjlDefaultCustomer where companyId=:companyId ")
    List<Fz40WhjlDefaultCustomer> listApi1204(@Param("companyId") String companyId);
}