insert into chat_chat_dialog (`chat_id`,`chat_type`,`receiver_id`,`disturb`,`robot`,`top`,`display`,`user_id`,`unread_num`) values (#{chatId},#{chatType},#{receiverId},#{disturb},#{robot},#{top},#{display},#{userId},#{unreadNum}) insert into chat_chat_dialog (`chat_id`,`chat_type`,`receiver_id`,`disturb`,`robot`,`top`,`display`,`user_id`,`unread_num`) values (#{item.chatId},#{item.chatType},#{item.receiverId},#{item.disturb},#{item.robot},#{item.top},#{item.display},#{item.userId},#{item.unreadNum}) update chat_chat_dialog set update_time=now(),disturb=#{disturb} where id=#{dialogId} and user_id=#{userId} update chat_chat_dialog set update_time=now(),top=#{top} where id=#{dialogId} and user_id=#{userId} update chat_chat_dialog set update_time=now(),display=#{display} where id=#{dialogId} and user_id=#{userId} update chat_chat_dialog set update_time=now(),unread_num=unread_num+1 where receiver_id=#{receiverId} and user_id=#{userId} update chat_chat_dialog set update_time=now(),unread_num=0 where receiver_id=#{receiverId} and user_id=#{userId} delete from chat_chat_dialog where receiver_id=#{groupId} and user_id in #{item}