package com.oying.modules.pc.common.id; import cn.hutool.core.lang.Snowflake; import cn.hutool.core.util.IdUtil; import org.springframework.stereotype.Component; @Component public class StoreIdGenerator { private static final Snowflake snowflake = IdUtil.getSnowflake(1,1); public static long getId() { return snowflake.nextId(); } }