using WIDESEA_Core;
|
using WIDESEA_Core.BaseRepository;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_DTO.Task;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_IStockService
|
{
|
public interface IStockInfoService : IService<Dt_StockInfo>
|
{
|
IRepository<Dt_StockInfo> Repository { get; }
|
// 判断下发的托盘编号是否库存托盘编号有重复
|
bool IsContainerNoExist(string containerNo);
|
|
//WebResponseContent AddStockInfo(string PalletCode, int PalletType, int WarehouseId);
|
}
|
}
|