cn.vonce.sql.enumerate.TimeUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.enumerate;
/**
* 时间单位
*
* @author Jovi
* @email [email protected]
* @date 2024/6/28 14:10
*/
public enum TimeUnit {
MICROSECOND("微秒"),
FRAC_SECOND("毫秒"),
SECOND("秒"),
MINUTE("分"),
HOUR("时"),
DAY("天"),
WEEK("周"),
MONTH("月"),
QUARTER("季"),
YEAR("年");
private String desc;
TimeUnit(String desc) {
this.desc = desc;
}
public String getDesc() {
return desc;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy