whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.fgkj.mapper.impl;
 
import java.util.List;
 
import com.fgkj.dto.Batt_history;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
public interface Batt_historyMapper{
 
    public List searchAll();
 
    //查询所有的历史实时数据
    public List<Batt_history> serchByCondition(Batt_history obj);
}