Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李苗
/
Vion-DevOps
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit b0f2e7df
authored
Nov 07, 2024
by
HlQ
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[add]
1.添加广场膨胀系数异常指标枚举 2.MallVO 返回设备数量和营业时间字符串
1 parent
093888a9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
9 deletions
src/main/java/vion/constant/MqttMessageType.java
src/main/java/vion/dto/monitor/EventDTO.java
src/main/java/vion/dto/monitor/MallDTO.java
src/main/java/vion/model/monitor/Event.java
src/main/java/vion/vo/monitor/EventVO.java
src/main/java/vion/vo/monitor/MallVO.java
src/main/java/vion/constant/MqttMessageType.java
View file @
b0f2e7d
...
...
@@ -91,6 +91,10 @@ public enum MqttMessageType {
* 广场店铺数据波动异常
*/
MALL_SHOP_DATA_UNDULATE
(
"MALL_SHOP_DATA_UNDULATE"
),
/**
* 广场膨胀系数异常
*/
MALL_DILATATION_UNDULATE
(
"MALL_DILATATION_UNDULATE"
),
// endregion
;
...
...
src/main/java/vion/dto/monitor/EventDTO.java
View file @
b0f2e7d
...
...
@@ -62,7 +62,7 @@ public class EventDTO extends BaseDTO {
/**
* 描述
*/
private
String
descri
be
;
private
String
descri
ption
;
/**
* 备注
...
...
src/main/java/vion/dto/monitor/MallDTO.java
View file @
b0f2e7d
...
...
@@ -48,9 +48,4 @@ public class MallDTO extends BaseDTO {
*/
private
Short
attention
;
/**
* 时区
*/
private
String
timeZone
;
}
\ No newline at end of file
src/main/java/vion/model/monitor/Event.java
View file @
b0f2e7d
...
...
@@ -82,8 +82,8 @@ public class Event extends BaseDTO {
/**
* 描述
*/
@TableField
(
value
=
"descri
be
"
)
private
String
descri
be
;
@TableField
(
value
=
"descri
ption
"
)
private
String
descri
ption
;
/**
...
...
src/main/java/vion/vo/monitor/EventVO.java
View file @
b0f2e7d
...
...
@@ -63,7 +63,7 @@ public class EventVO {
/**
* 描述
*/
private
String
descri
be
;
private
String
descri
ption
;
/**
* 备注
...
...
src/main/java/vion/vo/monitor/MallVO.java
View file @
b0f2e7d
...
...
@@ -57,6 +57,16 @@ public class MallVO {
private
String
timeZone
;
/**
* 设备数量
*/
private
Integer
deviceNum
;
/**
* 营业时间字符串
*/
private
String
businessHourStr
;
/**
* 备注
*/
private
String
remark
;
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment