zc
4 天以前 2db2c1328008ae399d8d7af56c9c6dc67a47bce8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.vincent.rsf.server.api.service;
 
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.api.controller.erp.params.ReportParams;
import com.vincent.rsf.server.api.entity.dto.PoItemsDto;
 
import java.util.List;
 
/**
 * @author Ryan
 * @version 1.0
 * @title ReportMsgService
 * @description
 * @create 2025/3/12 17:07
 */
public interface ReportMsgService {
 
    boolean reportInspectNotify(List<PoItemsDto> items);
 
    R uploadReportOrders(ReportParams params);
 
    R uploadCheckOrder(ReportParams params);
}