From 15e31c6e6550f9e8bf6fb1df5ca5ad4cc726b64f Mon Sep 17 00:00:00 2001
From: XiaoRuby <3114200645@qq.com>
Date: 星期六, 26 八月 2023 13:30:13 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
inspection-server/src/main/resources/mapper/LinkBasicInformationMapper.xml | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/inspection-server/src/main/resources/mapper/LinkBasicInformationMapper.xml b/inspection-server/src/main/resources/mapper/LinkBasicInformationMapper.xml
index 456ca9e..3ce5aec 100644
--- a/inspection-server/src/main/resources/mapper/LinkBasicInformationMapper.xml
+++ b/inspection-server/src/main/resources/mapper/LinkBasicInformationMapper.xml
@@ -17,7 +17,7 @@
AND d.`sample_name` like concat('%', #{sampleName}, '%')
</if>
<if test="entrusted != null and entrusted != null">
- AND l.`contacts` like concat('%', #{entrusted}, '%')
+ AND l.`entrusted` like concat('%', #{entrusted}, '%')
</if>
<if test="inspectionStatus != null and inspectionStatus != null">
AND d.`inspection_status` = #{inspectionStatus}
@@ -25,19 +25,19 @@
</select>
<select id="selectLinkAll" resultType="java.util.Map">
- SELECT DATE_FORMAT(l.`inspection_time`,'%Y-%m-%d') formTime,
- l.`entrusted` supplier,
- d.`sample_number` mcode,
- d.`sample_name` name,
- d.`specifications_models` specifications,
+ SELECT DATE_FORMAT(l.`inspection_time`, '%Y-%m-%d') formTime,
+ l.`entrusted` supplier,
+ d.`sample_number` mcode,
+ d.`sample_name` name,
+ d.`specifications_models` specifications,
d.`unit`,
- d.`samples_number` num,
- DATE_FORMAT(date_survey,'%Y-%m-%d') startTime,
- DATE_FORMAT(completion_deadline,'%Y-%m-%d') endTime
+ d.`samples_number` num,
+ experiment,
+ DATE_FORMAT(date_survey, '%Y-%m-%d') startTime,
+ DATE_FORMAT(completion_deadline, '%Y-%m-%d') endTime
FROM lims_laboratory.link_basic_information l,
lims_laboratory.link_detection d
WHERE l.`id` = d.`link_basic_id`
AND l.`state` = 1
</select>
-
</mapper>
--
Gitblit v1.9.3