Files
irc-netcore-api/IRaCIS.Core.Domain/Financial/ExchangeRate.cs
T
hang e9bb71f5c9
continuous-integration/drone/push Build is passing
同步数据库备注到实体
2024-09-20 22:45:48 +08:00

13 lines
280 B
C#

namespace IRaCIS.Core.Domain.Models;
[Comment("医生计费 - 汇率")]
[Table("ExchangeRate")]
public class ExchangeRate : BaseFullAuditEntity
{
public string YearMonth { get; set; } = string.Empty;
[DecimalPrecision(18, 2)]
public decimal Rate { get; set; }
}