package com.gkhy.hazmat.common.enums; /** * 数据源 */ public enum DataSourceType { /** * 主库 */ MASTER, /** * 从库 */ SLAVE, /** * 分库 */ SHARDING; }