lxw
2023-05-25 f3c27fb78447449a950ba73c5e72ceda64ad8a12
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
26
27
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);
 
    int updateDfuEn(@Param("id") long id);
}