1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.vincent.rsf.server.common.config;
|
| import lombok.Data;
| import org.springframework.boot.context.properties.ConfigurationProperties;
|
| /**
| * 仅用于 cus_item_sync_view 的副数据源配置
| */
| @Data
| @ConfigurationProperties(prefix = "cus-item-sync.datasource")
| public class CusItemSyncDataSourceProperties {
|
| private String url;
| private String username;
| private String password;
| private String driverClassName = "com.mysql.cj.jdbc.Driver";
| }
|
|