using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using iWare.Wms.Core;
|
|
namespace iWare.Wms.Application {
|
/// <summary>
|
/// 出库执行查询参数
|
/// </summary>
|
public class WorkPieceByOP80NewCodeInputSearch
|
{
|
|
/// <summary>
|
/// 工件OP80码
|
/// </summary>
|
public string OP80NewCode { get; set; }
|
}
|
|
/// <summary>
|
/// 出库执行输入参数
|
/// </summary>
|
public class OutBoundInput
|
{
|
|
/// <summary>
|
/// 工件数据
|
/// </summary>
|
public List<WorkPieceInfoOutput> WorkPieceInfoLst { get; set; }
|
/// <summary>
|
/// 密码
|
/// </summary>
|
public string Password { get; set; }
|
|
}
|
|
|
}
|