17 lines
443 B
C#
17 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Web.Core.Dto.JuShuiTan;
|
|
using WMS.Web.Core.Internal.Results;
|
|
|
|
namespace WMS.Web.Domain.IService.Public
|
|
{
|
|
public interface IJuShuiTanService
|
|
{
|
|
Task GetTest();
|
|
Task<Result<List<JuShuiTanStockResponse>>> GetStock();
|
|
Task<Result<List<JuShuiTanInventoryResponse>>> GetInventory(List<int> StockId);
|
|
}
|
|
}
|