dashboard
repositories
filestore
activity
search
login
main
/
jczz_manager
基层智治-后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
处理一个社区多个派出所,社区编码添加了标识位
linwe
2024-06-28
0b7b8ede524a0b82563fa74ebe234b59c29463ab
[jczz_manager.git]
/
src
/
main
/
java
/
org
/
springblade
/
common
/
utils
/
UtilRandom.java
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);
}
}