answer/internal/entity/auth_user_entity.go

9 lines
202 B
Go
Raw Normal View History

2022-09-27 17:59:05 +08:00
package entity
// UserCacheInfo 用户缓存信息
type UserCacheInfo struct {
UserID string `json:"user_id"`
UserStatus int `json:"user_status"`
EmailStatus int `json:"email_status"`
}