| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.dto.AnalysisMonCapDTO; |
| | | import com.whyc.dto.BatteryInfo; |
| | | import com.whyc.dto.DataAnalysisFloatDTO; |
| | | import com.whyc.dto.AnalysisMonFieldDTO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface BatteryTestDataMapper { |
| | | List<BatteryInfo> getStationAndBatteryGroupIds(Integer userId); |
| | | |
| | | DataAnalysisFloatDTO getStatisticsByBattGroupIds(Integer[] ids,String field); |
| | | List<AnalysisMonFieldDTO> getStatisticsByTableNames(List<String> tableNames, String fieldName1, String fieldName2); |
| | | |
| | | List<BatteryInfo> getCapStatisticsByBattGroupIds(Integer[] ids); |
| | | List<AnalysisMonCapDTO> getCapStatisticsByGroupIds(@Param("groupIds") List<String> groupIds); |
| | | |
| | | List<BatteryInfo> getVolAndCapStd(Integer[] ids); |
| | | |
| | | double getRestCapByCondition(AnalysisMonCapDTO monCapDTO); |
| | | } |