From c208c3ac325eee2d07b4e4f4af9a525e8511aee0 Mon Sep 17 00:00:00 2001
From: Fancy <Fancy.fx@outlook.com>
Date: 星期二, 07 一月 2025 09:35:06 +0800
Subject: [PATCH] top10 error
---
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoSta/StaDeviceProductionLogMapper.java | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoSta/StaDeviceProductionLogMapper.java b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoSta/StaDeviceProductionLogMapper.java
index 85f636e..9f0ef29 100644
--- a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoSta/StaDeviceProductionLogMapper.java
+++ b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoSta/StaDeviceProductionLogMapper.java
@@ -1,7 +1,12 @@
package com.dy.pmsGlobal.daoSta;
+import cn.hutool.json.JSONObject;
import com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog;
import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.Date;
+import java.util.List;
/**
* @author User
@@ -20,8 +25,13 @@
StaDeviceProductionLog selectByPrimaryKey(Long id);
+ List<StaDeviceProductionLog> selectByDeviceNo(String deviceNo);
+
+ List<StaDeviceProductionLog> selectProductLog(@Param("deviceNo") String deviceNo,@Param("startTime") Date startTime,@Param("endTime") Date endTime);
+
int updateByPrimaryKeySelective(StaDeviceProductionLog record);
int updateByPrimaryKey(StaDeviceProductionLog record);
+ List<JSONObject> queryTopError();
}
--
Gitblit v1.8.0