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);
| }
|
|