xuhy
2025-01-02 b94fffb01c94100b34e2908b4fe79c1c554b0912
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
37
package com.ruoyi.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TIndexMenu;
import com.ruoyi.system.dto.AllertTitleDto;
import org.apache.ibatis.annotations.Param;
 
import java.time.LocalDate;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 首页订单设置 Mapper 接口
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
public interface TIndexMenuMapper extends BaseMapper<TIndexMenu> {
 
    List<AllertTitleDto> allert(@Param("cityCode") List<String> cityCode);
 
    List<Map<String, String>> userUp();
 
    List<Map<String, String>> dayCount(@Param("paymentStatus") Integer paymentStatus);
 
    List<Map<String, String>> weekCount(@Param("paymentStatus") Integer paymentStatus);
 
    List<Map<String, String>> monthCount(@Param("paymentStatus") Integer paymentStatus);
 
    List<Map<String, String>> yearCount(@Param("paymentStatus") Integer paymentStatus);
 
    List<Map<String, String>> searchDayCount(@Param("startDate")LocalDate startDate,@Param("endDate") LocalDate endDate,@Param("paymentStatus") Integer paymentStatus);
 
    List<Map<String, String>> count1(@Param("startDate")LocalDate startDate, @Param("endDate")LocalDate endDate,@Param("paymentStatus") Integer paymentStatus,@Param("dayType")Integer dayType);
}