You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
821 B
34 lines
821 B
using System.ComponentModel.DataAnnotations;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Basedata.Domain;
|
|
|
|
/// <summary>
|
|
/// 位置码
|
|
/// </summary>
|
|
public class PositionCode : SfsBaseDataAggregateRootBase, IHasCode
|
|
{
|
|
/// <summary>
|
|
/// 位置代码
|
|
/// </summary>
|
|
[Display(Name = "位置代码")]
|
|
[IgnoreUpdate]
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 物料号
|
|
/// </summary>
|
|
[Display(Name = "物料号")]
|
|
public string PartCode { get; set; }
|
|
/// <summary>
|
|
/// 标包数量
|
|
/// </summary>
|
|
[Display(Name = "标包数量")]
|
|
public decimal StdPackQty { get; set; }
|
|
/// <summary>
|
|
/// 库位
|
|
/// </summary>
|
|
[Display(Name = "库位")]
|
|
public string LocationCode { get; set; }
|
|
|
|
}
|
|
|