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>
|
Task<bool> AddPallets(int groupCount,int userId);
|
}
|
}
|