Files
irc-netcore-api/IRaCIS.Core.Domain/Financial/PaymentDetail.cs
T
hang b90f5f2d85
continuous-integration/drone/push Build is passing
清理后端下载
2024-09-20 11:47:02 +08:00

41 lines
1.1 KiB
C#

namespace IRaCIS.Core.Domain.Models
{
[Table("PaymentDetail")]
public partial class PaymentDetail : BaseFullAuditEntity
{
public Guid PaymentId { get; set; }
public Guid DoctorId { get; set; }
public string YearMonth { get; set; } = string.Empty;
public Guid TrialId { get; set; }
[StringLength(50)]
public string TrialCode { get; set; } = string.Empty;
[StringLength(50)]
public string PaymentType { get; set; } = string.Empty;
public int Count { get; set; }
[DecimalPrecision(18, 2)]
public decimal BasePrice { get; set; }
[DecimalPrecision(18, 2)]
public decimal PersonalAdditional { get; set; }
[DecimalPrecision(18, 2)]
public decimal TrialAdditional { get; set; }
[DecimalPrecision(18, 2)]
public decimal ExchangeRate { get; set; }
[DecimalPrecision(18, 2)]
public decimal PaymentUSD { get; set; }
[DecimalPrecision(18, 4)]
public decimal PaymentCNY { get; set; }
public int ShowTypeOrder { get; set; }
public int ShowCodeOrder { get; set; }
}
}