feat: 电子围栏报警

server_five_liuyunhu
lijiayao 2024-04-07 22:37:47 +08:00
parent 16d72968d4
commit 1c6cebb2cc
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

View File

@ -0,0 +1,27 @@
package com.couplet.analyze.common.contents;
/**
* @Author: LiJiaYao
* @Date: 2024/4/7
* @Description:
*/
public class AnalyzeEventContents {
/**
*
*/
String BREAKDOWN = "breakdown";
/**
*
*/
String ELECTRONIC_FENCE = "electronic-fence";
/**
*
*/
String REAL_TIME_DATA = "real-time-data";
/**
*
*/
String STORED_EVENT = "stored-event";
}