5 changed files with 150 additions and 3 deletions
-
77ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSSubmitService.cs
-
52ICSSoft.WMS.WebAPI/ICSSoft.Entity/ForkLiftCallBackModel.cs
-
21ICSSoft.WMS.WebAPI/ICSSoft.Entity/ForkLiftResult.cs
-
1ICSSoft.WMS.WebAPI/ICSSoft.WMS.WebAPI/Controllers/WMSBarCoreController.cs
-
2WMS-BS/NFine.Application/WMS/ICSToSAPApp .cs
@ -0,0 +1,52 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
|
|||
namespace ICSSoft.Entity |
|||
{ |
|||
public class ForkLiftCallBackModel |
|||
{ |
|||
/// <summary>
|
|||
///叉车编号
|
|||
/// </summary>
|
|||
public string ForkliftCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 仓库编号
|
|||
/// </summary>
|
|||
public string WareCode { get; set; } |
|||
/// <summary>
|
|||
/// 巷道
|
|||
/// </summary>
|
|||
public string LaneCode { get; set; } |
|||
/// <summary>
|
|||
/// 任务编号
|
|||
/// </summary>
|
|||
public string TaskID { get; set; } |
|||
/// <summary>
|
|||
/// 任务类型【PTWY上架,RETN返仓,INTL移库,PICK出库,INVE盘点】
|
|||
/// </summary>
|
|||
public string TaskType { get; set; } |
|||
/// <summary>
|
|||
/// 托盘号
|
|||
/// </summary>
|
|||
public string PalletID { get; set; } |
|||
/// <summary>
|
|||
/// 源地址
|
|||
/// </summary>
|
|||
public string SourceBin { get; set; } |
|||
/// <summary>
|
|||
/// 目标地址
|
|||
/// </summary>
|
|||
public string DestBin { get; set; } |
|||
/// <summary>
|
|||
/// 任务下发时间
|
|||
/// </summary>
|
|||
public DateTime DownTime { get; set; } |
|||
/// <summary>
|
|||
/// 任务状态
|
|||
/// </summary>
|
|||
public string Status { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,21 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
|
|||
namespace ICSSoft.Entity |
|||
{ |
|||
public class ForkLiftResult |
|||
{ |
|||
/// <summary>
|
|||
/// 结果编码(0:成功)
|
|||
/// </summary>
|
|||
public int Ret { get; set; } |
|||
/// <summary>
|
|||
/// 返回信息
|
|||
/// </summary>
|
|||
public string RetMsg { get; set; } |
|||
} |
|||
|
|||
|
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue