Procházet zdrojové kódy

fix:中台出包渠道管理修改app配置信息同步到应用配置信息修改

zack před 1 měsícem
rodič
revize
660b0fd661

+ 25 - 4
yt-ios-lemon/lemon-ios-service/src/main/resources/mapper/AppUserMapper.xml

@@ -96,9 +96,6 @@
     <update id="updateAppConfig">
         update yt_app_default_config
         <set>
-            <if test="canSimulator != null">
-                can_simulator = #{canSimulator},
-            </if>
             <if test="configName != null">
                 config_name = #{configName},
             </if>
@@ -144,6 +141,9 @@
             <if test="canAccumulation != null">
                 can_accumulation = #{canAccumulation},
             </if>
+            <if test="canSimulator != null">
+                can_simulator = #{canSimulator},
+            </if>
             <if test="ditchId != null">
                 ditch_id = #{ditchId},
             </if>
@@ -151,7 +151,28 @@
                 power_wait_time = #{powerWaitTime},
             </if>
             <if test="interstitialIntervalTime != null">
-                interstitial_interval_time = #{interstitialIntervalTime}
+                interstitial_interval_time = #{interstitialIntervalTime},
+            </if>
+            <if test="lowValueTip != null">
+                low_value_tip = #{lowValueTip},
+            </if>
+            <if test="brushTip != null">
+                brush_tip = #{brushTip},
+            </if>
+            <if test="flowIntervalTime != null">
+                flow_interval_time = #{flowIntervalTime},
+            </if>
+            <if test="taskLimitTip != null">
+                task_limit_tip = #{taskLimitTip},
+            </if>
+            <if test="startWaitTime != null">
+                start_wait_time = #{startWaitTime},
+            </if>
+            <if test="canCacheVideo != null">
+                can_cache_video = #{canCacheVideo},
+            </if>
+            <if test="canAllowAutoRefresh != null">
+                can_allow_auto_refresh = #{canAllowAutoRefresh}
             </if>
         </set>
         where app_id = #{appId}