| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.mdc.dto.EquipmentMachingDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentDto; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | @Select("SELECT COUNT(*) FROM SysObjects WHERE XType='U' AND name = '${tableName}'") |
| | | Integer isTableExist(@Param("tableName") String tableName); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | List<Map<String, Object>> 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); |
| | | } |