| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.MachineXYZHistoryDto; |
| | | import org.jeecg.modules.mdc.entity.EquipmentXYZ; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author: LiuS |
| | |
| | | public interface EquipmentXYZMapper extends BaseMapper<EquipmentXYZ> { |
| | | |
| | | EquipmentXYZ findByEquipmentId(@Param("equipmentId") String equipmentId); |
| | | |
| | | MachineXYZHistoryDto getNearAxisType(@Param("equipmentId") String equipmentId, @Param("startDate") Date startDate, @Param("endDate") Date endDate, @Param("nearDate") Date nearDate); |
| | | } |