Sfoglia il codice sorgente

修复eta发布时间格式

kobe6258 8 mesi fa
parent
commit
325a99a6dd
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      domian/report/report_service.go

+ 1 - 1
domian/report/report_service.go

@@ -94,7 +94,7 @@ func GetGetReportById(reportId int) (ReportDTO ReportDTO, err error) {
 		names = stringUtils.UniqueItems(names)
 		report.Author = strings.Join(names, ",")
 	}
-	report.PublishedTime = report.PublishedTime[:10]
+	//report.PublishedTime = report.PublishedTime
 	ReportDTO = convertReportDTO(report)
 	return
 }