IDrugConsumptionAnalysisService.java 723 字节
package com.skua.modules.equipment.service;


import com.skua.modules.equipment.dto.DrugDto;

import java.util.Map;

public interface IDrugConsumptionAnalysisService {

    Map<String, Object> DataDisplay(String time);

    Map<String, Object> drugConsumptionTrend(String time);

    Map<String, Object> consumptionTonOfWaterTrend(String time);

    Map<String, Object> proportionStatistics(String time, Integer type);

    Map<String, Object> proportionStatisticsDetail(String time, Integer type);

    Map<String, Object> correlationAnalysis(String time, Integer type);

    Map<String, Object> drugConsumptionTrendDetail(DrugDto drugDto);

    Map<String, Object> correlationAnalysisDetail(String time, Integer type);
}