using JiepeiWMS.IServices.BASE;
|
using JiepeiWMS.Model.Models;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.IServices
|
{
|
/// <summary>
|
/// IWMOrderInfoServices
|
/// </summary>
|
public interface IWMOrderInfoServices : IBaseServices<WMOrderInfo>
|
{
|
/// <summary>
|
/// 验证子订单信息非空字段
|
/// </summary>
|
/// <param name="orderInfoModel"></param>
|
/// <returns></returns>
|
Task<string> ValidateReconParams(WMOrderInfo orderInfoModel);
|
}
|
}
|