whyczh
2022-04-30 1e3f6acf661f090efa01d5ec3b7df56da5b54e29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.whyc.mapper;
 
import com.whyc.pojo.Fbs9100sDfuState;
import org.apache.ibatis.annotations.Param;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.util.List;
 
public interface Fbs9100sDfuStateMapper extends CustomMapper<Fbs9100sDfuState>{
    //查询正在升级的设备
    List searchAll();
 
    List searchA059(@Param("stationName1") String stationName1,@Param("stationName2") String stationName2,@Param("stationName5") String stationName5,@Param("uId") int uId);
    //添加
    int addPro(String stationName,int num);
 
    //批量升级
    int updatePro(@Param("dfuFile") String dfuFile, @Param("devIds") List<Integer> devIds);
 
    //查询添加列表
    List serchInserStation(String stationName, int num);
 
    //验证设备是否允许设备进行远程升级
    List judgeStation(@Param("devIds") List<Integer> devIds);
}