Commit b0f2e7df by HlQ

[add]

1.添加广场膨胀系数异常指标枚举
2.MallVO 返回设备数量和营业时间字符串
1 parent 093888a9
......@@ -91,6 +91,10 @@ public enum MqttMessageType {
* 广场店铺数据波动异常
*/
MALL_SHOP_DATA_UNDULATE("MALL_SHOP_DATA_UNDULATE"),
/**
* 广场膨胀系数异常
*/
MALL_DILATATION_UNDULATE("MALL_DILATATION_UNDULATE"),
// endregion
;
......
......@@ -62,7 +62,7 @@ public class EventDTO extends BaseDTO {
/**
* 描述
*/
private String describe;
private String description;
/**
* 备注
......
......@@ -48,9 +48,4 @@ public class MallDTO extends BaseDTO {
*/
private Short attention;
/**
* 时区
*/
private String timeZone;
}
\ No newline at end of file
......@@ -82,8 +82,8 @@ public class Event extends BaseDTO {
/**
* 描述
*/
@TableField(value = "describe")
private String describe;
@TableField(value = "description")
private String description;
/**
......
......@@ -63,7 +63,7 @@ public class EventVO {
/**
* 描述
*/
private String describe;
private String description;
/**
* 备注
......
......@@ -57,6 +57,16 @@ public class MallVO {
private String timeZone;
/**
* 设备数量
*/
private Integer deviceNum;
/**
* 营业时间字符串
*/
private String businessHourStr;
/**
* 备注
*/
private String remark;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!