27 lines
675 B
C#
27 lines
675 B
C#
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[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;
|
|
|
|
/// <summary>
|
|
/// ÊÇ·ñÓРΪÐÂÏîÄ¿
|
|
/// </summary>
|
|
public bool? IsNewTrial { get; set; } = false;
|
|
|
|
|
|
}
|
|
}
|