YYC
2023-08-09 86db604887a24284512abe813ba9e235b3e0ec71
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.Fz40WhjlDefaultDept;
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultUser;
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 Fz40ToWhjlSync1103Rep extends JpaRepository<Fz40WhjlDefaultUser, String> {
    /**
     * 获取军工人员信息
     *
     * @return
     */
    @Query("from Fz40WhjlDefaultUser where companyId=:companyId ")
    List<Fz40WhjlDefaultUser> listApi1103(@Param("companyId") String companyId);
}