PtlCrawlerApiMapper.java 589 B

123456789101112131415161718192021
  1. package com.ydtech.modules.protocol.dao;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ydtech.modules.protocol.entity.po.PtlCrawlerApi;
  4. import org.apache.ibatis.annotations.Param;
  5. /**
  6. * @author wenks
  7. * @description 针对表【ptl_crawler_api(python对接接口)】的数据库操作Mapper
  8. * @createDate 2023-07-03 18:10:03
  9. * @Entity generator.domain.PtlCrawlerApi
  10. */
  11. public interface PtlCrawlerApiMapper extends BaseMapper<PtlCrawlerApi> {
  12. String getApiUrl(@Param("agreementId") String agreementId, @Param("crawlerApiType") String crawlerApiType);
  13. }