package com.klp.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.klp.domain.WmsDeliveryPlanCoilOperate; import com.klp.domain.vo.WmsDeliveryPlanCoilOperateVo; import com.klp.common.core.mapper.BaseMapperPlus; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 发货计划钢卷操作记录Mapper接口 * * @author klp * @date 2025-12-17 */ public interface WmsDeliveryPlanCoilOperateMapper extends BaseMapperPlus { /** * 根据计划ID和钢卷ID数组获取每个钢卷的最新操作记录 * * @param planId 计划ID * @param coilIds 钢卷ID数组 * @return 操作记录列表 */ List getCoilOperate( @Param("planId") Long planId, @Param("coilIds") String[] coilIds ); Page selectVoPagePlus(Page build,@Param("ew") QueryWrapper lqw); }