cn.fantasticmao.mundo.data.partition.PartitionParam 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;
import java.lang.annotation.*;
/**
* 获取 {@link org.springframework.data.repository.Repository} 方法中的第一个 {@link PartitionParam} 注解参数,
* 用于计算 PartitionSeed
。
*
* PartitionSeed
将会被托管于 {@link PartitionSeedContext}
*
* @author fantasticmao
* @version 1.0
* @see PartitionSeedContext
* @since 2017/11/14
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface PartitionParam {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy