skyouc
2025-07-22 8e49d745e457ed6754a5952fb9e06a30c9ff89a2
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
package com.vincent.rsf.server.api.service;
 
 
import com.vincent.rsf.server.api.controller.params.OrderParams;
import com.vincent.rsf.server.api.entity.dto.PoItemsDto;
 
import java.util.List;
 
/**
 * @author Ryan
 * @version 1.0
 * @title ErpApiService
 * @description
 * @create 2025/3/4 16:23
 */
public interface ReceiveMsgService {
 
    /**
     * 采购单同步
     * @param orders
     * @return
     */
    boolean syncPurchasee(List<OrderParams> orders);
 
}