using Model.ModelDto;
|
using Model.ModelVm;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace WMS.IBLL.IBllAsnServer
|
{
|
public interface IBllBoxInfoServer
|
{
|
List<BoxInfoDto> GetBoxInfoList(BoxInfoVm model, out int count);
|
|
string ImportBoxInfo(BoxInfoVms models);
|
string AddBoxInfo(BoxInfoVm model);
|
|
string DelBoxInfo(BoxInfoVm model);
|
|
/// <summary>
|
/// 根据箱码获取未组盘的箱码信息
|
/// </summary>
|
/// <param name="boxCode"></param>
|
/// <param name="isContinue"></param>
|
/// <param name="boxCode2"></param>
|
/// <returns></returns>
|
List<BoxInfoDto> GetBoxInfoList(string boxCode,string isContinue, string boxCode2);
|
|
}
|
}
|