Skip to content

Commit 45ad2ab

Browse files
authored
调整结构体中CreateTime (#691)
* fix: 修改FollowInfo结构体中的tag标签为createtime * fix: 统一CreateTime为int64 * chore: format * chore: format
1 parent 5d0e32e commit 45ad2ab

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

miniprogram/auth/auth.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ type ResCode2Session struct {
4040
type RspCheckEncryptedData struct {
4141
util.CommonError
4242

43-
Vaild bool `json:"vaild"` // 是否是合法的数据
44-
CreateTime uint `json:"create_time"` // 加密数据生成的时间戳
43+
Vaild bool `json:"vaild"` // 是否是合法的数据
44+
CreateTime uint64 `json:"create_time"` // 加密数据生成的时间戳
4545
}
4646

4747
// Code2Session 登录凭证校验。

work/externalcontact/external_user.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ type FollowUser struct {
8383
UserID string `json:"userid"`
8484
Remark string `json:"remark"`
8585
Description string `json:"description"`
86-
CreateTime string `json:"create_time"`
86+
CreateTime int64 `json:"createtime"`
8787
Tags []Tag `json:"tags"`
8888
RemarkCorpName string `json:"remark_corp_name"`
8989
RemarkMobiles []string `json:"remark_mobiles"`
@@ -169,7 +169,7 @@ type FollowInfo struct {
169169
UserID string `json:"userid"`
170170
Remark string `json:"remark"`
171171
Description string `json:"description"`
172-
CreateTime int `json:"create_time"`
172+
CreateTime int64 `json:"createtime"`
173173
TagID []string `json:"tag_id"`
174174
RemarkCorpName string `json:"remark_corp_name"`
175175
RemarkMobiles []string `json:"remark_mobiles"`

work/externalcontact/groupchat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ type (
8080
ChatID string `json:"chat_id"` //客户群ID
8181
Name string `json:"name"` //群名
8282
Owner string `json:"owner"` //群主ID
83-
CreateTime int `json:"create_time"` //群的创建时间
83+
CreateTime int64 `json:"create_time"` //群的创建时间
8484
Notice string `json:"notice"` //群公告
8585
MemberList []GroupChatMember `json:"member_list"` //群成员列表
8686
AdminList []GroupChatAdmin `json:"admin_list"` //群管理员列表

work/externalcontact/msg.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ func (r *Client) AddMsgTemplate(req *AddMsgTemplateRequest) (*AddMsgTemplateResp
111111
// GetGroupMsgListV2Request 获取群发记录列表请求
112112
type GetGroupMsgListV2Request struct {
113113
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"`
116116
Creator string `json:"creator,omitempty"`
117117
FilterType int `json:"filter_type"`
118118
Limit int `json:"limit"`
@@ -130,7 +130,7 @@ type GetGroupMsgListV2Response struct {
130130
type GroupMsg struct {
131131
MsgID string `json:"msgid"`
132132
Creator string `json:"creator"`
133-
CreateTime int `json:"create_time"`
133+
CreateTime int64 `json:"create_time"`
134134
CreateType int `json:"create_type"`
135135
Text MsgText `json:"text"`
136136
Attachments []*Attachment `json:"attachments"`

work/externalcontact/tag.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type GetCropTagListResponse struct {
4444
type TagGroup struct {
4545
GroupID string `json:"group_id"`
4646
GroupName string `json:"group_name"`
47-
CreateTime int `json:"create_time"`
47+
CreateTime int64 `json:"create_time"`
4848
GroupOrder int `json:"group_order"`
4949
Deleted bool `json:"deleted"`
5050
Tag []TagGroupTagItem `json:"tag"`
@@ -54,7 +54,7 @@ type TagGroup struct {
5454
type TagGroupTagItem struct {
5555
ID string `json:"id"`
5656
Name string `json:"name"`
57-
CreateTime int `json:"create_time"`
57+
CreateTime int64 `json:"create_time"`
5858
Order int `json:"order"`
5959
Deleted bool `json:"deleted"`
6060
}

work/kf/callback.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type callbackOriginMessage struct {
5353
// CallbackMessage 微信客服回调消息
5454
type CallbackMessage struct {
5555
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时间戳
5757
MsgType string `json:"msgtype" xml:"MsgType"` // 消息的类型,此时固定为 event
5858
Event string `json:"event" xml:"Event"` // 事件的类型,此时固定为 kf_msg_or_event
5959
Token string `json:"token" xml:"Token"` // 调用拉取消息接口时,需要传此token,用于校验请求的合法性

work/msgaudit/message.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ type CollectMessage struct {
169169
Collect struct {
170170
RoomName string `json:"room_name,omitempty"` // 填表消息所在的群名称。
171171
Creator string `json:"creator,omitempty"` // 创建者在群中的名字
172-
CreateTime string `json:"create_time,omitempty"` // 创建的时间
172+
CreateTime int64 `json:"create_time,omitempty"` // 创建的时间
173173
Details []CollectDetails `json:"details,omitempty"` // 表内容
174174
} `json:"collect,omitempty"`
175175
}

0 commit comments

Comments
 (0)