package com.artfess.cqlt.dao;

import com.artfess.cqlt.model.QfInvestExpenditureD;
import com.artfess.cqlt.model.QfInvestPatentD;
import com.artfess.cqlt.model.QfInvestProductivityD;
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-02-23
 */
public interface QfInvestPatentDDao extends BaseMapper<QfInvestPatentD> {

    List<QfInvestPatentD> countPatents(@Param("vo") ReportReqVo vo);

    List<QfInvestExpenditureD> investmentSituation(@Param("vo") ReportReqVo vo);

    List<QfInvestProductivityD> capacitySituation(@Param("vo") ReportReqVo t);
}
