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 { boolean batchUpdate(QfOperationReductionsM t); List yearData(OpReportReqVo t); List dataAnalysis(OpReportReqVo t, SysSubjectTarget target); }