rentaiming
2024-07-30 a248df0c4a0e5405bedbd3db7b6a0b0ed7cc90a6
1
2
3
4
5
6
7
8
9
package com.ruoyi.management.service;
 
import com.ruoyi.management.domain.dto.HomeStatisticsQuery;
import com.ruoyi.management.domain.vo.HomeStatisticsVO;
import org.springframework.web.bind.annotation.RequestBody;
 
public interface HomeStatisticsService {
    HomeStatisticsVO getHomeStatistics(@RequestBody HomeStatisticsQuery homeStatisticsQuery);
}