package com.platform.yijia.service; import com.platform.yijia.pojo.CustomerManage; import java.util.List; import java.util.Map; public interface CustomerGradeServices { //查询直降方式 List getCustomerGradeList(Map map); //降序查询 List getCustomerGradeListOrderByDesc(Map map); //查询立减满减 List getCustomerMarkertPlanList(Map map); //获取客户等级信息 List> getCustomerGradeInfo(Map map); //获取客户优惠等级信息 List> getCustomerGradeInfoByYouHui(Map map); //根据手机号和油站ID判断该用户是否已在客户表 List isExistCustomerByStationIdAndPhoneNumber(CustomerManage customerManage); //立减 List getMarkertPlanListByDiscountPlanType(); }