根据序号获取举报原因
(num interface{})
| 93 | |
| 94 | //根据序号获取举报原因 |
| 95 | func (this *Sys) GetReportReason(num interface{}) (reason string) { |
| 96 | reasons := this.GetReportReasons() |
| 97 | reason, _ = reasons[fmt.Sprintf("%v", num)] |
| 98 | return |
| 99 | } |
nothing calls this directly
no test coverage detected