erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/SupplyChain/MaterialSpecification.cs

21 lines
586 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
// Domain/Entities/MmMaterialSpecification.cs
2025-11-06 20:29:14 +00:00
using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Entities;
2025-11-06 20:29:14 +00:00
public class MaterialSpecification : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public Guid MaterialId { get; set; }
public Material Material { get; set; }
public string SpecificationName { get; set; }
public string SpecificationValue { get; set; }
public Guid UnitId { get; set; }
public Uom Unit { get; set; }
public bool IsRequired { get; set; }
}
2025-11-11 19:49:52 +00:00