fix upload本地上传返回文件名错误

This commit is contained in:
不做码农 2022-03-29 16:52:54 +08:00
parent 49f7e9b3c3
commit 9ead357071

View File

@ -139,7 +139,7 @@ namespace ZR.Admin.WebApi.Controllers
return SUCCESS(new return SUCCESS(new
{ {
url = file.AccessUrl, url = file.AccessUrl,
fileName, fileName = file.FileName,
fileId = file.Id.ToString() fileId = file.Id.ToString()
}); });
} }