|
@ -1,4 +1,5 @@ |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
|
using Win_in.Sfs.Shared.Application.Contracts; |
|
|
using Win_in.Sfs.Shared.Domain.Shared; |
|
|
using Win_in.Sfs.Shared.Domain.Shared; |
|
|
|
|
|
|
|
|
namespace Win_in.Sfs.Wms.Store.Application.Contracts; |
|
|
namespace Win_in.Sfs.Wms.Store.Application.Contracts; |
|
@ -10,8 +11,11 @@ public class MaterialRequestImportInput : SfsStoreImportInputBase |
|
|
/// 叫料类型
|
|
|
/// 叫料类型
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "叫料类型")] |
|
|
[Display(Name = "叫料类型")] |
|
|
[Required] |
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
public EnumMaterialRequestType Type { get; set; } |
|
|
[ImporterHeader(Name = "叫料类型")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "叫料类型")] |
|
|
|
|
|
[ValueMapping("人工拉动", EnumMaterialRequestType.Issue_Manual)] |
|
|
|
|
|
public string Type { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 物品代码
|
|
|
/// 物品代码
|
|
|