whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
package com.fgkj.mapper.impl;
 
import com.fgkj.dto.BattInf;
import com.fgkj.dto.BattPower_off;
import com.fgkj.dto.User_inf;
 
import java.util.List;
 
public interface BattPowerOffMapper {
 
     /**
      * 机房断电统计(首页上的饼状图)
      * 以电池组分组
      */
    public int serchPowerOff(User_inf userInf);
 
    /**机房断电统计查询*/
    List<BattPower_off> getByCondition(BattInf battInf);
 
    int insert(BattPower_off battPowerOff);
 
    int updateById(BattPower_off battPowerOff);
 
    int deleteById(int id);
}