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();
|
}
|