package com.artfess.cqlt.dao; import com.artfess.cqlt.model.QfEuroRatesD; import com.artfess.cqlt.vo.EuroRatesRespVo; import com.artfess.cqlt.vo.ReportReqVo; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 资金--欧元同业拆借利率详情表 Mapper 接口 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-07-17 */ public interface QfEuroRatesDDao extends BaseMapper { List euroRatesAnalysis(@Param("vo") ReportReqVo t); List getMonthList(@Param("mainId") String mainId); }