Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.ibeetl.admin.console.dao;
 
import com.ibeetl.admin.console.model.PromoterModel;
import org.beetl.sql.core.annotatoin.SqlResource;
 
import java.util.List;
import java.util.Map;
 
@SqlResource("console.statis")
public interface StatisConsoleDao {
 
    List<Map<String, Object>> queryLatAndLong();
 
    /**
     * 根据推广员的Id查询此推广员的订单统计数据
     * @param userId
     * @return
     */
    List<PromoterModel> queryPromoterStatis(PromoterModel promoterModel);
    int queryPromoterStatisCount(PromoterModel model);
 
    /**
     * 推广员详情接口
     * @param userId
     * @return
     */
    List<PromoterModel> queryQromoterOrder(PromoterModel promoterModel);
    List<PromoterModel> queryQromoterOrderOne(PromoterModel promoterModel);
    int queryQromoterOrderCount(PromoterModel model);
 
}