answer/internal/entity/auth_user_entity.go

11 lines
284 B
Go
Raw Normal View History

2022-09-27 17:59:05 +08:00
package entity
2022-10-21 12:00:50 +08:00
// UserCacheInfo User Cache Information
2022-09-27 17:59:05 +08:00
type UserCacheInfo struct {
UserID string `json:"user_id"`
UserStatus int `json:"user_status"`
EmailStatus int `json:"email_status"`
2023-03-03 16:59:34 +08:00
RoleID int `json:"role_id"`
2023-04-17 18:04:28 +08:00
ExternalID string `json:"external_id"`
2022-09-27 17:59:05 +08:00
}