package com.ff.utils; import java.time.Instant; /** * @author cengy */ public class CurrentMillis { public static Long get() { return Instant.now().toEpochMilli(); } }