| | |
| | | public interface EquipmentWorklineMapper { |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | List<MdcEquipmentDto> getMacingDataList(@Param("tableName") String tableName); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | @Select("select Sequencenumber,CollectTime from [${tableName}] " + |
| | | " where CollectTime > #{startTime} and CollectTime <= #{endTime} and Sequencenumber is not null" + |
| | | " order by CollectTime desc ") |
| | |
| | | Integer isTableExist(@Param("tableName") String tableName); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | List<String> findRunningData(@Param("tableName") String saveTableName, @Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | List<EquipmentMachingDto> getEquipProgramNum(@Param("tableName") String saveTableName, @Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | MdcEquipmentDto findProductCountStartTime(@Param("tableName") String saveTableName, @Param("productCount") String productCount, @Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | MdcEquipmentDto findProductCountEndTime(@Param("tableName") String saveTableName, @Param("productCount") String productCount, @Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | Map<String, Object> getDataList(@Param("tableName") String saveTableName); |