Fancy
2025-01-14 d25b0270e0bb9266ed92c7c74ee1cb8fb24aa51a
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);
}