user_base_dto.go
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package dto
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-user/pkg/domain"
)
type UserBaseDto struct {
// 游客用户id
UserId int64 `json:"userId,omitempty"`
// 用户基础数据id
UserBaseId int64 `json:"userBaseId,omitempty"`
UserType int `json:"userType"`
// 用户信息
UserInfo *domain.UserInfo `json:"userInfo,omitempty"`
// 收藏
Favorite *domain.Favorite `json:"favorite"`
// 手机号码
//Account string `json:"phone,omitempty"`
// 密码
//Password string `json:"password,omitempty"`
// IM信息
Im *domain.Im `json:"im,omitempty"`
// 关联的用户 (冗余)
//RelatedUsers []int64 `json:"relatedUsers,omitempty"`
// 账号状态 1:正常 2.禁用 3:注销
//Status int `json:"status,omitempty"`
// 创建时间
//CreatedAt time.Time `json:"createdAt,omitempty"`
// 更新时间
//UpdatedAt time.Time `json:"updatedAt,omitempty"`
}
func (u *UserBaseDto) LoadDto(ub *domain.UserBase) {
u.UserBaseId = ub.UserBaseId
u.UserInfo = ub.UserInfo
u.Favorite = ub.Favorite
u.UserType = domain.UserTypeVisitor
u.Im = ub.Im
}