Commit e109f048 by HlQ

[add] 添加广场店铺数据波动异常指标

1 parent 0e0d8929
......@@ -81,6 +81,9 @@ public class MqttClientMessageListener {
case MALL_GATE_DATA_UNDULATE:
handleMallGateDataUndulate(jsonObj.toString());
break;
case MALL_SHOP_DATA_UNDULATE:
handleMallShopDataUndulate(jsonObj.toString());
break;
// endregion
default:
log.info("未定义的消息类型:{}, payload:{}", type, jsonObj);
......@@ -231,6 +234,16 @@ public class MqttClientMessageListener {
EventRecord eventRecord = JsonUtil.parseObject(payloadStr, EventRecord.class);
recordService.save(eventRecord);
}
/**
* 广场店铺数据波动异常
*
* @param payloadStr 事件记录
*/
private void handleMallShopDataUndulate(String payloadStr) {
EventRecord eventRecord = JsonUtil.parseObject(payloadStr, EventRecord.class);
recordService.save(eventRecord);
}
// endregion
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!