bklLiudl
2025-04-02 1bbbbc8bb49411b544626996a1370788142300e0
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
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Model.ModelDto.SysDto;
using WMS.Entity.SysEntity;
 
namespace WMS.IBLL.ISysServer
{
    public interface IPalletsServer
    {
        //查询、添加、查看单条使用记录时间线、补打
 
        /// <summary>
        /// 查询托盘表信息
        /// </summary>
        /// <param name="palletNo">托盘码</param>
        /// <param name="status">状态 0未使用 1使用中</param>
        /// <param name="page"></param>
        /// <param name="limit"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        List<PalletsDto> GetPalletsList(string palletNo,string status, int page, int limit,out int count);
        /// <summary>
        ///  获取托盘条码信息
        /// </summary>
        /// <param name="palletNo">条码</param>
        /// <returns></returns>
        string GetPalletsNo(string palletNo);
        /// <summary>
        /// 添加桶信息并增加库存
        /// </summary>
        /// <param name="groupCount">组数</param>
        /// <param name="userId">操作人</param>
        /// <returns></returns>
        void AddPallets(string palletNo, string locatNo,string deviceCode, int userId);
    }
}