From ac4f0d8e61c545c74f287563765179696b51b856 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期四, 29 五月 2025 17:21:49 +0800 Subject: [PATCH] 增加排班删除功能 --- pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoSta/StaDeviceProductionLogMapper.java | 5 ++++- 1 files changed, 4 insertions(+), 1 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 872c532..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,9 @@ 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; @@ -25,10 +27,11 @@ List<StaDeviceProductionLog> selectByDeviceNo(String deviceNo); - List<StaDeviceProductionLog> selectProductLog(String deviceNo, Date startTime, Date endTime); + 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