package com.mes.rawglassdetails.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.mes.rawglassdetails.entity.RawGlassStorageDetails; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* Mapper 接口 *

* * @author wf * @since 2024-09-10 */ public interface RawGlassStorageDetailsMapper extends BaseMapper { /** * 按照吊装位和详情表状态查询空闲的吊装位 * * @param liftingStation * @param state * @return */ List listBySlotState(@Param("leftingStation") List liftingStation, @Param("state") List state); }