wjli
2023-05-17 5fe820b18055b317cd5928d8fecd056f4c9e0115
xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/serviceimpl/ICustomerServiceImpl.java
@@ -11,6 +11,8 @@
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
 * 商户表接口实现
 * @author zhangzeli
@@ -40,4 +42,14 @@
    public Month getCustomerCount(Integer year) {
        return customerMapper.getCustomerCount(year);
    }
    @Override
    public int sumLogin() {
        return customerMapper.sumLogin();
    }
    @Override
    public List<Customer> getYiHuDuoZheng() {
        return customerMapper.getYiHuDuoZheng();
    }
}