| | |
| | | import org.springblade.mdm.machinefile.vo.MachineFileQueryVO; |
| | | import org.springblade.mdm.machinefile.vo.MachineBackFileQueryVO; |
| | | import org.springblade.mdm.program.vo.CompareDataVO; |
| | | import org.springblade.mdm.statreport.vo.MachineFileExceptionQueryVO; |
| | | import org.springblade.mdm.utils.FileContentUtil; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | |
| | | public void deleteById(Long id) { |
| | | baseMapper.deleteById(id); |
| | | } |
| | | |
| | | /** |
| | | * 异常文件记录查询 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | @Transactional(readOnly = true) |
| | | public IPage<MachineFile> exceptionFilePageQuery(MachineFileExceptionQueryVO query) { |
| | | return baseMapper.exceptionFilePageQuery(Condition.getPage(query),query); |
| | | } |
| | | } |