package com.artfess.cqlt.manager;

import com.artfess.cqlt.model.QfOperationReductionsM;
import com.artfess.cqlt.model.QfOperationReductionsD;
import com.artfess.base.manager.BaseManager;
import com.artfess.cqlt.model.SysSubjectTarget;
import com.artfess.cqlt.vo.OpReportRespVo;
import com.artfess.cqlt.vo.OpTargetRespVo;
import com.artfess.cqlt.vo.OpReportReqVo;

import java.util.List;

/**
 * 运营--年降数据填报详情表 服务类
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 黎沐华
 * @since 2023-02-21
 */
public interface QfOperationReductionsDManager extends BaseManager<QfOperationReductionsD> {

    boolean batchUpdate(QfOperationReductionsM t);

    List<OpReportRespVo> yearData(OpReportReqVo t);

    List<OpTargetRespVo> dataAnalysis(OpReportReqVo t, SysSubjectTarget target);
}
