com.lin.random.RandomData 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;
/**
* 随机数据接口
* @author lkmc2
* @since 1.0.0
*/
public interface RandomData {
/**
* 生成一个随机值
* @return 一个随机值
*/
T next();
}