23 lines
658 B
C#
23 lines
658 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目 - 项目文档签署记录")]
|
|
[Table("TrialDocConfirmedUser")]
|
|
public class TrialDocConfirmedUser : BaseAddDeleteAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("ConfirmUserId")]
|
|
public UserRole 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; }
|
|
|
|
[StringLength(1000)]
|
|
public string SignText { get; set; } = string.Empty;
|
|
}
|