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 reportOrders(ReportParams params);
|
}
|