From ebae0c1137ba96d38e5b2323577129d2c9ff2e6e Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期四, 22 五月 2025 09:45:59 +0800
Subject: [PATCH] 1、优化配置文件; 2、优化ID生成器代码; 3、修改注释; 4、修改权限初始化时算法; 5、导出Excel文件功能归为一个新类; 6、工站数据库存入验空修改;
---
pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/deviceReport/DeviceReportSv.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/deviceReport/DeviceReportSv.java b/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/deviceReport/DeviceReportSv.java
index 91fcdc9..177494d 100644
--- a/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/deviceReport/DeviceReportSv.java
+++ b/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/deviceReport/DeviceReportSv.java
@@ -56,13 +56,13 @@
Map<String, Object> deviceInfo =new HashMap<>();
deviceInfo.put("deviceInfo", deviceLast);
//鏌ヨ璁惧鏃ュ織
- List<StaDeviceProductionLog> log = deviceProductionLogDao.selectByEquipNo(deviceNo);
+ List<StaDeviceProductionLog> log = deviceProductionLogDao.selectByDeviceNo(deviceNo);
deviceInfo.put("deviceLog", log);
// 鏌ヨ璁惧鐢熷懡鍛ㄦ湡
- List<StaDeviceLife> deviceLife = deviceLifeDao.selectByEquipNo(deviceNo);
+ List<StaDeviceLife> deviceLife = deviceLifeDao.selectByDeviceNo(deviceNo);
deviceInfo.put("deviceLife", deviceLife);
// 鏌ヨ璁惧缁翠慨淇℃伅
- List<StaRepairInfo> repairInfo = repairInfoDao.selectByEquipNo(deviceNo);
+ List<StaRepairInfo> repairInfo = repairInfoDao.selectByDeviceNo(deviceNo);
deviceInfo.put("deviceRepair", repairInfo);
// 鏌ヨ璁惧闄勪欢淇℃伅
List<StaWipSnEx> wipSnEx = wipSnExDao.selectByDeviceNo(deviceNo);
--
Gitblit v1.8.0