| | |
| | | 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 CollectTime ${columns} from [${tableName}] where CollectTime > #{startTime} and CollectTime <= #{endTime} order by CollectTime asc") |
| | | List<Map<String, Object>> getWorkLineList(Map<String, Object> param); |
| | | |
| | | @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); |
| | | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | List<MdcEquipmentDto> findProductCountStartTime(@Param("tableName") String saveTableName, @Param("productCount") String productCount); |
| | | } |