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 { /** * 获取军工人员信息 * * @return */ @Query("from Fz40WhjlDefaultUser where companyId=:companyId ") List listApi1103(@Param("companyId") String companyId); }