@@ -62,6 +62,12 @@ public class SceneEditInfoExt {
private String mosaics;
/**
+ * mosaics数据
+ */
+ @TableField("share_logo_img")
+ private String shareLogoImg;
+
+ /**
* 是否有场景关联(0-否,1-是)
*/
@TableField("links")
@@ -272,7 +272,9 @@ public class BuildSceneServiceImpl implements IBuildSceneService {
this.writeSceneJson(sceneCode, videosJson,sceneEditInfo, sceneEditInfoExt, sceneEditControls, scenePlus,scenePlusExt,company);
- createQrCode(sceneCode, scenePlusExt, ObjectUtils.isEmpty(company) ? null : company.getQrLogo());
+ String qrLogo = !ObjectUtils.isEmpty(company) && !ObjectUtils.isEmpty(company.getQrLogo()) ? company.getQrLogo() : sceneEditInfoExt.getShareLogoImg();
+ createQrCode(sceneCode, scenePlusExt, qrLogo);
//计算成功,通知APP
Integer pushChannel = fdageData.getInteger("pushChannel");