20 lines
581 B
C#
20 lines
581 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Table("TrialDocConfirmedUser")]
|
|
public class TrialDocConfirmedUser : BaseAddDeleteAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("ConfirmUserId")]
|
|
public User User { get; set; }
|
|
[JsonIgnore]
|
|
public TrialDocument TrialDocument { get; set; }
|
|
#endregion
|
|
public Guid TrialDocumentId { get; set; }
|
|
public DateTime? ConfirmTime { get; set; }
|
|
public Guid ConfirmUserId { get; set; }
|
|
public DateTime? SignFirstViewTime { get; set; }
|
|
public string SignText { get; set; } = string.Empty;
|
|
}
|