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.
21 lines
429 B
21 lines
429 B
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Basedata.Domain;
|
|
|
|
public class ErpLocationItem : SfsBaseDataAggregateRootBase
|
|
{
|
|
/// <summary>
|
|
/// 物料代码
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public string ItemCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 储位代码
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public string ErpLocationCode { get; set; }
|
|
|
|
|
|
}
|
|
|