cn.fantasticmao.mundo.data.partition.PartitionSeedProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mundo-data Show documentation
Show all versions of mundo-data Show documentation
Mundo is a tiny and out-of-the-box component for business programming.
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