CostCalculationItem/IRaCIS.Core.Domain/Financial/RankPrice.cs

30 lines
1.1 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("RankPrice")]
public partial class RankPrice : Entity, IAuditUpdate, IAuditAdd
{
[StringLength(200)]
public string RankName { get; set; }
public decimal Timepoint { get; set; }
public decimal TimepointIn24H { get; set; }
public decimal TimepointIn48H { get; set; }
public decimal Adjudication { get; set; }
public decimal AdjudicationIn24H { get; set; }
public decimal AdjudicationIn48H { get; set; }
public decimal Global { get; set; }
public decimal Training { get; set; }
public decimal Downtime { get; set; }
public decimal RefresherTraining { get; set; }
public int ShowOrder { get; set; }
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; } = Guid.Empty;
public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; } = Guid.Empty;
}
}