|
|
@ -12,18 +12,24 @@ namespace Win_in.Sfs.Basedata.Application.Contracts; |
|
|
|
[Display(Name = "生产线")] |
|
|
|
public class ProductionLineDTO : SfsBaseDataDTOBase, IHasCode, IHasName |
|
|
|
{ |
|
|
|
[Display(Name = "编码")] [IgnoreUpdate] public string Code { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 代码
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "代码")] |
|
|
|
[Key] |
|
|
|
[IgnoreUpdate] |
|
|
|
public string Code { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 名称
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "编码")] |
|
|
|
[Display(Name = "名称")] |
|
|
|
public string Name { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "编码")] |
|
|
|
[Display(Name = "描述")] |
|
|
|
public string Description { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -34,18 +40,18 @@ public class ProductionLineDTO : SfsBaseDataDTOBase, IHasCode, IHasName |
|
|
|
/// <summary>
|
|
|
|
/// 原料库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原料库位集合")] |
|
|
|
public List<string> RawLocationCodeList { get; set; } |
|
|
|
[Display(Name = "原料库位Json集合")] |
|
|
|
public string RawLocationCodeListJson { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 成品库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "完工库位集合")] |
|
|
|
public List<string> ProductLocationCodeList { get; set; } |
|
|
|
[Display(Name = "完工库位Json集合")] |
|
|
|
public string ProductLocationCodeListJson { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 线边库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "线边库位集合")] |
|
|
|
public List<string> WipLocationCodeList { get; set; } |
|
|
|
[Display(Name = "线边库位Json集合")] |
|
|
|
public string WipLocationCodeListJson { get; set; } |
|
|
|
} |
|
|
|