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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.ruoyi.home.service;
 
import com.ruoyi.approve.pojo.ApproveProcess;
import com.ruoyi.dto.MapDto;
import com.ruoyi.home.dto.*;
 
import java.text.ParseException;
import java.util.List;
import java.util.Map;
 
/**
 * @author :yys
 * @date : 2025/7/25 9:23
 */
public interface HomeService {
 
 
    HomeBusinessDto business();
 
 
    AnalysisCustomerContractAmountsDto analysisCustomerContractAmounts();
 
    QualityStatisticsDto qualityStatistics();
 
    List<ApproveProcess> todos() throws ParseException;
 
    StatisticsReceivablePayableDto statisticsReceivablePayable(Integer type);
 
    Map<String, Object> approveAndDeviceTodos();
 
    Long noticesCount();
 
    ProductionProgressDto productionProgress();
 
    ProductionTurnoverDto workInProcessTurnover();
 
    DeptStaffDistributionDto deptStaffDistribution();
 
    HomeSummaryDto summaryStatistics();
 
    List<SupplierPurchaseRankingDto> supplierPurchaseRanking(Integer type);
 
    CustomerRevenueAnalysisDto customerRevenueAnalysis(Long customerId, Integer type);
 
    ProductCategoryDistributionDto productCategoryDistribution();
 
    List<CustomerContributionRankingDto> customerContributionRanking(Integer type);
 
    List<MapDto> productSalesAnalysis();
 
    List<MapDto> rawMaterialPurchaseAmountRatio();
 
    List<MapDto> salesPurchaseStorageProductCount();
 
    List<Map<String, Object>> productInOutAnalysis(Integer type);
 
    List<MapDto> productTurnoverDays();
 
    List<Map<String, Object>> incomeExpenseAnalysis(Integer type);
 
    List<MapDto> profitTrendAnalysis();
 
    List<MapDto> expenseCompositionAnalysis(Integer type);
 
    MonthlyIncomeDto monthlyIncome();
 
    MonthlyExpenditureDto monthlyExpenditure();
 
    List<InputOutputAnalysisDto> inputOutputAnalysis(Integer type);
 
    List<MapDto> processOutputAnalysis(Integer type);
 
    List<WorkOrderEfficiencyDto> workOrderEfficiencyAnalysis(Integer type);
 
    List<ProductionAccountingDto> productionAccountingAnalysis(Integer type);
 
    List<MapDto> orderCount();
 
    QualityQualifiedAnalysisDto rawMaterialDetection(Integer type);
 
    QualityQualifiedAnalysisDto processDetection(Integer type);
 
    QualityQualifiedAnalysisDto factoryDetection(Integer type);
 
    QualityInspectionCountDto qualityInspectionCount();
 
    NonComplianceWarningDto nonComplianceWarning();
 
    List<CompletedInspectionCountDto> completedInspectionCount();
 
    List<UnqualifiedProductRankDto> unqualifiedProductRanking();
 
    List<MapDto> unqualifiedProductProcessingAnalysis();
 
    QualityStatisticsDto qualityInspectionStatistics(Integer type);
 
    List<processDataProductionStatisticsDto> processDataProductionStatistics(Integer type, List<Long> processIds);
 
    Map<String,Long> total();
 
    SalesTotalDto salesAnalysis(SalesDeliveryDto salesDeliveryDto);
 
    List<SalesTotalDetailDto> salesRanking(SalesDeliveryDto salesDeliveryDto);
 
    SalesTotalDto salesAmount(SalesDeliveryDto salesDeliveryDto);
 
    List<SalesTotalDetailDto> salesDataRanking(SalesDeliveryDto salesDeliveryDto);
 
    SalesTotalDto customerTrends(SalesDeliveryDto salesDeliveryDto);
 
    Map<String,List<MaterialProductionAnalysisDto>> materialProductionAnalysis(productionStatisticsDto dto);
 
    List<String> getMaterials(Integer materialType);
 
    List<ProductionCostAnalysisDto> productionCostAnalysis(productionStatisticsDto dto, Integer materialType);
 
    ProductionStatisticsMiddleDto middle();
 
    List<SolidWasteStatisticsDto> solidWaste(productionStatisticsDto dto);
 
    List<HomeEnergyStatisticsDto> energy(productionStatisticsDto dto);
 
    SolidWasteCoreIndicatorsDto coreIndicators(productionStatisticsDto dto);
 
    List<SolidWasteStatisticsDto> trends(productionStatisticsDto dto);
 
    List<MapDto> typeDistribution(productionStatisticsDto dto);
 
    Map<String,Long> manage();
}