You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
496 B
Java
15 lines
496 B
Java
package com.htfp.weather.info;
|
|
|
|
/**
|
|
* @Author : shiyi
|
|
* @Date : 2024/5/8 12:02
|
|
* @Description :
|
|
*/
|
|
public class Constant {
|
|
public static final String DATA_SET_ID_FORMAT_STRING = "'UTC-'yyyyMMdd.HH";
|
|
public static final String DATA_FOLDER_STRING = "'UTC-'yyyyMMdd.HH";
|
|
public static final String UTC_TIME_STRING = "'UTC-'yyyyMMdd.HH";
|
|
public static final String BJT_TIME_STRING = "'BJT-'yyyyMMdd.HH";
|
|
public static final String API_TIME_STRING = "yyyy-MM-dd'T'HH:mmxxx";
|
|
}
|