GetReplyUserID get reply user id
()
| 56 | |
| 57 | // GetReplyUserID get reply user id |
| 58 | func (c *Comment) GetReplyUserID() string { |
| 59 | if c.ReplyUserID.Valid { |
| 60 | return fmt.Sprintf("%d", c.ReplyUserID.Int64) |
| 61 | } |
| 62 | return "" |
| 63 | } |
| 64 | |
| 65 | // GetReplyCommentID get reply comment id |
| 66 | func (c *Comment) GetReplyCommentID() string { |
no outgoing calls
no test coverage detected