| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.mdc.dto.CurrentElectricDto; |
| | | import org.jeecg.modules.mdc.dto.EquipmentMachingDto; |
| | | import org.jeecg.modules.mdc.dto.EquipmentMachiningHistoryDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentDto; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | Map<String, Object> getDataList(@Param("tableName") String saveTableName); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | Date getMinDate(@Param("tableName") String saveTableName); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | CurrentElectricDto getMaxElectric(@Param("tableName") String saveTableName, @Param("axisType") Integer axisType, @Param("startDate") Date startDate, @Param("endDate") Date endDate); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | EquipmentMachiningHistoryDto getNearTimeSpindleLoad(@Param("tableName") String tableName, @Param("startDate")Date startDate, @Param("endDate")Date endDate, @Param("nearDate")Date nearDate); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | EquipmentMachiningHistoryDto getMaxSpindleLoad(@Param("tableName") String tableName, @Param("startDate")Date startDate, @Param("endDate")Date endDate); |
| | | } |