bug
zhangzeli
2022-01-06 8881c4be7a0d86de2341b489f3ad9e997cb6deb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
 
/**
 * 商户表接口
 * @author zhangzeli
 */
public interface ICustomerService extends IService<Customer> {
 
    int countOpenId();
 
    Month getCustomerCount(Integer year);
}