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