wang-hao-jie
2022-03-10 ae32c3a7d77e2ed114555623c70e3fbd1d6aba59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.exrick.xboot.your.service;
 
import cn.exrick.xboot.your.vo.Month;
import com.baomidou.mybatisplus.extension.service.IService;
import cn.exrick.xboot.your.entity.Customer;
 
import java.util.List;
 
/**
 * 商户表接口
 * @author zhangzeli
 */
public interface ICustomerService extends IService<Customer> {
 
    int countOpenId();
 
    Month getCustomerCount(Integer year);
 
    int sumLogin();
 
    List<Customer> getYiHuDuoZheng();
}