package org.springblade.common.utils; public class UtilRandom { public static Integer randomCount(Integer start, Integer end) { return (int) (Math.random() * (end - start + 1) + start); } }