From 54c480e3632fbc6fc821786e2b473bceb2f0ae4e Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期六, 22 三月 2025 15:35:29 +0800
Subject: [PATCH] 天线的电路总报告保留两位小数
---
cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java b/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java
index f69873e..a22e625 100644
--- a/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java
+++ b/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java
@@ -65,7 +65,7 @@
@PostMapping("exportOfValueTraceabilityPlan")
public void exportOfValueTraceabilityPlan(String instrumentName, String managementNumber,
HttpServletResponse response) throws Exception {
- IPage<FeCalibrationSchedule> data = feCalibrationScheduleService.page(new Page<>(1, -1),instrumentName, managementNumber);
+ IPage<FeCalibrationSchedule> data = feCalibrationScheduleService.page(new Page<>(-1, -1),instrumentName, managementNumber);
List<FeCalibrationScheduleExport> studentList = JSONObject.parseArray(JSON.toJSONString(data.getRecords()), FeCalibrationScheduleExport.class);
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
response.setHeader("requestType", "excel");
@@ -79,8 +79,8 @@
.doWrite(studentList);
}
- @ValueClassify(value = "閲忓�兼函婧愯鍒掑鍏�")
- @ApiOperation(value = "importOfValueTraceabilityPlan")
+ @ValueClassify(value = "閲忓�兼函婧愯鍒�")
+ @ApiOperation(value = "閲忓�兼函婧愯鍒掑鍏�")
@PostMapping("/importOfValueTraceabilityPlan")
public void importOfValueTraceabilityPlan(MultipartFile file) throws IOException {
if (file.isEmpty()) {
--
Gitblit v1.9.3