肖洋
2025-01-09 1164314b1f0183dadf760171e5a494eda53a1c95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_DTO;
 
namespace WIDESEA_IStoragIntegrationServices;
 
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);
}