From c34fc83655b146b40802e1fce22db37b7367c83d Mon Sep 17 00:00:00 2001 From: Houjie <714924425@qq.com> Date: 星期一, 30 六月 2025 09:23:12 +0800 Subject: [PATCH] 企业微信登录 --- lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/EamInspectionOrderMapper.xml | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/EamInspectionOrderMapper.xml b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/EamInspectionOrderMapper.xml index a69ec96..18a5e0b 100644 --- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/EamInspectionOrderMapper.xml +++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/EamInspectionOrderMapper.xml @@ -2,4 +2,31 @@ <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="org.jeecg.modules.eam.mapper.EamInspectionOrderMapper"> + <select id="queryPageList" resultType="org.jeecg.modules.eam.entity.EamInspectionOrder"> + select wmo.*, e.equipment_code, e.equipment_name, e.installation_position + from eam_inspection_order wmo + inner join eam_equipment e + on wmo.equipment_id = e.id + ${ew.customSqlSegment} + </select> + + <select id="equipmentInspectionStatistics" + resultType="org.jeecg.modules.eam.vo.EquipmentInspectionStatistics"> + select FORMAT(err.inspection_date, 'yyyy-MM') as monthStr, + COUNT(1) as planNumber, + SUM(CASE WHEN err.inspection_status = 'COMPLETE' THEN 1 ELSE 0 END) as completeNumber + from eam_inspection_order err + inner join eam_equipment e + on err.equipment_id = e.id + where err.inspection_status != 'ABOLISH' and err.del_flag = 0 and e.del_flag = 0 + <if test="productionIds != null"> + AND e.org_id IN + <foreach collection="productionIds" item="productionId" index="index" open="(" close=")" separator=","> + #{productionId} + </foreach> + </if> + and err.inspection_date >= #{start} + and err.inspection_date < #{end} + group by FORMAT(err.inspection_date, 'yyyy-MM') + </select> </mapper> -- Gitblit v1.9.3