From 804b2935156a5651805ddd1a9766047383e414cd Mon Sep 17 00:00:00 2001 From: Fixiaobai <fixiaobai@163.com> Date: 星期四, 10 八月 2023 17:55:03 +0800 Subject: [PATCH] 测试 --- laboratory-server/src/main/resources/mapper/MeteringPlanMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/laboratory-server/src/main/resources/mapper/MeteringPlanMapper.xml b/laboratory-server/src/main/resources/mapper/MeteringPlanMapper.xml index 8011603..ca6ab6b 100644 --- a/laboratory-server/src/main/resources/mapper/MeteringPlanMapper.xml +++ b/laboratory-server/src/main/resources/mapper/MeteringPlanMapper.xml @@ -2,4 +2,10 @@ <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.yuanchu.limslaboratory.mapper.MeteringPlanMapper"> + <select id="pagingQueryOfMeasurementLedger" resultType="map"> + SELECT i.`equipment_code`, i.`equipment_name`, i.`specifications_models`, m.`create_time`, m.`uncertainty`, + m.`end_date`, i.`term_validity`, i.`storage_place`, i.`conditions` + FROM instrument i, metrical_information m + WHERE i.`id` = m.`instrument_id` + </select> </mapper> -- Gitblit v1.9.3