Commit 17d6a090 by lixue123

修改

parent cb146649
......@@ -1060,8 +1060,10 @@ public class BookSet {
return;
}
AssistTempletDTO assistTempletDTO = assistTempletMap.get(templetId);
bookDto.setQrRemark(assistTempletDTO == null ? null : assistTempletDTO.getRemark());
bookDto.setTempletName(assistTempletDTO == null ? null : assistTempletDTO.getTempletName());
if (assistTempletDTO != null) {
bookDto.setTempletName(assistTempletDTO.getTempletName());
bookDto.setQrRemark(assistTempletDTO.getRemark());
}
LOGGER.info("设置模板名称【END】");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment