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.
ntool/ntime/config.go

12 lines
319 B
Go

package ntime
// TimeFormatConf 时间配置
type TimeFormatConf struct {
// DateTime 日期 时间 格式
DateTime string `json:",optional,default=2006-01-02 15:04:05"`
// Date 日期格式
Date string `json:",optional,default=2006-01-02"`
// Time 时间格式
Time string `json:",optional,default=15:04:05"`
}