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

org.mayanjun.mybatisx.dal.sharding.ScaleOutMetadata Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/*
 * Copyright 2016-2018 mayanjun.org
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.mayanjun.mybatisx.dal.sharding;

import org.mayanjun.mybatisx.api.annotation.Column;
import org.mayanjun.mybatisx.api.annotation.Index;
import org.mayanjun.mybatisx.api.annotation.IndexColumn;
import org.mayanjun.mybatisx.api.annotation.Table;
import org.mayanjun.mybatisx.api.entity.LongEntity;
import org.mayanjun.mybatisx.api.enums.DataType;

/**
 * ScaleOutMetadata
 *
 * @author mayanjun(23/09/2016)
 */
@Table(value = "t_scaleout_metadata",
		indexes = {
				@Index(value = "idx_systemId", columns = @IndexColumn("systemId")),
				@Index(value = "idx_entityName", columns = @IndexColumn("entityName"))
		},
		comment = "分库分表规则元数据")
public class ScaleOutMetadata extends LongEntity {

	public ScaleOutMetadata() {
	}

	public ScaleOutMetadata(long id) {
		super(id);
	}

	public ScaleOutMetadata(long scale, String entityName, String matrixJson) {
		this(scale, entityName, matrixJson, null);
	}

	public ScaleOutMetadata(long scale, String entityName, String matrixJson, String systemId) {
		this.scale = scale;
		this.entityName = entityName;
		this.matrixJson = matrixJson;
		this.systemId = systemId;
	}

	/**
	 * 数据规模,或者数据ID,表示的是一个阶梯
	 */
	@Column(type = DataType.BIGINT, comment = "数据规模")
	private Long scale;

	@Column(type = DataType.VARCHAR, length = "32", comment = "系统标识")
	 private String systemId;

	/**
	 * 各个实体的分库分表规则可以不同,用该值来标记一个实体, 建议存储实体类的 CanonicalName
	 */
	@Column(type = DataType.VARCHAR, length = "64", comment = "实体名称")
	private String entityName;

	/**
	 * 存储一个数据库名称和表名称的矩阵数据,以JSON格式存储
	 */
	@Column(type = DataType.MEDIUMTEXT, comment = "分库分表名称矩阵")
	private String matrixJson;

	public Long getScale() {
		return scale;
	}

	public void setScale(Long scale) {
		this.scale = scale;
	}

	public String getEntityName() {
		return entityName;
	}

	public void setEntityName(String entityName) {
		this.entityName = entityName;
	}

	public String getMatrixJson() {
		return matrixJson;
	}

	public void setMatrixJson(String matrixJson) {
		this.matrixJson = matrixJson;
	}

	public String getSystemId() {
		return systemId;
	}

	public void setSystemId(String systemId) {
		this.systemId = systemId;
	}

	@Override
	public String toString() {
		return "ScaleOutMetadata{" + "scale=" + scale + ", systemId='" + systemId + '\'' + ", entityName='" + entityName + '\'' + ", matrixJson='" + matrixJson + '\'' + '}';
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy