From 23855599412c4d61b38d78f0f3abd3430a48b5b1 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期三, 25 六月 2025 11:51:38 +0800 Subject: [PATCH] Merge branch 'mdc_hyjs_master' --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentStatisticalShiftInfoMapper.xml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentStatisticalShiftInfoMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentStatisticalShiftInfoMapper.xml new file mode 100644 index 0000000..8378f85 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentStatisticalShiftInfoMapper.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="org.jeecg.modules.mdc.mapper.MdcEquipmentStatisticalShiftInfoMapper"> + + + <select id="getMaxStaticsData" resultType="org.jeecg.modules.mdc.entity.MdcEquipmentStatisticalShiftInfo"> + SELECT TOP 1 * FROM mdc_equipment_statistical_shift_info WHERE equipment_id = #{equipmentId} ORDER BY the_date DESC + </select> + + <!--鏌ヨ涓昏酱杩愯鏃堕棿--> + <select id="findSpindleRunDuration" resultType="java.math.BigDecimal"> + SELECT + SUM(process_long) + FROM + mdc_equipment_statistical_shift_info + WHERE + equipment_id = #{ equipmentId } + AND the_date LIKE CONCAT(#{ validDate },'%') + </select> + + <select id="findByEquipmentAndMonth" resultType="org.jeecg.modules.mdc.dto.MdcEquipmentStatisticalDto"> + SELECT + SUM(open_long) openLong, + SUM(close_long) closeLong, + SUM(wait_long) waitLong, + SUM(process_long) processLong, + SUM(error_long) errorLong, + SUM(total_long) totalLong + FROM + mdc_equipment_statistical_shift_info + WHERE + equipment_id = #{equipmentId} AND the_date LIKE CONCAT(#{date}, '%') + </select> + + <select id="findShiftByEquipmentAndMonth" resultType="org.jeecg.modules.mdc.dto.MdcEquipmentStatisticalDto"> + SELECT + shift_sub_id shiftSubId, + SUM(open_long) openLong, + SUM(close_long) closeLong, + SUM(wait_long) waitLong, + SUM(process_long) processLong, + SUM(error_long) errorLong, + SUM(total_long) totalLong + FROM + mdc_equipment_statistical_shift_info + WHERE + equipment_id = #{equipmentId} AND the_date LIKE CONCAT(#{date}, '%') + GROUP BY shift_sub_id + </select> +</mapper> \ No newline at end of file -- Gitblit v1.9.3