Browse Source

任务的标签管理

master
陈裕财 3 years ago
parent
commit
6945a4d9b1
  1. 2
      xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmTaskMapper.xml

2
xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmTaskMapper.xml

@ -380,7 +380,7 @@
</select> </select>
<update id="upBrowseTimes" parameterType="String"> <update id="upBrowseTimes" parameterType="String">
update xm_task update xm_task
set browse_times=browse_times+1
set browse_times=ifnull(browse_times,0)+1
where id = #{id} where id = #{id}
</update> </update>

Loading…
Cancel
Save