新火炬后端单体项目初始化代码
zhangherong
6 天以前 0bbd986930e4b41e0741fd07c4287208da398330
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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);
}