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