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