skyouc
1 天以前 e918d4fa4f5065b51be706f21da6793c378c9aaf
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.vincent.rsf.server.api.service;
 
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.api.controller.erp.params.BaseMatParms;
import com.vincent.rsf.server.api.controller.erp.params.OrderParams;
import com.vincent.rsf.server.api.controller.erp.params.QueryOrderParam;
import com.vincent.rsf.server.common.domain.BaseParam;
import com.vincent.rsf.server.common.domain.PageParam;
import com.vincent.rsf.server.manager.entity.Loc;
 
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);
 
    /**
     * @author Ryan
     * @date 2025/8/15
     * @description: 同步基础物料信息
     * @version 1.0
     */
    void syncMatnrs(List<BaseMatParms> matnrs);
 
    /**
     * @author Ryan
     * @date 2025/8/15
     * @description: 订单信息查询
     * @version 1.0
     */
    R queryOrderStatus(QueryOrderParam queryParams);
 
    /**
     * @author Ryan
     * @date 2025/8/15
     * @description: 库位明细同步
     * @version 1.0
     */
    R syncLocsDetl(PageParam<Loc, BaseParam> pageParam, QueryWrapper<Loc> wrapper);
}