using JiepeiWMS.IRepository.Base;
|
using JiepeiWMS.Model.Models;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.IRepository
|
{
|
/// <summary>
|
/// IWMInInventoryRepository
|
/// </summary>
|
public interface IWMInInventoryRepository : IBaseRepository<WMInInventory>
|
{
|
/// <summary>
|
/// 获取入库单最大的Id
|
/// </summary>
|
/// <returns></returns>
|
Task<int> GetInInventoryMaxId();
|
}
|
}
|