-
Notifications
You must be signed in to change notification settings - Fork 12
/
CustomerOpenInfo.go
73 lines (72 loc) · 3.55 KB
/
CustomerOpenInfo.go
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package alsc
// CustomerOpenInfo
type CustomerOpenInfo struct {
// 地址
Address string `json:"address,omitempty" xml:"address,omitempty"`
// 客单价,单位:分
AvgConsume int64 `json:"avg_consume,omitempty" xml:"avg_consume,omitempty"`
// 生日
Birthday string `json:"birthday,omitempty" xml:"birthday,omitempty"`
// 渠道
Channel int64 `json:"channel,omitempty" xml:"channel,omitempty"`
// 累计消费总金额,单位:分
ConsumeAmount int64 `json:"consume_amount,omitempty" xml:"consume_amount,omitempty"`
// 累计消费次数
ConsumeNum int64 `json:"consume_num,omitempty" xml:"consume_num,omitempty"`
// 创建人
CreateBy string `json:"create_by,omitempty" xml:"create_by,omitempty"`
// 顾客ID
CustomerId string `json:"customer_id,omitempty" xml:"customer_id,omitempty"`
// 顾客加入门店id
CustomerStoreId string `json:"customer_store_id,omitempty" xml:"customer_store_id,omitempty"`
// 成为顾客时间
CustomerTime string `json:"customer_time,omitempty" xml:"customer_time,omitempty"`
// 顾客类型,顾客:0,会员:1
CustomerType int64 `json:"customer_type,omitempty" xml:"customer_type,omitempty"`
// 是否已删除
Deleted bool `json:"deleted,omitempty" xml:"deleted,omitempty"`
// 电子邮件
Email string `json:"email,omitempty" xml:"email,omitempty"`
// 关注微信时间(微信公众号)
FollowWxTime string `json:"follow_wx_time,omitempty" xml:"follow_wx_time,omitempty"`
// 性别 0女 1男
Gender int64 `json:"gender,omitempty" xml:"gender,omitempty"`
// 创建时间
GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
// 修改时间
GmtModified string `json:"gmt_modified,omitempty" xml:"gmt_modified,omitempty"`
// 发票抬头
Invoice string `json:"invoice,omitempty" xml:"invoice,omitempty"`
// 最后消费时间
LastConsumeTime string `json:"last_consume_time,omitempty" xml:"last_consume_time,omitempty"`
// 等级描述
LevelDesc string `json:"level_desc,omitempty" xml:"level_desc,omitempty"`
// 等级ID
LevelId string `json:"level_id,omitempty" xml:"level_id,omitempty"`
// 等级序号
LevelNo int64 `json:"level_no,omitempty" xml:"level_no,omitempty"`
// 成为会员店铺ID
MemberStoreId string `json:"member_store_id,omitempty" xml:"member_store_id,omitempty"`
// 成为会员时间
MemberTime string `json:"member_time,omitempty" xml:"member_time,omitempty"`
// 手机号
Mobile string `json:"mobile,omitempty" xml:"mobile,omitempty"`
// 姓名
Name string `json:"name,omitempty" xml:"name,omitempty"`
// 固定电话
Phone string `json:"phone,omitempty" xml:"phone,omitempty"`
// 备注
Remark string `json:"remark,omitempty" xml:"remark,omitempty"`
// 会员状态,可用1、停用0(停用:所有会员的权益不可用)
State int64 `json:"state,omitempty" xml:"state,omitempty"`
// 标签列表
Tags []string `json:"tags,omitempty" xml:"tags>string,omitempty"`
// 2019237428364
UpdateBy string `json:"update_by,omitempty" xml:"update_by,omitempty"`
// 成长值
Growth int64 `json:"growth,omitempty" xml:"growth,omitempty"`
// 是否设置了支付密码
HasPassword bool `json:"has_password,omitempty" xml:"has_password,omitempty"`
// 外部信息
CustomerOutInfoList []CustomerOutInfo `json:"customer_out_info_list,omitempty" xml:"customer_out_info_list>customer_out_info,omitempty"`
}