com.lin.random.impl.AgeRandom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-faker Show documentation
Show all versions of sql-faker Show documentation
A lightweight SQL data creator.
package com.lin.random.impl;
import com.lin.random.RandomData;
import com.lin.utils.RandomUtils;
/**
* 随机年龄生成器(18到60岁)
* @author lkmc2
* @since 1.0.0
*/
public class AgeRandom implements RandomData {
@Override
public Integer next() {
return RandomUtils.nextIntRange(18, 60);
}
}