dengjunjie
2025-10-25 d5051e5293179c99df2e3489ad5f2f73f4061667
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
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_DTO.SquareCabin;
using WIDESEA_Model.Models;
using static WIDESEA_DTO.SquareCabin.TowcsDto;
 
 
namespace WIDESEA_ISquareCabinServices
{
    public interface IInventoryServices : IService<Dt_Inventory>
    {
      /// <summary>
      /// 和上游同步该物料的批次数量
      /// </summary>
      /// <param name="goods_no">物料编码</param>
      /// <param name="batch_num">批次号</param>
      /// <returns></returns>
        public WebResponseContent GetInventoryList(string goods_no,string batch_num);
 
        //public WebResponseContent CreateAllocatInOut(Dt_MaterielInfo materielInfo);
 
 
        //public ApiResponse<Dt_Inventory> OrderFeedback(EdiOrderCallbackRequest request);
 
        public ApiResponse<Dt_InventoryInfo> OrderFeedback(EdiOrderCallbackRequest request);
    }
}