1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.whyc.mapper;
|
| import com.whyc.pojo.Fbs9100SetParamTemp;
| import com.whyc.pojo.StationInf;
|
| import java.util.List;
|
| public interface Fbs9100SetParamTempMapper extends CustomMapper<Fbs9100SetParamTemp> {
| //设备放电申请
| Fbs9100SetParamTemp searchTemp(int battGroupId);
|
| //插入新的数据
| void insertTmp(Fbs9100SetParamTemp tmp);
|
| List<StationInf> getStationInfWithSpecificMainId(List<Integer> mainIdList);
|
| }
|
|