1
2
3
4
5
6
7
8
9
10
11
12
| package com.iailab.module.shasteel.mq.common.constant;
|
| public interface RoutingConstant {
|
| String EXCHANGE = "FastShasteel";
|
| // 预测模型完成路由
| String Iailab_Model_PredictFinish = "Iailab.Model.PredictFinish";
|
| //预警消息路由
| String Iailab_Model_Alarm = "Iailab.Model.Alarm";
| }
|
|