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.
23 lines
728 B
23 lines
728 B
using Connected.Annotations;
|
|
using Connected.Data;
|
|
using Connected.Entities.Annotations;
|
|
using Connected.Entities.Consistency;
|
|
|
|
namespace Logistics.Types.Warehouses;
|
|
/// <inheritdoc cref="IWarehouse"/>
|
|
[Table(Schema = Domain.Code)]
|
|
internal sealed record Warehouse : ConsistentEntity<int>, IWarehouse
|
|
{
|
|
public const string EntityKey = $"{Domain.Code}.{nameof(Warehouse)}";
|
|
|
|
/// <inheritdoc cref="IWarehouse.Name"/>
|
|
[Ordinal(0), Length(128)]
|
|
public string Name { get; init; } = default!;
|
|
/// <inheritdoc cref="IWarehouse.Code"/>
|
|
[Ordinal(1), Length(32), Index(Unique = true)]
|
|
public string Code { get; init; } = default!;
|
|
/// <inheritdoc cref="IWarehouse.Status"/>
|
|
[Ordinal(2)]
|
|
public Status Status { get; init; }
|
|
}
|