德中需求验收发送多人邮件

This commit is contained in:
2025-08-01 16:59:57 +08:00
parent c68b6951e1
commit 9386e23fb4
8 changed files with 58 additions and 13 deletions

View File

@ -71,4 +71,11 @@
order by id desc
</select>
<select id="productListByProgramName" resultType="com.sa.zentao.entity.ZtProduct">
select p.* from zt_product p WHERE program in (
SELECT id from zt_project pj WHERE pj.`name` = #{programName} and pj.deleted ='0'
) and deleted = '0'
</select>
</mapper>