File tree 7 files changed +12
-12
lines changed
7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ type ResCode2Session struct {
40
40
type RspCheckEncryptedData struct {
41
41
util.CommonError
42
42
43
- Vaild bool `json:"vaild"` // 是否是合法的数据
44
- CreateTime uint `json:"create_time"` // 加密数据生成的时间戳
43
+ Vaild bool `json:"vaild"` // 是否是合法的数据
44
+ CreateTime uint64 `json:"create_time"` // 加密数据生成的时间戳
45
45
}
46
46
47
47
// Code2Session 登录凭证校验。
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ type FollowUser struct {
83
83
UserID string `json:"userid"`
84
84
Remark string `json:"remark"`
85
85
Description string `json:"description"`
86
- CreateTime string `json:"create_time "`
86
+ CreateTime int64 `json:"createtime "`
87
87
Tags []Tag `json:"tags"`
88
88
RemarkCorpName string `json:"remark_corp_name"`
89
89
RemarkMobiles []string `json:"remark_mobiles"`
@@ -169,7 +169,7 @@ type FollowInfo struct {
169
169
UserID string `json:"userid"`
170
170
Remark string `json:"remark"`
171
171
Description string `json:"description"`
172
- CreateTime int `json:"create_time "`
172
+ CreateTime int64 `json:"createtime "`
173
173
TagID []string `json:"tag_id"`
174
174
RemarkCorpName string `json:"remark_corp_name"`
175
175
RemarkMobiles []string `json:"remark_mobiles"`
Original file line number Diff line number Diff line change 80
80
ChatID string `json:"chat_id"` //客户群ID
81
81
Name string `json:"name"` //群名
82
82
Owner string `json:"owner"` //群主ID
83
- CreateTime int `json:"create_time"` //群的创建时间
83
+ CreateTime int64 `json:"create_time"` //群的创建时间
84
84
Notice string `json:"notice"` //群公告
85
85
MemberList []GroupChatMember `json:"member_list"` //群成员列表
86
86
AdminList []GroupChatAdmin `json:"admin_list"` //群管理员列表
Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ func (r *Client) AddMsgTemplate(req *AddMsgTemplateRequest) (*AddMsgTemplateResp
111
111
// GetGroupMsgListV2Request 获取群发记录列表请求
112
112
type GetGroupMsgListV2Request struct {
113
113
ChatType string `json:"chat_type"`
114
- StartTime int `json:"start_time"`
115
- EndTime int `json:"end_time"`
114
+ StartTime int64 `json:"start_time"`
115
+ EndTime int64 `json:"end_time"`
116
116
Creator string `json:"creator,omitempty"`
117
117
FilterType int `json:"filter_type"`
118
118
Limit int `json:"limit"`
@@ -130,7 +130,7 @@ type GetGroupMsgListV2Response struct {
130
130
type GroupMsg struct {
131
131
MsgID string `json:"msgid"`
132
132
Creator string `json:"creator"`
133
- CreateTime int `json:"create_time"`
133
+ CreateTime int64 `json:"create_time"`
134
134
CreateType int `json:"create_type"`
135
135
Text MsgText `json:"text"`
136
136
Attachments []* Attachment `json:"attachments"`
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ type GetCropTagListResponse struct {
44
44
type TagGroup struct {
45
45
GroupID string `json:"group_id"`
46
46
GroupName string `json:"group_name"`
47
- CreateTime int `json:"create_time"`
47
+ CreateTime int64 `json:"create_time"`
48
48
GroupOrder int `json:"group_order"`
49
49
Deleted bool `json:"deleted"`
50
50
Tag []TagGroupTagItem `json:"tag"`
@@ -54,7 +54,7 @@ type TagGroup struct {
54
54
type TagGroupTagItem struct {
55
55
ID string `json:"id"`
56
56
Name string `json:"name"`
57
- CreateTime int `json:"create_time"`
57
+ CreateTime int64 `json:"create_time"`
58
58
Order int `json:"order"`
59
59
Deleted bool `json:"deleted"`
60
60
}
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ type callbackOriginMessage struct {
53
53
// CallbackMessage 微信客服回调消息
54
54
type CallbackMessage struct {
55
55
ToUserName string `json:"to_user_name" xml:"ToUserName"` // 微信客服组件ID
56
- CreateTime int `json:"create_time" xml:"CreateTime"` // 消息创建时间,unix时间戳
56
+ CreateTime int64 `json:"create_time" xml:"CreateTime"` // 消息创建时间,unix时间戳
57
57
MsgType string `json:"msgtype" xml:"MsgType"` // 消息的类型,此时固定为 event
58
58
Event string `json:"event" xml:"Event"` // 事件的类型,此时固定为 kf_msg_or_event
59
59
Token string `json:"token" xml:"Token"` // 调用拉取消息接口时,需要传此token,用于校验请求的合法性
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ type CollectMessage struct {
169
169
Collect struct {
170
170
RoomName string `json:"room_name,omitempty"` // 填表消息所在的群名称。
171
171
Creator string `json:"creator,omitempty"` // 创建者在群中的名字
172
- CreateTime string `json:"create_time,omitempty"` // 创建的时间
172
+ CreateTime int64 `json:"create_time,omitempty"` // 创建的时间
173
173
Details []CollectDetails `json:"details,omitempty"` // 表内容
174
174
} `json:"collect,omitempty"`
175
175
}
You can’t perform that action at this time.
0 commit comments