gitee.com/quant1x/gox@v1.21.2/api/datetime_layout.go (about)

     1  package api
     2  
     3  import "time"
     4  
     5  const (
     6  	// DateFormat  日期格式 yyyy-MM-dd
     7  	DateFormat = "2006-01-02"
     8  	// DateFormat2 日期格式 yyyyMMdd
     9  	DateFormat2 = "20060102"
    10  	// DateFormat3 日期格式 yyMMdd
    11  	DateFormat3 = "060102"
    12  
    13  	// TimeFormat 时间格式 yyyy-MM-dd HH:mm:ss
    14  	TimeFormat = "2006-01-02 15:04:05"
    15  	// TimeFormat2 时间格式 yyyyMMddHHmmss
    16  	TimeFormat2 = "20060102150405"
    17  	// Timestamp 时间戳 - 毫秒 时间格式 yyyy-MM-dd HH:mm:ss.SSS
    18  	Timestamp = "2006-01-02 15:04:05.000"
    19  
    20  	// TimeOnly 时分秒
    21  	TimeOnly = time.TimeOnly
    22  	// TimeAndMillisecond 时分秒毫
    23  	TimeAndMillisecond = "15:04:05.000"
    24  
    25  	PathDate = "20060102"   // 路径中的日期格式
    26  	TextDate = "2006-01-02" // 数据中的日期格式
    27  )