xuhy
2024-12-12 412ed345ecf217516fa697f0a25cf7e67559958f
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
32
33
34
35
36
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TIndexMenu;
import com.ruoyi.system.dto.AllertTitleDto;
 
import java.time.LocalDate;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 首页订单设置 服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
public interface TIndexMenuService extends IService<TIndexMenu> {
 
    List<AllertTitleDto> allert(List<String> cityCode);
 
    List<Map<String, String>> userUp();
 
    List<Map<String, String>> dayCount(Integer paymentStatus);
 
    List<Map<String, String>> weekCount(Integer paymentStatus);
 
    List<Map<String, String>> monthCount(Integer paymentStatus);
 
    List<Map<String, String>> yearCount(Integer paymentStatus);
 
    List<Map<String, String>> searchDayCount(LocalDate startDate, LocalDate endDate,Integer paymentStatus);
 
    List<Map<String, String>> count1(LocalDate startDate, LocalDate endDate, Integer paymentStatus,Integer dayType);
}