package com.artfess.cqlt.manager; import com.artfess.base.manager.BaseManager; import com.artfess.cqlt.model.QfOperationCompanyCipD; import com.artfess.cqlt.model.QfOperationCompanyCipM; 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 min.wu * @since 2023-02-21 */ public interface QfOperationCompanyCipDManager extends BaseManager { boolean batchUpdate(QfOperationCompanyCipM t); boolean batchSave(QfOperationCompanyCipM t); List yearData(OpReportReqVo t); List dataAnalysis(OpReportReqVo t, SysSubjectTarget target); }