using CMS.Plugin.HIAWms.Domain.Shared.WmsStores;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using Volo.Abp;
using Volo.Abp.Domain.Entities.Auditing;
namespace CMS.Plugin.HIAWms.Domain.WmsStores
{
///
/// WmsStore
///
public class WmsStore : FullAuditedAggregateRoot
{
///
/// 仓库代码
///
public string? StoreCode { get; set; }
///
/// 仓库名称
///
public string? StoreName { get; set; }
///
/// 冗余字段1 - 预留扩展用途
///
public string RedundantField1 { get; set; }
///
/// 冗余字段2 - 预留扩展用途
///
public string RedundantField2 { get; set; }
///
/// 冗余字段3 - 预留扩展用途
///
public string RedundantField3 { get; set; }
///
/// 备注.
///
public string? Remark { get; set; }
///
/// 排序
///
public virtual int Sort { get; set; }
///
/// 是否禁用
///
public virtual bool? IsDisabled { get; set; }
///
/// Adjusts the sort.
///
/// The sort.
public void AdjustSort(int sort)
{
Sort = sort;
}
}
}