feature(web): 增加历史压缩情况查询

This commit is contained in:
2023-06-14 15:21:21 +08:00
parent 58487be66a
commit 6abbd3d46a
5 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import cn.hutool.core.util.RandomUtil;
import java.awt.Color;
/**
* 随机颜色
*
* @author lanyuanxiaoyao
* @date 2023-06-14
*/
public class RandomColorTest {
public static void main(String[] args) {
System.out.println(Integer.toHexString(RandomUtil.randomInt(256)));
}
}