All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.model.time.Time Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.litongjava.model.time;

/**
 * @author tanyaowu
 * 2017年8月16日 上午10:27:26
 */
public class Time {

  /**
   * 一秒
   */
  public static final Long SECOND_1 = 1L;

  /**
   * 一分钟
   */
  public static final Long MINUTE_1 = SECOND_1 * 60L;
  /**
   * 一小时
   */
  public static final Long HOUR_1 = MINUTE_1 * 60L;
  /**
   * 一天
   */
  public static final Long DAY_1 = HOUR_1 * 24;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy