huliguo
2025-06-05 0a492b64ca1a4e40cc9ea56eddd1afe2c09a12b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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<QichachaMapper, Qichacha> implements QichachaService {
 
 
    @Override
    public QichachaStatisticsVO qichacha() {
        return this.baseMapper.qichacha();
 
    }
}