using System.ComponentModel.DataAnnotations;
using Win_in.Sfs.Shared.Domain;
using Win_in.Sfs.Shared.Domain.Entities;
namespace Win_in.Sfs.Basedata.Domain;
///
/// 位置码
///
public class PositionCode : SfsBaseDataAggregateRootBase, IHasCode
{
///
/// 位置代码
///
[Display(Name = "位置代码")]
[IgnoreUpdate]
public string Code { get; set; }
///
/// 物料号
///
[Display(Name = "物料号")]
public string PartCode { get; set; }
///
/// 标包数量
///
[Display(Name = "标包数量")]
public decimal StdPackQty { get; set; }
///
/// 库位
///
[Display(Name = "库位")]
public string LocationCode { get; set; }
}