29 lines
729 B
C#
29 lines
729 B
C#
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///SystemDocConfirmedUser
|
|
///</summary>
|
|
[Table("SystemDocConfirmedUser")]
|
|
public class SystemDocConfirmedUser : BaseAddDeleteAuditEntity
|
|
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public SystemDocument SystemDocument { get; set; }
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("ConfirmUserId")]
|
|
public User ConfirmUser { get; set; }
|
|
#endregion
|
|
public Guid SystemDocumentId { get; set; }
|
|
|
|
public DateTime? ConfirmTime { get; set; }
|
|
public Guid ConfirmUserId { get; set; }
|
|
|
|
public DateTime? SignFirstViewTime { get; set; }
|
|
|
|
public string SignText { get; set; } = string.Empty;
|
|
}
|
|
|
|
}
|