CommentVO.go 351 B

1234567891011121314151617
  1. package common
  2. type CommentListVO struct {
  3. Id string `json:"Id"`
  4. CommentList []CommentVo `json:"CommentList"`
  5. }
  6. type CommentVo struct {
  7. Id string `json:"Id"`
  8. Desc string `json:"Desc"`
  9. Score float32 `json:"Score"`
  10. ReplyId string `json:"ReplyId"`
  11. }
  12. type CommentResult struct {
  13. Detail CommentListVO `json:"detail"`
  14. }