Sign in
简柏林
/
thingskit
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
f96410126917bf1e488d62ab41dc9c823e376fb3
Authored by
盛长浩
2025-04-08 16:19:31 +0800
1 parent
d775cd9e
设备台账初步编写
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
common/data/src/main/java/org/thingsboard/server/common/data/yunteng/enums/BrainDeviceStatusEnum.java
common/data/src/main/java/org/thingsboard/server/common/data/yunteng/enums/BrainDeviceStatusEnum.java
0 → 100644
View file @
f964101
1
+
package
org
.
thingsboard
.
server
.
common
.
data
.
yunteng
.
enums
;
2
+
3
+
public
enum
BrainDeviceStatusEnum
{
4
+
//停用
5
+
STOP
,
6
+
//正常运行
7
+
RUN
,
8
+
//故障
9
+
FAULT
,
10
+
//停役
11
+
STOPSERVICE
12
+
}
...
...