GlobalUsings 清理实体层
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-20 09:20:04 +08:00
parent 0a1ce59670
commit 32931e155c
187 changed files with 7126 additions and 7323 deletions
+12 -18
View File
@@ -1,26 +1,20 @@
using IRaCIS.Core.Domain.Share;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models;
[Comment("受试者访视 - QC质疑对话")]
[Table("QCChallengeDialog")]
public class QCChallengeDialog : BaseAddAuditEntity
namespace IRaCIS.Core.Domain.Models
{
#region
[JsonIgnore]
public QCChallenge QCChallenge { get; set; }
#endregion
public class QCChallengeDialog : BaseAddAuditEntity
{
#region
[JsonIgnore]
public QCChallenge QCChallenge { get; set; }
#endregion
public Guid QCChallengeId { get; set; }
public string TalkContent { get; set; } = string.Empty;
public Guid SubjectVisitId { get; set; }
public Guid QCChallengeId { get; set; }
[StringLength(500)]
public string TalkContent { get; set; } = null!;
public Guid SubjectVisitId { get; set; }
public UserTypeEnum UserTypeEnum { get; set; }
public UserTypeEnum UserTypeEnum { get; set; }
}
}