maven
2025-10-14 cf6b1cf6fa8f7784c6d7c64b7326d4662bc3d4b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ruoyi.business.service;
 
import com.ruoyi.business.dto.*;
import com.ruoyi.business.entity.OfficialInventory;
import com.ruoyi.business.entity.ProductionScheduling;
import com.ruoyi.business.entity.PurchaseRegistration;
import com.ruoyi.common.core.domain.R;
 
import java.util.List;
 
/**
 * @author :yys
 * @date : 2025/10/13 9:11
 */
public interface ProductHomeService {
    R<ProductionSchedulingStatisticsDto> productionSchedulingStatistics(DateQueryDto dto);
 
    R<List<ProductionScheduling>> productionSchedulingStatisticsList(DateQueryDto dto);
 
    R<List<OfficialInventory>> productionSchedulingInventoryList(DateQueryDto dto);
 
    R<MaterialStatisticsDto> materialStatistics(DateQueryDto dto);
 
    R<List<ItemListDto>> coalTypeDistribution(DateQueryDto dto);
 
    R<List<ItemListDto>> originDistribution(DateQueryDto dto);
 
    R<List<CarDto>> carCodeDistribution(DateQueryDto dto);
 
    R<List<PurchaseRegistration>> recentTransaction(DateQueryDto dto);
 
    R<List<ItemListDto>> heatValueDistribution(DateQueryDto dto);
 
    R<ReportStatisticsDto> reportStatistics(DateQueryDto dto);
 
    R<List<ItemListDto>> reportTrend(DateQueryDto dto);
 
    R<List<ItemListDto>> coalTypeHeatValueComparison(DateQueryDto dto);
 
    R<List<ItemListDto>> processingRateAnalysis(DateQueryDto dto);
 
    R<List<ItemListDto>> costStructure(DateQueryDto dto);
}