线索批量分配

This commit is contained in:
苏竹红
2024-07-19 16:26:57 +08:00
parent ab9d969788
commit b10ed6eea3
7 changed files with 54 additions and 17 deletions

View File

@@ -567,4 +567,11 @@
</select>
<update id="batchUpdateInvestmentManager">
update xfsg_line_info set line_status = #{status} and investment_manager = #{investmentManager} where id in
<foreach collection="lineIds" item="lineId" open="(" separator="," close=")">
#{lineId}
</foreach>
</update>
</mapper>