whycxzp
2022-09-28 b08e3ef5207a78ef376c5978e9ab2e08272a8175
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.whyc.mapper;
 
import com.whyc.pojo.BattgroupData;
 
import java.util.List;
 
public interface BattGroupDataMapper extends CustomMapper<BattgroupData>{
 
    List<BattgroupData> getListWithTestTime(String battGroupId);
 
    //删除fileid对应的数据(stationId,fileId)
    int deleteDataAndInfo(int stationId, int fileId);
 
    //3.删除所有文件数据
    void deleteDataAndInfoByStationId(int stationId);
}