package com.ruoyi.system.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ruoyi.system.domain.Agreement; import com.ruoyi.system.domain.Qichacha; import com.ruoyi.system.mapper.AgreementMapper; import com.ruoyi.system.mapper.QichachaMapper; import com.ruoyi.system.pojo.dto.AddAgreementDTO; import com.ruoyi.system.pojo.vo.QichachaStatisticsVO; import com.ruoyi.system.service.AgreementService; import com.ruoyi.system.service.QichachaService; import org.springframework.beans.BeanUtils; import org.springframework.stereotype.Service; import javax.annotation.Resource; @Service public class QichachaServiceImpl extends ServiceImpl implements QichachaService { @Override public QichachaStatisticsVO qichacha() { return this.baseMapper.qichacha(); } }