客户档案的合同添加、复制健康调查链接

This commit is contained in:
xiezhijun
2021-02-01 19:13:41 +08:00
parent f3a4fa40a8
commit e3d8a9fa12
32 changed files with 621 additions and 1102 deletions

View File

@ -207,4 +207,9 @@
<include refid="selectSysCustomerPhysicalSigns"/> where scps.del_flag = 0 and sc.del_flag = 0 and sc.phone = #{phone} limit 1
</select>
<!-- 根据客户ID删除对应体征信息 -->
<update id="delCustomerSignByCustomerId" parameterType="Long">
update sys_customer_physical_signs set del_flag = 1 where customer_id = #{customerId}
</update>
</mapper>