using MailKit; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.Enums; using WIDESEA_StorageBasicRepository; namespace WIDESEA_StoragIntegrationServices { public partial class WCSService { public WebResponseContent ManualOutboundTask(string barcode, string targetAddress) { WebResponseContent content = new WebResponseContent(); try { return content.OK(); } catch (Exception ex) { return content.Error($"指定出库异常{ex.Message}"); } } } }