package dto import ( "vote-api/api/model" ) // UserDto 用户表 type UserDto struct { UserId string `json:"user_id"` // 用户id UserStatus int `json:"user_status"` // 状态(1:正常 2:禁用) OpenId string `json:"open_id"` // 用户微信标识 LoginAt *model.LocalTime `json:"login_at"` // 登陆时间 LoginIp string `json:"login_ip"` // 登陆ip CreatedAt model.LocalTime `json:"created_at"` // 创建时间 UpdatedAt model.LocalTime `json:"updated_at"` // 更新时间 }