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; /** *

* 首页订单设置 服务类 *

* * @author luodangjia * @since 2024-09-19 */ public interface TIndexMenuService extends IService { List allert(List cityCode); List> userUp(); List> dayCount(Integer paymentStatus); List> weekCount(Integer paymentStatus); List> monthCount(Integer paymentStatus); List> yearCount(Integer paymentStatus); List> searchDayCount(LocalDate startDate, LocalDate endDate,Integer paymentStatus); List> count1(LocalDate startDate, LocalDate endDate, Integer paymentStatus,Integer dayType); }