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

17 lines
494 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("ExchangeRate")]
public class ExchangeRate : Entity, IAuditUpdate, IAuditAdd
{
public string YearMonth { get; set; }
public decimal Rate { get; set; }
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public Guid CreateUserId { get; set; }
public DateTime CreateTime { get; set; }
}
}