| | |
| | | import com.whyc.pojo.BatttestdataInf; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface BatttestdataInfMapper extends CustomMapper<BatttestdataInf>{ |
| | |
| | | List<BatttestdataInf> searchByTestType(@Param("tinf") BatttestdataInf tinf); |
| | | |
| | | //1.4电池组性能评估(根据电池组id查询所有的放电记录求出放电总次数,最高历史容量,最低历史容量,平均容量,最新测试容量) |
| | | List<BatttestdataInf> searchDischargeTest(@Param("tinf") BatttestdataInf tinf); |
| | | List<BatttestdataInf> searchDischargeTest(Integer battGroupId, Date recordStartTime, Date recordEndTime); |
| | | |
| | | //查往年的放电记录 |
| | | List<BatttestdataInf> searchDischargeTest_WJ(Integer battGroupId, Date recordStartTime); |
| | | |
| | | //机房历史放电数据续航能力查询(实时) |
| | | List<BattState> searchBattLifeNow(@Param("binf") Battinf binf); |
| | |
| | | |
| | | /* 修改为:领导层本年度已放数 仅需要统计放电正常停止的 正常停止的条件如下: |
| | | stop_type: |
| | | 2-放电时间到终止 |
| | | 2-放电时间到终止并且放电时间超过2小时 |
| | | 3-放电容量到终止 |
| | | 4-单体电压下限到终止 |
| | | 6-组端电压下限到终止*/ |
| | | 6-组端电压下限到终止 |
| | | */ |
| | | int getHrQuarterZC(int userId); |
| | | |
| | | //山西晋源特定接口 |
| | | int getHrQuarterZCJY(); |
| | | |
| | | //获取本年已核容电池组 |
| | | List<Battinf> getHrYeardisBatt(String userId); |
| | |
| | | List<BatttestdataInf> getGroupAnalysisZC(int userId); |
| | | |
| | | |
| | | //1.查出符合条件的电池组(核容数据)按照时间倒叙排序(不要时间) |
| | | List<BatttestdataInf> getGroupAnalysisQB(int userId); |
| | | //1.查出符合条件的电池组(核容数据)按照时间倒叙排序(本年度) |
| | | BatttestdataInf getGroupAnalysisQB(int BattGroupId); |
| | | |
| | | BatttestdataInf getGroupAnalysisQB_WJ(@Param("battGroupId") int BattGroupId,@Param("nowDateStart") Date nowDateStart,@Param("nowDateEnd") Date nowDateEnd); |
| | | |
| | | //1.查出符合条件的电池组(核容数据)按照时间倒叙排序的第一个(上一年度) |
| | | BatttestdataInf getGroupAnalysisQBOld(int BattGroupId); |
| | | |
| | | //1.查出符合条件的电池组(核容数据)按照时间倒叙排序的第一个(上一年度) |
| | | BatttestdataInf getGroupAnalysisQBOld_WJ(@Param("battGroupId") int BattGroupId,@Param("oldDate") Date oldDate); |
| | | |
| | | //本年度上一次正常核容的放电记录编号 |
| | | BatttestdataInf searchHrYear(int battGroupId); |
| | | //能效统计 |
| | | List<GroupTestCapRes> getEnergyStatistics(Date testStartTime,Date testEndTime); |
| | | //能效统计分班组 |
| | | List<GroupTestCapRes> getEnergyStatisticsInBaojiGroup(Date testStartTime, Date testEndTime, Long bjGroupId); |
| | | |
| | | //能效统计--南京websocket首页 |
| | | List<GroupTestCapRes> getEnergyStatistics_nj(Date testStartTime, Date testEndTime, int userId); |
| | | |
| | | |
| | | } |