lxw
2022-10-11 d8f89103f4e7f52a9ab0a07304e9f3acbf446978
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.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);
 
}