Forráskód Böngészése

Merge remote-tracking branch 'origin/master'

home 2 éve
szülő
commit
122059c59a

+ 0 - 34
src/main/java/com/fjhx/rfid/r2000/udp/service/ISdUdpService.java

@@ -1,34 +0,0 @@
-package com.fjhx.rfid.r2000.udp.service;
-
-import com.fjhx.utils.AjaxResult;
-import org.springframework.scheduling.annotation.Async;
-
-import java.util.List;
-
-/**
- * @Description:
- * @ClassName: UdpService
- * @Author: linqt
- * @Date: 2022/3/18 11:22
- * @Version: 1.0
- */
-public interface ISdUdpService {
-
-    /**
-     * 启动读写器
-     *
-     * @param ips 读写器ip集合
-     * @return
-     */
-    @Async
-    AjaxResult open(List<String> ips);
-
-    /**
-     * 关闭读写器
-     *
-     * @param ips 读写器ip集合
-     * @return
-     */
-    @Async
-    AjaxResult close(List<String> ips);
-}