|
|
@@ -833,6 +833,10 @@ public class TextbookServiceImpl extends MPJBaseServiceImpl<TextbookMapper, Text
|
|
|
|
|
|
//批量插入或更新数据
|
|
|
for (TextbookImportDto textbookImportDto : dataList) {
|
|
|
+ TextbookCoreAttribute textbookCoreAttribute = new TextbookCoreAttribute();
|
|
|
+ BeanUtils.copyProperties(textbookImportDto, textbookCoreAttribute);
|
|
|
+
|
|
|
+
|
|
|
Textbook textbook = new Textbook();
|
|
|
BeanUtils.copyProperties(textbookImportDto, textbook);
|
|
|
|