| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.EquipmentMachingDto; |
| | | import org.jeecg.modules.mdc.entity.MdcTorqueConfig; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public interface MdcTorqueConfigMapper extends BaseMapper<MdcTorqueConfig> { |
| | | |
| | | /** |
| | | * 根据扭矩值和设备编号生成主轴运行曲线 |
| | | * @param torqueValue |
| | | * @return |
| | | */ |
| | | List<MdcTorqueConfig> findSpindleRunningCurve(@Param("torqueValue") float torqueValue, @Param("equipmentId") String equipmentId); |
| | | |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param pageData |
| | | * @param mdcTorqueConfig |
| | |
| | | IPage<MdcTorqueConfig> pageList(IPage<MdcTorqueConfig> pageData, @Param("mdcTorqueConfig") MdcTorqueConfig mdcTorqueConfig); |
| | | |
| | | MdcTorqueConfig findLast(@Param("equipmentId") String equipmentId); |
| | | |
| | | List<EquipmentMachingDto> getWorkLineList(@Param("equipmentId") String equipmentId, @Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | } |