From 10613f0fe047752f23d83a567d46dca609b04447 Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期五, 20 六月 2025 17:29:19 +0800 Subject: [PATCH] 模板导出和标准化修改 --- src/main/java/com/whyc/service/BatttestdataInfService.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/service/BatttestdataInfService.java b/src/main/java/com/whyc/service/BatttestdataInfService.java index e288db4..f763f91 100644 --- a/src/main/java/com/whyc/service/BatttestdataInfService.java +++ b/src/main/java/com/whyc/service/BatttestdataInfService.java @@ -1005,4 +1005,12 @@ wrapper.last(" limit 1"); return mapper.selectOne(wrapper); } + //鍘嗗彶娴嬭瘯鏁版嵁瀵煎嚭 + public BatttestdataInf exportTinfDataByTestRecordCount(Integer battgroupId, Integer testRecordCount) { + QueryWrapper wrapper =new QueryWrapper(); + wrapper.eq("battgroup_id",battgroupId); + wrapper.eq("test_record_count",testRecordCount); + wrapper.last(" limit 1"); + return mapper.selectOne(wrapper); + } } \ No newline at end of file -- Gitblit v1.9.1