This commit is contained in:
2022-04-28 11:50:39 +08:00
parent 329b028e37
commit d974c32050
5 changed files with 16 additions and 10 deletions
+5 -3
View File
@@ -3,7 +3,7 @@ using System;
namespace IRaCIS.Core.Domain.Models
{
public class QCChallengeDialog : Entity, IAuditAddWithUserName
public class QCChallengeDialog : Entity, IAuditAdd
{
public QCChallenge QCChallenge { get; set; }
public string TalkContent { get; set; } = string.Empty;
@@ -13,9 +13,11 @@ namespace IRaCIS.Core.Domain.Models
public Guid SubjectVisitId { get; set; }
//public bool HasReply { get; set; } = false;
public string CreateUser { get; set; }
public User CreateUser { get; set; }
public DateTime CreateTime { get; set; } = DateTime.Now;
public Guid CreateUserId { get; set; } = Guid.Empty;