package org.jeecg.modules.mdc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.jeecg.modules.mdc.entity.MdcTorqueConfig; import org.jeecgframework.minidao.annotation.Param; import java.util.List; /** * @Description: 扭矩配置管理 * @Author: ym * @Date: 2023-06-29 */ @Mapper public interface MdcTorqueConfigMapper extends BaseMapper { /** * 根据扭矩值和设备编号生成主轴运行曲线 * @param torqueValue * @return */ List findSpindleRunningCurve(@Param("torqueValue") float torqueValue,@Param("equipmentId") String equipmentId); }