forked from kidgrow-microservices-platform

kidgrow-commons/kidgrow-db-spring-boot-starter/src/main/java/com/kidgrow/db/sharding/TableSuffix.java
@@ -12,8 +12,8 @@
 */
public interface TableSuffix {
    static TableSuffix ofHash(String hash) {
        return new HashModTableSuffix(hash);
    static TableSuffix ofHash(String hash,long tableSize, String tableSuffix) {
        return new HashModTableSuffix(hash,tableSize,tableSuffix);
    }
    static TableSuffix ofMonth(Date date) {