using System.ComponentModel.DataAnnotations;
using Win_in.Sfs.Shared.Application.Contracts;
using Win_in.Sfs.Shared.Domain;
namespace Win_in.Sfs.Wms.DataExchange.WMS.UnplannedReceiptNote;
public class UnplannedReceiptNoteDetailExchangeDto
{
///
/// 单据号
///
[Display(Name = "单据号")]
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
public string Number { get; set; }
///
/// ERP料号
///
[Display(Name = "ERP料号")]
public string ItemCode { get; set; }
///
/// 来源ERP库位
///
[Display(Name = "来源ERP库位")]
public string FromLocationErpCode { get; set; }
///
/// 库位组
///
[Display(Name = "Erp库位")]
public string LocationErpCode { get; set; }
///
/// 数量
///
[Display(Name = "数量")]
public decimal Qty { get; set; }
///
/// 专案
///
[Display(Name = "专案")]
public string CaseCode { get; set; }
///
/// 项目分类
///
[Display(Name = "项目分类")]
public string ProjCapacityCode { get; set; }
}