lxw
2022-09-20 52e7ec8afeb53727e4fde72fbade5e5ef8addff8
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.whyc.mapper;
 
import com.whyc.pojo.BattgroupData;
 
import java.util.List;
 
public interface BattGroupDataMapper extends CustomMapper<BattgroupData>{
 
    List<BattgroupData> getListWithTestTime(int battGroupId);
 
    //删除fileid对应的数据(stationId,fileId)
    int deleteDataAndInfo(int stationId, int fileId);
}