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.
30 lines
731 B
30 lines
731 B
using System.ComponentModel.DataAnnotations;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Entities;
|
|
using Win_in.Sfs.Shared.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Basedata.Domain;
|
|
/// <summary>
|
|
/// 工位 库位 关系
|
|
/// </summary>
|
|
public class PostionLocation : SfsBaseDataAggregateRootBase, IHasCode, IHasName
|
|
{
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
[Display(Name = "工位代码")]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[Display(Name = "名称")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// WMS库位
|
|
/// </summary>
|
|
[Display(Name ="库位")]
|
|
public string LocationCode { get; set; }
|
|
}
|
|
|