package com.artfess.cqlt.dao; import com.artfess.cqlt.model.QfFinanceLeaseD; import com.artfess.cqlt.vo.MoneyReportRespVo; 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-03-02 */ public interface QfFinanceLeaseDDao extends BaseMapper { List companyYearData(@Param("vo") ReportReqVo t); List companyQuarterData(@Param("vo") ReportReqVo t); }