From 30c34fff57ead909cb5922d1791a9561e4f70957 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 13 Jul 2020 11:49:21 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/chonggaoxiao/new_excoin --- src/test/java/com/xcong/excoin/SmsTest.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/test/java/com/xcong/excoin/SmsTest.java b/src/test/java/com/xcong/excoin/SmsTest.java index f421845..fb83120 100644 --- a/src/test/java/com/xcong/excoin/SmsTest.java +++ b/src/test/java/com/xcong/excoin/SmsTest.java @@ -1,5 +1,6 @@ package com.xcong.excoin; +import cn.hutool.core.date.DateUtil; import cn.hutool.core.text.UnicodeUtil; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @@ -11,4 +12,10 @@ @SpringBootTest public class SmsTest { + public static void main(String[] args) { + long time = 1594363341988L; + + System.out.println(DateUtil.date(time)); + } + } -- Gitblit v1.9.1