| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteArdChannelByDeviceId(String deviceId); |
| | | /** |
| | | * @Author 刘苏义 |
| | | * @Description 获取2个通道列表的交集 |
| | | * @Date 2024/7/10 9:38 |
| | | * @Param |
| | | * @return |
| | | */ |
| | | public List<ArdChannel> sameList(List<ArdChannel> oldArrayList, List<ArdChannel> newArrayList); |
| | | /** |
| | | * @Author 刘苏义 |
| | | * @Description 取2个通道列表的差集 |
| | | * @Date 2024/7/10 9:39 |
| | | * @Param |
| | | * @return |
| | | */ |
| | | public List<ArdChannel> diffList(List<ArdChannel> firstArrayList, List<ArdChannel> secondArrayList); |
| | | |
| | | /** |
| | | * @Author 刘苏义 |
| | | * @Description 同步通道信息 |
| | | * @Date 2024/7/10 13:20 |
| | | * @Param |
| | | * @return |
| | | */ |
| | | public void asyncChannel(List<ArdChannel> oldArrayList, List<ArdChannel> newArrayList); |
| | | } |