SnowflakeUtil.java 292 Bytes
Newer Older
王飞's avatar
王飞 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.ruoyi.common.utils;

import cn.hutool.core.lang.Snowflake;
import cn.hutool.core.util.IdUtil;

public class SnowflakeUtil {

    private static final Snowflake snowflake = IdUtil.createSnowflake(1,1);
    public static Long generate() {
       return snowflake.nextId();
    }

}