TRX 1 год назад
Родитель
Сommit
238c0ccc57

+ 6 - 0
FullCardServer/src/main/java/com/zhongshu/card/server/core/controller/openAPI/ProjectOpenAPIController.java

@@ -59,4 +59,10 @@ public class ProjectOpenAPIController {
         return this.deviceUseRecordService.saveDeviceLogs(param);
     }
 
+    @Operation(summary = "门闸 认证识别人员信息上传", description = "认证识别人员信息上传")
+    @RequestMapping(value = "recPush", method = {RequestMethod.POST})
+    public ResultContent recPush(@RequestBody GateDoorUseParam param) {
+        return this.deviceUseRecordService.saveDeviceLogs(param);
+    }
+
 }