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

com.yuweix.tripod.dao.sharding.Config Maven / Gradle / Ivy

package com.yuweix.tripod.dao.sharding;


/**
 * @author yuwei
 **/
public class Config {
	/**
	 * 逻辑表后占位符长度
	 * eg.
	 * user  ====>>>>  user_0000
	 * @return   逻辑表后占位符长度
	 */
	private int suffixLength = 4;
	/**
	 * 分片数量
	 */
	private int shardingSize;

	public int getSuffixLength() {
		return suffixLength;
	}

	public void setSuffixLength(int suffixLength) {
		this.suffixLength = suffixLength;
	}

	public int getShardingSize() {
		return shardingSize;
	}

	public void setShardingSize(int shardingSize) {
		this.shardingSize = shardingSize;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy