export default class NumberTools { //随机 public GetRank(min, max) { return Math.round(Math.random() * (max - min)) + min; } }