package org.jeecg.modules.mes.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.jeecg.modules.mes.entity.MesTransferOrderPrint; import org.jeecg.modules.mes.mapper.MesTransferOrderPrintMapper; import org.jeecg.modules.mes.service.IMesTransferOrderPrintService; import org.springframework.stereotype.Service; import java.util.List; /** * @Description: 移库单打印 * @Author: jeecg-boot * @Date: 2025-07-04 * @Version: V1.0 */ @Service public class MesTransferOrderPrintServiceImpl extends ServiceImpl implements IMesTransferOrderPrintService { @Override public List queryOrderPrintByOrderId(String orderId) { return baseMapper.queryOrderPrintByOrderId(orderId); } }