/* * @author wuweiru * @date 2020/12/30 11:30 */ import { v1 as uuidV1 } from 'uuid'; export class CommonUtil { static generateRandomNumber(count: number): string { const max = count > 10 ? 10 : count; return Math.random() .toString() .substring(2, 2 + max); } static generateUUID(): string { return uuidV1(); } };