GetReplyCommentID get reply comment id
()
| 64 | |
| 65 | // GetReplyCommentID get reply comment id |
| 66 | func (c *Comment) GetReplyCommentID() string { |
| 67 | if c.ReplyCommentID.Valid { |
| 68 | return fmt.Sprintf("%d", c.ReplyCommentID.Int64) |
| 69 | } |
| 70 | return "" |
| 71 | } |
| 72 | |
| 73 | // SetReplyUserID set reply user id |
| 74 | func (c *Comment) SetReplyUserID(str string) { |
no outgoing calls
no test coverage detected