mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-11 11:56:50 +08:00
18 lines
357 B
Java
18 lines
357 B
Java
package com.xboe.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
/**
|
|
* 整体系统MySQL数据库schema配置
|
|
*/
|
|
@ConfigurationProperties(prefix = "mysql.schema")
|
|
@Data
|
|
public class MySqlSchemaProperties {
|
|
|
|
/**
|
|
* 用户中心数据库schema
|
|
*/
|
|
private String userCenterSchema;
|
|
}
|