5 changed files with 44 additions and 127 deletions
@ -1,49 +1,29 @@ |
|||||
using System; |
|
||||
using System.ComponentModel; |
|
||||
using System.ComponentModel.DataAnnotations; |
using System.ComponentModel.DataAnnotations; |
||||
using Win_in.Sfs.Shared.Domain; |
using Win_in.Sfs.Shared.Domain; |
||||
|
|
||||
namespace Win_in.Sfs.Wms.Store.Domain; |
namespace Win_in.Sfs.Wms.Store.Domain; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 底盘信息
|
/// 底盘执行位置序列
|
||||
/// </summary>
|
/// </summary>
|
||||
[Display(Name = "底盘信息")] |
[Display(Name = "底盘执行位置序列")] |
||||
public class ChassisOperationSequence : SfsAggregateRootBase |
public class ChassisOperationSequence : SfsAggregateRootBase |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Wms编号
|
/// kitting执行序列号
|
||||
/// </summary>
|
/// </summary>
|
||||
[Display(Name = "Wms编号")] |
[Display(Name = "kitting执行序列号")] |
||||
public string Number { get; set; } |
public string KittingNumber { get; set; } |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 底盘号
|
/// kitting代码
|
||||
/// </summary>
|
/// </summary>
|
||||
[Display(Name = "底盘号")] |
[Display(Name = "kitting代码")] |
||||
public string ChassisOperationSequenceNumber { get; set; } |
public string KittingCode { get; set; } |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 描述
|
/// 底盘号
|
||||
/// </summary>
|
|
||||
[Display(Name = "描述")] |
|
||||
public string Description { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 底盘生产时间
|
|
||||
/// </summary>
|
|
||||
[Display(Name = "底盘生产时间")] |
|
||||
public DateTime ProduceDateTime { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 接收接口时间
|
|
||||
/// </summary>
|
|
||||
[Display(Name = "接收接口时间")] |
|
||||
public DateTime ReceiveInterfaceDateTime { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 执行位置排序列
|
|
||||
/// </summary>
|
/// </summary>
|
||||
[Display(Name = "执行位置排序列")] |
[Display(Name = "底盘号")] |
||||
public long SortNumber { get; set; } |
public string ChassisNumber { get; set; } |
||||
} |
} |
||||
|
Loading…
Reference in new issue