package com.fzzy.otherview.whhpjl.repository; import com.fzzy.api.entity.ApiList; 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; public interface ApiListWhjlRep extends JpaRepository { /** * 根据业务类型查询接口列表 * @param bizType * @return */ @Query("from ApiList where bizType=:bizType ") List findAllByBizType(@Param("bizType") String bizType); }