6 changed files with 231 additions and 7 deletions
-
112ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSSubmitService.cs
-
44ICSSoft.WMS.WebAPI/ICSSoft.Entity/ICSContainerBind.cs
-
24ICSSoft.WMS.WebAPI/ICSSoft.Entity/ICSContainerInfo.cs
-
19ICSSoft.WMS.WebAPI/ICSSoft.Entity/ICSLocationRecommend.cs
-
2ICSSoft.WMS.WebAPI/ICSSoft.Entity/ICSSoft.Entity.csproj
-
37ICSSoft.WMS.WebAPI/ICSSoft.WMS.WebAPI/Controllers/WMSBarCoreController.cs
@ -0,0 +1,44 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace ICSSoft.Entity |
||||
|
{ |
||||
|
public class ICSContainerBind |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
///容器编码
|
||||
|
/// </summary>
|
||||
|
public string ContainerCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 条码
|
||||
|
/// </summary>
|
||||
|
public string LotNo { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 操作人
|
||||
|
/// </summary>
|
||||
|
public string User { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 操作时间
|
||||
|
/// </summary>
|
||||
|
public string MTime { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 站点
|
||||
|
/// </summary>
|
||||
|
public string WorkPoint { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 操作类型(绑定/解绑)
|
||||
|
/// </summary>
|
||||
|
public string TransType { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 绑定类型(货柜/窄巷道叉车(料架)/窄巷道叉车(木托盘))
|
||||
|
/// </summary>
|
||||
|
public string ContainerType { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 推荐库位(窄巷道叉车(木托盘))
|
||||
|
/// </summary>
|
||||
|
public string LocationCode { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace ICSSoft.Entity |
||||
|
{ |
||||
|
public class ICSContainerInfo |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
///容器编码
|
||||
|
/// </summary>
|
||||
|
public string ContainerCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 站点
|
||||
|
/// </summary>
|
||||
|
public string WorkPoint { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 操作类型
|
||||
|
/// </summary>
|
||||
|
public string TransType { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace ICSSoft.Entity |
||||
|
{ |
||||
|
public class ICSLocationRecommend |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 是否超托
|
||||
|
/// </summary>
|
||||
|
public bool NeedMerge { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 站点
|
||||
|
/// </summary>
|
||||
|
public string WorkPoint { get; set; } |
||||
|
} |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue