23 lines
616 B
C#
23 lines
616 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("医生计费 - 项目支付配置")]
|
|
[Table("TrialPaymentPrice")]
|
|
public partial class TrialPaymentPrice : BaseFullAuditEntity
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
|
|
public Trial Trial { get; set; }
|
|
|
|
[DecimalPrecision(18, 2)]
|
|
public decimal TrialAdditional { get; set; } = 0;
|
|
|
|
public string SowName { get; set; } = string.Empty;
|
|
public string SowPath { get; set; } = string.Empty;
|
|
|
|
[DecimalPrecision(18, 2)]
|
|
public decimal AdjustmentMultiple { get; set; } = 1;
|
|
|
|
[Comment("是否有 为新项目")]
|
|
public bool? IsNewTrial { get; set; } = false;
|
|
}
|