| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | |
| | | StaDeviceProductionLog selectByPrimaryKey(Long id); |
| | | |
| | | List<StaDeviceProductionLog> selectByEquipNo(String equipNo); |
| | | 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(); |
| | | } |