1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package org.jeecg.common.constant;
|
| public class GlobalConstants {
|
| /**
| * 业务处理器beanName传递参数
| */
| public static final String HANDLER_NAME = "handlerName";
|
| /**
| * redis消息通道名称
| */
| public static final String REDIS_TOPIC_NAME="jeecg_redis_topic";
| }
|
|