package com.artfess.cqlt.manager;

import com.artfess.base.manager.BaseManager;
import com.artfess.cqlt.model.QfFinanceLeaseD;
import com.artfess.cqlt.model.QfFinanceLeaseM;
import com.artfess.cqlt.vo.MoneyReportRespVo;
import com.artfess.cqlt.vo.ReportReqVo;

import java.util.List;

/**
 * 资金--融资租赁填报数据详情表 服务类
 *
 * @company 阿特菲斯信息技术有限公司
 * @author min.wu
 * @since 2023-03-02
 */
public interface QfFinanceLeaseDManager extends BaseManager<QfFinanceLeaseD> {

    boolean batchUpdate(QfFinanceLeaseM t);

    List<MoneyReportRespVo> companyYearData(ReportReqVo t);

    List<MoneyReportRespVo> companyQuarterData(ReportReqVo t);
}
