package com.artfess.cqlt.manager; import com.artfess.base.manager.BaseManager; import com.artfess.cqlt.model.QfOperationNewOrdersD; import com.artfess.cqlt.model.QfOperationNewOrdersM; 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 QfOperationNewOrdersDManager extends BaseManager { boolean batchSave(QfOperationNewOrdersM t); boolean batchUpdate(QfOperationNewOrdersM t); List yearData(OpReportReqVo t); List dataAnalysis(OpReportReqVo t, SysSubjectTarget target); }