推送记录查询修正

This commit is contained in:
syruan 2026-02-06 14:03:58 +08:00
parent c58c3055ec
commit 40e1d1874a
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
pmi.agreementId,pmi.id,pmi.push_status as pushStatus,
pmi.push_remark as pushRemark
FROM calc_project_month cpm
LEFT JOIN project_month_info pmi ON pmi.taskId = cpm.id
LEFT JOIN project_month_info pmi ON pmi.taskId = cpm.id and pmi.jiju_type = #{settlementType}
WHERE cpm.`MONTH` = #{month} GROUP BY pmi.agreementId
UNION