package com.kidgrow.db.sharding;
import java.util.Date;
/**
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
*
* @Description: 分表后缀
* @Project:
* @CreateDate: Created in 2020/2/4 16:05
* @Author: liuke
*/
public interface TableSuffix {
static TableSuffix ofHash(String hash,long tableSize, String tableSuffix) {
return new HashModTableSuffix(hash,tableSize,tableSuffix);
}
static TableSuffix ofMonth(Date date) {
return new MonthTableSuffix(date);
}
/**
* 获取后缀
*
* @return 表后缀,下划线开头
*/
String getSuffix();
}