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