pan
2025-11-22 0b84af0415c00bdc82d537f0408cb974e7d31586
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_IBasicService/IInvokeMESService.cs
@@ -4,6 +4,7 @@
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_DTO.Allocate;
using WIDESEA_DTO.Basic;
using WIDESEA_DTO.Inbound;
using WIDESEA_DTO.Outbound;
@@ -12,12 +13,15 @@
{
    public interface IInvokeMESService : IDependency
    {
        Task FeedbackInbound(string url, FeedbackInboundRequestModel model);
        Task<ResponseModel> FeedbackInbound(FeedbackInboundRequestModel model);
        Task FeedbackOutbound(string url, FeedbackOutboundRequestModel model);
        Task<ResponseModel> FeedbackOutbound(FeedbackOutboundRequestModel model);
        Task<ResponseModel> FeedbackAllocate(AllocateDto model);
        Task<string> GetToken(String username, string password);
        Task<ResponseModel> NewMaterielToMes(MaterielToMesDTO model);
        Task<WebResponseContent> BatchOrderFeedbackToMes(List<string> orderNos, int inout);
    }
}