diff --git a/cv/user_cv/user.go b/cv/user_cv/user.go index 6e09de77dc321ee9a5bb0d8b90751cb0ac04299f..a795e1856e01ed7e8c19c88173173160d58276d0 100644 --- a/cv/user_cv/user.go +++ b/cv/user_cv/user.go @@ -29,6 +29,7 @@ type UserTiny struct { Country string `json:"country"` CountryIcon string `json:"countryIcon"` IsPrettyCode bool `json:"isPrettyCode"` // 是否靓号 + Birthday uint64 `json:"birthday"` } func UserToTiny(user user_m.User) *UserTiny { @@ -42,6 +43,7 @@ func UserToTiny(user user_m.User) *UserTiny { Country: user.Country, CountryIcon: user.CountryIcon, IsPrettyCode: user.IsPrettyCode(), + Birthday: user.Birthday, } }