26 lines
734 B
C#
26 lines
734 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace Erp.Platform.Entities;
|
|
|
|
public class Uom : FullAuditedEntity<Guid>, IMultiTenant
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
public Guid UomCategoryId { get; set; }
|
|
public UomCategory UomCategory { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public string Type { get; set; }
|
|
public decimal Ratio { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public decimal Rounding { get; set; }
|
|
|
|
Guid? IMultiTenant.TenantId => TenantId;
|
|
|
|
public ICollection<Material> Materials { get; set; }
|
|
public ICollection<MaterialSpecification> MaterialSpecifications { get; set; }
|
|
}
|
|
|
|
|