yaowanxin
14 小时以前 6f888b234148d1a4dbd1e6c28a8d9ed85ebfda09
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
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();
}