package org.jeecg.modules.mes.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.modules.mes.entity.MesProductionOrder;
|
import org.jeecg.modules.sap.dto.ProductionOrderDTO;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @Description: SAP生产订单
|
* @Author: jeecg-boot
|
* @Date: 2025-07-04
|
* @Version: V1.0
|
*/
|
public interface IMesProductionOrderService extends IService<MesProductionOrder> {
|
|
/**
|
* SAP同步数据保存
|
* @param productionOrderDTOList
|
* @return
|
*/
|
Map<String, MesProductionOrder> saveOrUpdateProductionOrder(List<ProductionOrderDTO> productionOrderDTOList);
|
|
/**
|
* 根据订单号查询
|
* @param orderCode
|
* @return
|
*/
|
MesProductionOrder getByOrderCode(String orderCode);
|
}
|