37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("PaymentDetail")]
|
|
public partial class PaymentDetail : Entity, IAuditUpdate, IAuditAdd
|
|
{
|
|
public Guid PaymentId { get; set; }
|
|
public Guid DoctorId { get; set; }
|
|
public string YearMonth { get; set; }
|
|
public Guid TrialId { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TrialCode { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PaymentType { get; set; }
|
|
public decimal Count { get; set; }
|
|
public decimal BasePrice { get; set; }
|
|
public decimal PersonalAdditional { get; set; }
|
|
public decimal TrialAdditional { get; set; }
|
|
public decimal ExchangeRate { get; set; }
|
|
public decimal PaymentUSD { get; set; }
|
|
public decimal PaymentCNY { get; set; }
|
|
|
|
public int ShowTypeOrder { get; set; }
|
|
public int ShowCodeOrder { get; set; }
|
|
|
|
public Guid UpdateUserId { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|