危化品全生命周期管理后端
heheng
2025-04-18 5b18c5a8c26194474b65b180c6e87e180a03c646
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.gkhy.hazmat.framework.config.properties;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class ShardingProperties {
 
    @Value("${spring.shardingsphere.configLocation}")
    private String configLocation;
 
    public String getConfigLocation() {
        return configLocation;
    }
}