修复上传文件没有名称

This commit is contained in:
TinyAnts 2022-04-26 16:20:46 +08:00
parent 66ad125b9c
commit 129c34560e
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ public class UploadController {
album.put("size", map.get("size").toString());
album.put("ext", map.get("ext").toString());
album.put("url", map.get("url").toString());
album.put("name", map.get("name").toString());
Integer id = iAlbumService.albumAdd(album);
map.put("id", id);