1.修改员工更新主播邀约状态Sql 逻辑

This commit is contained in:
2025-07-28 16:52:45 +08:00
parent 02603f4a4e
commit f4013bf801
3 changed files with 15 additions and 9 deletions

View File

@@ -314,4 +314,14 @@
seh.id = #{item.id}
</foreach>
</update>
<update id="updateByXml">
UPDATE server_employee_hosts as seh
SET
operation_status = #{employeeHostsDO.operationStatus,jdbcType=INTEGER}
WHERE
seh.user_id = #{employeeHostsDO.userId,jdbcType=BIGINT}
and seh.hosts_id=#{employeeHostsDO.hostsId,jdbcType=VARCHAR}
and tenant_id =#{tenantId,jdbcType=BIGINT}
</update>
</mapper>