Skip to content

Commit

Permalink
Merge branch 'release/v1.24.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
bububa committed Apr 18, 2024
2 parents e3498ef + 07de4f2 commit 9381f9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions marketing-api/model/tools/comment/reply.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
package comment

import (
"encoding/json"

"github.com/bububa/oceanengine/marketing-api/enum"
"github.com/bububa/oceanengine/marketing-api/model"
)

// Reply 评论回复
type Reply struct {
// ReplyToCommentID 回复的一级评论ID
ReplyToCommentID json.Number `json:"reply_to_comment_id,omitempty"`
ReplyToCommentID model.Uint64 `json:"reply_to_comment_id,omitempty"`
// CommentID 评论id
CommentID uint64 `json:"comment_id,omitempty"`
// Text 评论内容
Expand Down
4 changes: 2 additions & 2 deletions marketing-api/model/tools/interestaction/object.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package interestaction

import "encoding/json"
import "github.com/bububa/oceanengine/marketing-api/model"

// Object 类目/关键词对象
type Object struct {
// ID 类目/关键词IID
ID json.Number `json:"id,omitempty"`
ID model.Uint64 `json:"id,omitempty"`
// Name 名称
Name string `json:"name,omitempty"`
// Num 覆盖人数
Expand Down

0 comments on commit 9381f9b

Please sign in to comment.