xxyy
2025-03-27 56f8789d960e0e84f50cdf6a425b3e3a401ba884
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStoragIntegrationServices/MOM/ProcessApply/IProcessApplyService.cs
@@ -11,4 +11,20 @@
public interface IProcessApplyService : IDependency
{
    Task<WebResponseContent> GetProcessApplyAsync(ProcessApplyDto input);
    /// <summary>
    /// 补录入库数据
    /// </summary>
    /// <param name="palletCode">托盘号</param>
    /// <param name="areaID">区域主键</param>
    /// <returns></returns>
    Task<WebResponseContent> StockInDataBackfillInterfaceAsync(string palletCode, int areaID);
    /// <summary>
    /// 补录出库数据
    /// </summary>
    /// <param name="palletCode">托盘号</param>
    /// <param name="areaID">区域主键</param>
    /// <returns></returns>
    Task<WebResponseContent> StockOutDataBackfillInterfaceAsync(string palletCode, int areaID);
}