namespace IRaCIS.Core.Domain.Models; [Table("Payment")] public partial class Payment : BaseFullAuditEntity { public Guid DoctorId { get; set; } public string YearMonth { get; set; } = string.Empty; public bool IsLock { get; set; } public DateTime YearMonthDate { get; set; } [DecimalPrecision(18, 2)] public decimal PaymentUSD { get; set; } [DecimalPrecision(18, 4)] public decimal PaymentCNY { get; set; } [DecimalPrecision(18, 2)] public decimal ExchangeRate { get; set; } [DecimalPrecision(18, 4)] public decimal AdjustmentCNY { get; set; } [DecimalPrecision(18, 2)] public decimal AdjustmentUSD { get; set; } public DateTime CalculateTime { get; set; } = DateTime.Now; [StringLength(100)] public string CalculateUser { get; set; } = string.Empty; [StringLength(500)] public string Note { get; set; } = string.Empty; }