You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
645 B
C#
24 lines
645 B
C#
using System.Collections.Generic;
|
|
using SlnMesnac.Model.domain;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
/// <summary>
|
|
/// WMS出库记录反馈
|
|
/// </summary>
|
|
public interface IWmsTaskOutService
|
|
{
|
|
/// <summary>
|
|
/// 获取WMS出库记录
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<WmsTaskOut> GetWmsTaskOutList();
|
|
|
|
/// <summary>
|
|
/// 通过标签唯一编码获取出库记录,获取物料信息
|
|
/// </summary>
|
|
/// <param name="SerialNum"></param>
|
|
/// <returns></returns>
|
|
WmsTaskOut GetWmsTaskOutBySerialNum(string SerialNum);
|
|
}
|
|
} |