| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.jeecg.modules.mdc.dto.MachineXYZHistoryDto; |
| | | import org.jeecg.modules.mdc.entity.EquipmentXYZ; |
| | | import org.jeecg.modules.mdc.mapper.EquipmentXYZMapper; |
| | | import org.jeecg.modules.mdc.service.IEquipmentXYZService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author: LiuS |
| | |
| | | public EquipmentXYZ findByEquipmentId(String equipmentId) { |
| | | return this.baseMapper.findByEquipmentId(equipmentId); |
| | | } |
| | | |
| | | @Override |
| | | public MachineXYZHistoryDto getNearAxisType(String equipmentId, Date startDate, Date endDate, Date nearDate) { |
| | | return this.baseMapper.getNearAxisType(equipmentId, startDate, endDate, nearDate); |
| | | } |
| | | } |