dengjunjie
2025-04-19 9e579eda4601ed7b492b9d19a24e8146f6ebdf8d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseServices;
using WIDESEA_DTO.Inbound;
using WIDESEA_IInboundRepository;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IInboundService
{
    public interface IInboundOrderService : IService<Dt_InboundOrder>
    {
        IInboundOrderRepository Repository { get; }
        bool UpdateDataWithDetail(Dt_InboundOrder inboundOrder);
        Dt_InboundOrder GetInboundOrder(string inboundOrderNo);
 
        WebResponseContent AddInboundOrder(InboundOrderAddDTO orderAddDTO);
 
        WebResponseContent MaterielGroup(MaterielGroupDTO materielGroupDTO);
        WebResponseContent PdaAddStockInfo(PdaMaterielGroupDTO materielGroupDTO);
        WebResponseContent QueryOrderInfo(int pageNo, string orderNo);
        WebResponseContent PdaAddEmptyStockInfo(string barcode, string station);
    }
}