package com.newfiber.termite.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import com.newfiber.termite.domain.request.jingchuConfig.JingchuConfigQueryRequest; import com.newfiber.termite.domain.JingchuConfig; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** * 三方对接-荆楚平台信息Mapper接口 * * @author X.K * @date 2024-06-11 */ @Mapper public interface JingchuConfigMapper extends BaseMapper<JingchuConfig>{ /** * 条件查询三方对接-荆楚平台信息列表 * * @param request 查询条件 * @return 三方对接-荆楚平台信息集合 */ List<JingchuConfig> selectByCondition(@Param("request") JingchuConfigQueryRequest request); /** * 条件查询三方对接-荆楚平台信息列表 * * @param id 查询条件 * @return 三方对接-荆楚平台信息集合 */ JingchuConfig selectOneById(@Param("id") Long id); }