package com.artfess.cqlt.dao; import com.artfess.cqlt.model.QfOperationCipD; 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 QfOperationCipDDao extends BaseMapper { List yearData(@Param("vo") OpReportReqVo t); List monthAnalysis(@Param("vo") OpReportReqVo t); List yearSubjectData(@Param("vo") OpReportReqVo t); }