23 lines
493 B
C#
23 lines
493 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Entities;
|
|||
|
|
|
|||
|
|
public class Uom : FullAuditedEntity<string>
|
|||
|
|
{
|
|||
|
|
public string 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; }
|
|||
|
|
|
|||
|
|
public Uom(string id)
|
|||
|
|
{
|
|||
|
|
Id = id;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|