1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-10 01:35:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

所有convert函数添加判空;上传成功回调函数修Bug

This commit is contained in:
2022-04-16 00:15:59 +08:00
parent 3dac60ced6
commit 67bb897361
9 changed files with 69 additions and 39 deletions

View File

@@ -199,6 +199,9 @@ public class BookController extends BaseController {
private BookVO convertFromModel(BookModel bookModel) {
if(bookModel == null) {
return null;
}
BookVO bookVO = new BookVO();
BeanUtils.copyProperties(bookModel, bookVO);
return bookVO;