From b364530ee03f8b28b64863f6a633daf05dc94e91 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期三, 18 十二月 2024 15:55:19 +0800 Subject: [PATCH] 查询站点的检验时长+产量工时bug+检验任务提交撤销+首页待办查最近七天的信息+高低温检验增加检验表字段 --- performance-server/src/main/resources/mapper/AuxiliaryOutputWorkingHoursMapper.xml | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/performance-server/src/main/resources/mapper/AuxiliaryOutputWorkingHoursMapper.xml b/performance-server/src/main/resources/mapper/AuxiliaryOutputWorkingHoursMapper.xml index b37e74b..9742929 100644 --- a/performance-server/src/main/resources/mapper/AuxiliaryOutputWorkingHoursMapper.xml +++ b/performance-server/src/main/resources/mapper/AuxiliaryOutputWorkingHoursMapper.xml @@ -18,12 +18,13 @@ <result column="week" property="week"/> <result column="week_day" property="weekDay"/> <result column="check" property="check"/> + <result column="name" property="name"/> <result column="create_time" property="createTime"/> <result column="update_time" property="updateTime"/> <result column="create_user" property="createUser"/> <result column="update_user" property="updateUser"/> </resultMap> - <select id="selectAuxiliaryOutputWorkingHours" resultType="com.yuanchu.mom.dto.AuxiliaryOutputWorkingHoursDto"> + <select id="selectAuxiliaryOutputWorkingHours" resultMap="BaseResultMap"> select * from ( select aowh.id, @@ -56,7 +57,7 @@ ${ew.customSqlSegment} </if> </select> - <select id="selectDataByUser" resultType="com.yuanchu.mom.dto.AuxiliaryOutputWorkingHoursDto"> + <select id="selectDataByUser" resultMap="BaseResultMap"> select aowh.*,name FROM auxiliary_output_working_hours aowh left join user on user.id=aowh.`check` -- Gitblit v1.9.3