package com.artfess.cqlt.dao; import com.artfess.cqlt.model.QfOperationCompanyCipD; import com.artfess.cqlt.vo.OpReportRespVo; import com.artfess.cqlt.vo.OpReportReqVo; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 运营--集团持续改进数据-分公司填报详情表 Mapper 接口 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-02-21 */ public interface QfOperationCompanyCipDDao extends BaseMapper { List yearData(@Param("vo") OpReportReqVo t); List monthAnalysis(@Param("vo") OpReportReqVo t); List yearCompanyData(@Param("vo") OpReportReqVo t); }