1
xiazhengtongxue
2026-02-07 4f2fb79143f0545e96f114c92e1da733b2d9716a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
    }
}