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