30 lines
876 B
C#
30 lines
876 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("TrialPaymentPrice")]
|
|
public partial class TrialPaymentPrice : Entity, IAuditAdd, IAuditUpdate
|
|
{
|
|
public Trial Trial { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
public decimal TrialAdditional { get; set; } = 0;
|
|
|
|
public string SowName { get; set; } = string.Empty;
|
|
public string SowPath { get; set; } = string.Empty;
|
|
public decimal AdjustmentMultiple { get; set; } = 1;
|
|
|
|
|
|
/// <summary>
|
|
/// ÊÇ·ñÓРΪÐÂÏîÄ¿
|
|
/// </summary>
|
|
public bool? IsNewTrial { get; set; } = false;
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public Guid UpdateUserId { get; set; }
|
|
}
|
|
}
|