From ce8cb72035593058a572b905bedd327cad579f18 Mon Sep 17 00:00:00 2001 From: hyingbo <1363390067@qq.com> Date: 星期四, 19 六月 2025 13:58:17 +0800 Subject: [PATCH] Revert "首页本月三保、下月三保、下下月三保统计调整" --- lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/OperationCertificateDetailMapper.xml | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/OperationCertificateDetailMapper.xml b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/OperationCertificateDetailMapper.xml index 6fca9a7..7be6dd5 100644 --- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/OperationCertificateDetailMapper.xml +++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/OperationCertificateDetailMapper.xml @@ -9,8 +9,11 @@ operation_certificate_id = #{mainId} </delete> <select id="selectByMainId" parameterType="java.lang.String" resultType="org.jeecg.modules.eam.entity.OperationCertificateDetail"> - SELECT * - FROM mom_eam_operation_certificate_detail + SELECT t1.*,t3.name equipmentName,t4.deduction_score deductionScore,t4.content deductionScoreName + FROM mom_eam_operation_certificate_detail t1 + left join mom_eam_operation_certificate t2 on t1.operation_certificate_id = t2.id + left join mom_eam_equipment t3 on t3.id = t1.equipment_id + left join mom_eam_base_deduction_item t4 on t4.id = t1.deduction_item WHERE operation_certificate_id = #{mainId} </select> </mapper> -- Gitblit v1.9.3