package com.artfess.cqlt.manager; import com.artfess.cqlt.model.QfOperatingStatistical; import com.artfess.base.manager.BaseManager; import com.artfess.cqlt.vo.OpTargetRespVo; import com.artfess.cqlt.vo.OpReportReqVo; import java.util.List; /** * 运营-大屏统计宽表 服务类 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-03-30 */ public interface QfOperatingStatisticalManager extends BaseManager { List data(OpReportReqVo t); List fromUnderData(OpReportReqVo t); }