评分内容
| 202 | |
| 203 | //评分内容 |
| 204 | type BookScoresResult struct { |
| 205 | Avatar string `json:"avatar"` |
| 206 | Nickname string `json:"nickname"` |
| 207 | Score string `json:"score"` |
| 208 | TimeCreate time.Time `json:"time_create"` //评论时间 |
| 209 | } |
| 210 | |
| 211 | //获取评分内容 |
| 212 | func (this *Score) BookScores(p, listRows, bookId int) (scores []BookScoresResult, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected