48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-01-05 18:02:45
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Comment("项目 - 项目文档签署记录")]
|
|
[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; }
|
|
|
|
[StringLength(512)]
|
|
public string SignText { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|