xuhy
2025-05-16 07d0d74e8db1d9e536fdfe33b80c568ccfc7febe
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.jianguan.rocket.configuration;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
 
@ConfigurationProperties(prefix = "rocketmq.enhance")
@Data
public class RocketEnhanceProperties {
 
    private boolean enabledIsolation;
 
    private String environment;
}