| 1234567891011121314151617 | 
							- package common
 
- type CommentListVO struct {
 
- 	Id          string      `json:"Id"`
 
- 	CommentList []CommentVo `json:"CommentList"`
 
- }
 
- type CommentVo struct {
 
- 	Id      string  `json:"Id"`
 
- 	Desc    string  `json:"Desc"`
 
- 	Score   float32 `json:"Score"`
 
- 	ReplyId string  `json:"ReplyId"`
 
- }
 
- type CommentResult struct {
 
- 	Detail CommentListVO `json:"detail"`
 
- }
 
 
  |