All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jingshouyan.jdbc.sharding.entity.DataSourceInfo Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.github.jingshouyan.jdbc.sharding.entity;

import lombok.Data;

import java.util.List;
import java.util.Map;

import static com.github.jingshouyan.jdbc.sharding.Constant.DATA_SOURCE_TYPE_NORMAL;

/**
 * @author jingshouyan
 * #date 2020/2/9 14:59
 */
@Data
public class DataSourceInfo {

    private boolean showLog = false;
    private int type = DATA_SOURCE_TYPE_NORMAL;
    private Map routeMap;
    private int tableShard = 5;
    private List linkInfos;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy