Create Project

This commit is contained in:
yanzg
2018-05-20 21:07:42 +08:00
commit ed711324ae
59 changed files with 5402 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.light.util;
import java.util.Date;
/**
* 获取当前时间的接口,有些设备不支持直接获取当前时间,需要调用API接口
*
* @author Light
*
*/
public interface DelegateNow {
/**
* 返回当前时间
* @return
*/
Date Execute();
}