From 57391775d5f5ae8a93b308d0b261b2244eb7579a Mon Sep 17 00:00:00 2001
From: 刘小明 <liuxm_a@163.com>
Date: 星期四, 16 一月 2025 09:24:26 +0800
Subject: [PATCH] 追溯小程序:产品列表,产品详情接口
---
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..43f2229 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(@Param("startTime") Date startTime,@Param("endTime") Date endTime);
}
--
Gitblit v1.8.0