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

* 首页订单设置 Mapper 接口 *

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