| | |
| | | "gat1400Exchange/pkg/logger" |
| | | "gat1400Exchange/service" |
| | | "net/http" |
| | | "strconv" |
| | | "time" |
| | | |
| | | "gat1400Exchange/config" |
| | |
| | | |
| | | // 时间校准 |
| | | func (s SystemController) Time(c *gin.Context) { |
| | | iTime, _ := strconv.ParseInt(time.Now().Format("20060102150405"), 10, 64) |
| | | rspMsg := vo.ResponseSystemTime{ |
| | | VIIDServerID: config.ServeConf.ID, |
| | | LocalTime: time.Now().Format("20060102150405"), |
| | | LocalTime: iTime, |
| | | } |
| | | |
| | | c.JSON(http.StatusOK, gin.H{"SystemTimeObject": rspMsg}) |
| | |
| | | type ResponseSystemTime struct { |
| | | VIIDServerID string |
| | | TimeMode interface{} |
| | | LocalTime string |
| | | LocalTime int64 |
| | | TimeZone interface{} |
| | | } |