qinchulong
2024-10-12 b17d60113095491a95557f6f785cb1c0e744e8cc
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
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_Model.Models;
 
namespace WIDESEA_IBusinessServices
{
    public interface IDt_BillGroupStockService : IService<Dt_BillGroupStock>
    {
        /// <summary>
        /// PDA组盘确认,绑定托盘码和物料码,记录组盘信息,保存到:主表 Dt_BillGroupStock,明细表 Dt_BillGroupStockDetail
        /// </summary>
        /// <param name="dt_BillGroupStock">组盘信息</param>
        /// <returns></returns>
        WebResponseContent PDAGroupPlateConfirm(Dt_BillGroupStock dt_BillGroupStock);
 
 
        /// <summary>
        /// PDA组盘撤销确认,解绑托盘码和物料码
        /// </summary>
        /// <param name="plateCode">托盘号</param>
        /// <returns></returns>
        WebResponseContent PDAGroupPlateRevoke(string plateCode);
    }
}