Browse Source

update key gen

marion 4 years ago
parent
commit
6a7763edea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/keygen.go

+ 1 - 1
utils/keygen.go

@@ -70,7 +70,7 @@ func NewSnowflake(st SnowflakeSettings) *Snowflake {
 		return nil
 	}
 	if st.StartTime.IsZero() {
-		sf.startTime = toSnowflakeTime(time.Date(2020, 4, 14, 0, 0, 0, 0, time.UTC)) //没有配置默认使用此时间
+		sf.startTime = toSnowflakeTime(time.Date(2020, 8, 10, 0, 0, 0, 0, time.UTC)) //没有配置默认使用此时间
 	} else {
 		sf.startTime = toSnowflakeTime(st.StartTime)
 	}