Browse Source

【CHG】增加推送消息参数字段

ZhaoMn 3 years ago
parent
commit
48064f7f4a

+ 3 - 3
railway-business/src/main/resources/mapper/push/BusPushMsgMapper.xml

@@ -72,7 +72,7 @@
         push_result_desc,
       </if>
       <if test='null != pushLoop'>
-        push_loop
+        push_loop,
       </if>
       <if test='null != param'>
         param
@@ -110,7 +110,7 @@
         #{pushResultDesc},
       </if>
       <if test='null != pushLoop'>
-        #{pushLoop}
+        #{pushLoop},
       </if>
       <if test='null != param'>
         #{param}
@@ -136,7 +136,7 @@
       <if test='null != pushTime'>push_time = #{pushTime},</if>
       <if test='null != pushStatus'>push_status = #{pushStatus},</if>
       <if test='null != pushResultDesc'>push_result_desc = #{pushResultDesc},</if>
-      <if test='null != pushLoop'>push_loop = #{pushLoop}</if>
+      <if test='null != pushLoop'>push_loop = #{pushLoop},</if>
       <if test='null != param'>param = #{param}</if>
     </set>
     WHERE id = #{id}