using System.ComponentModel.DataAnnotations;
using Win_in.Sfs.Shared.Domain.Shared;
namespace Win_in.Sfs.Wms.DataExchange.WMS.InjectionIssueRequest;
public class InjectionIssueRequestDetailExchangeDto
{
///
/// 目标ERP储位
///
[Display(Name = "目标储位")]
public string ToLocationCode { get; set; }
///
/// 数量
///
[Display(Name = "数量")]
public decimal Qty { get; set; }
///
/// 需求箱数量
///
[Display(Name = "需求箱数量")]
public decimal BoxQty { get; set; }
///
/// 物品代码
///
[Display(Name = "物品代码")]
public string ItemCode { get; set; }
///
/// 推荐类型
///
public EnumRecommendType RecommendType { get; set; }
}