From 36ccc814cb2499757a0cfd5525d5e8d0c2309b64 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期三, 27 十一月 2024 16:02:42 +0800 Subject: [PATCH] 企业微信的消息提醒的信息改成单号样品名+检验下单的模版保存,如果存在同名的情况,将原有的情况覆盖掉,并添加提示框+首页展示添加样品名称 --- cnas-server/src/main/resources/mapper/SealMapper.xml | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/cnas-server/src/main/resources/mapper/SealMapper.xml b/cnas-server/src/main/resources/mapper/SealMapper.xml index 0ae0d6e..3de2f6e 100644 --- a/cnas-server/src/main/resources/mapper/SealMapper.xml +++ b/cnas-server/src/main/resources/mapper/SealMapper.xml @@ -3,14 +3,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.yuanchu.mom.mapper.SealMapper"> - <select id="selectSeal" resultType="com.yuanchu.mom.mapper.SealMapper"> - select s.address,s.type,u.`name`,s.create_time - from seal s - LEFT JOIN `user` u - on s.create_user=u.id + <select id="selectSeal" resultType="com.yuanchu.mom.pojo.Seal"> + select s.id,s.lab_id,l.laboratory_name ,s.address, s.type as Type,s.create_time + from seal s LEFT JOIN laboratory l on s.lab_id=l.id <if test="ew.customSqlSegment != null and ew.customSqlSegment != ''"> ${ew.customSqlSegment} </if> - </select> + </select> + <select id="selectLaboratory" resultType="com.yuanchu.mom.pojo.Laboratory"> + SELECT * + from laboratory + WHERE id = #{labId} + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.3