linwe
2024-07-12 2f2115a19277620bb7d9ac4af1e3bfd7830d2e6c
1
2
3
4
5
6
7
package org.springblade.common.utils;
 
public class UtilRandom {
    public static Integer randomCount(Integer start, Integer end) {
        return (int) (Math.random() * (end - start + 1) + start);
    }
}