dashboard
repositories
filestore
activity
search
login
main
/
hazmat_manage
危化品全生命周期管理后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
sharding版本
heheng
2025-04-18
5b18c5a8c26194474b65b180c6e87e180a03c646
[hazmat_manage.git]
/
hazmat-common
/
src
/
main
/
java
/
com
/
gkhy
/
hazmat
/
common
/
enums
/
DataSourceType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.gkhy.hazmat.common.enums;
/**
* 数据源
*/
public enum DataSourceType {
/**
* 主库
*/
MASTER,
/**
* 从库
*/
SLAVE,
/**
* 分库
*/
SHARDING;
}