feat: Change upload logs systemType to AppFramework. (#2927)

* feat: change upload logs systemType to AppFramework

* feat: change upload logs systemType to AppFramework

* Merge: main
This commit is contained in:
icey-yu 2024-12-12 11:47:52 +08:00 committed by GitHub
parent 42136c6b93
commit 120afdf6ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 17 deletions

View File

@ -55,7 +55,7 @@ func (t *thirdServer) UploadLogs(ctx context.Context, req *third.UploadLogsReq)
CreateTime: time.Now(),
Url: fileURL.URL,
FileName: fileURL.Filename,
SystemType: req.AppFramework,
AppFramework: req.AppFramework,
Version: req.Version,
Ex: req.Ex,
}

View File

@ -26,6 +26,7 @@ type Log struct {
Url string `bson:"url"`
FileName string `bson:"file_name"`
SystemType string `bson:"system_type"`
AppFramework string `bson:"app_framework"`
Version string `bson:"version"`
Ex string `bson:"ex"`
}