| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.dto.MachineXYZHistoryDto; |
| | | import org.jeecg.modules.mdc.entity.EquipmentXYZ; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author: LiuS |
| | |
| | | */ |
| | | public interface IEquipmentXYZService extends IService<EquipmentXYZ> { |
| | | EquipmentXYZ getByEquipmentId(String equipmentId); |
| | | |
| | | EquipmentXYZ findByEquipmentId(String equipmentId); |
| | | |
| | | MachineXYZHistoryDto getNearAxisType(String equipmentId, Date startDate, Date endDate, Date nearDate); |
| | | } |