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

cn.fantasticmao.mundo.data.partition.PartitionSeedProvider Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package cn.fantasticmao.mundo.data.partition;

/**
 * 指定分库实体的种子字段,使用方式例如:
 *
 * 
 * public class User implements PartitionSeedProvider<Integer> {
 *     private int id;
 *
 *     public Integer getSeed() {
 *         return id;
 *     }
 * }
 * 
* * @author fantasticmao * @version 1.0 * @since 2019/1/2 */ public interface PartitionSeedProvider { SEED getSeed(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy