@@ -7,9 +7,6 @@
|
||||
[JsonIgnore]
|
||||
public List<UserTypeMenu> UserTypeMenuList { get; set; }
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
//上级菜单
|
||||
public Guid? ParentId { get; set; } = Guid.Empty;
|
||||
|
||||
@@ -50,10 +47,6 @@
|
||||
public string Meta { get; set; } = string.Empty;
|
||||
|
||||
public string Redirect { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public string LanguageMark { get; set; } = string.Empty;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
|
||||
|
||||
|
||||
|
||||
using IRaCIS.Core.Domain.Share.Management;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
@@ -19,9 +15,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||
public List<SystemNoticeUserRead> NoticeUserReadList { get; set; } = new List<SystemNoticeUserRead>();
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
public string NoticeContent { get; set; } = string.Empty;
|
||||
|
||||
public SystemNotice_NoticeTypeEnum NoticeTypeEnum { get; set; }
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
|
||||
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
@@ -15,8 +12,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||
#endregion
|
||||
|
||||
public Guid SystemNoticeId { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
|
||||
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
@@ -18,12 +15,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||
#endregion
|
||||
|
||||
public Guid SystemNoticeId { get; set; }
|
||||
|
||||
|
||||
public Guid UserTypeId { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
|
||||
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
@@ -18,47 +15,23 @@ namespace IRaCIS.Core.Domain.Models
|
||||
public SubjectVisit SubjectVisit { get; set; }
|
||||
[JsonIgnore]
|
||||
public TrialSite TrialSite { get; set; }
|
||||
|
||||
|
||||
[JsonIgnore]
|
||||
public VisitTask VisitTask { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public List<string> FeedBackScreenshotList => JsonConvert.DeserializeObject<List<string>>(ScreenshotListStr);
|
||||
#endregion
|
||||
|
||||
|
||||
public Guid? VisitTaskId { get; set; }
|
||||
|
||||
public Guid? SubjectId { get; set; }
|
||||
|
||||
|
||||
public Guid? SubjectVisitId { get; set; }
|
||||
|
||||
|
||||
public int QuestionType { get; set; }
|
||||
|
||||
public string QuestionDescription { get; set; } = string.Empty;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public int State { get; set; }
|
||||
|
||||
|
||||
public Guid? TrialSiteId { get; set; }
|
||||
|
||||
|
||||
public Guid? TrialId { get; set; }
|
||||
|
||||
public string ScreenshotListStr { get; set; } = string.Empty;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
|
||||
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
@@ -17,23 +14,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||
public User OptUser { get; set; }
|
||||
#endregion
|
||||
public string IP { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public string LoginFaildName { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public UserOptType OptType { get; set; }
|
||||
|
||||
|
||||
public string LoginPassword { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public Guid? LoginUserId { get; set; }
|
||||
|
||||
public Guid? OptUserId { get; set; }
|
||||
|
||||
|
||||
|
||||
public string IPRegion { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
|
||||
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
@@ -22,10 +19,5 @@ namespace IRaCIS.Core.Domain.Models
|
||||
/// 密码
|
||||
/// </summary>
|
||||
public string PassWord { get; set; } = string.Empty;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -4,8 +4,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
public class UserType : Entity
|
||||
{
|
||||
|
||||
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public List<UserTypeMenu> UserTypeMenuList { get; set; }
|
||||
@@ -29,13 +27,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||
public string UserTypeShortName { get; set; } = string.Empty;
|
||||
|
||||
public bool IsEnable { get; set; } = true;
|
||||
|
||||
|
||||
public string PermissionStr { get; set; } = string.Empty;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
|
||||
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
@@ -18,15 +15,8 @@ namespace IRaCIS.Core.Domain.Models
|
||||
[ForeignKey("UserTypeId")]
|
||||
public UserType UserType { get; set; }
|
||||
#endregion
|
||||
|
||||
|
||||
public Guid UserTypeId { get; set; }
|
||||
|
||||
|
||||
public Guid DictionaryId { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -14,9 +14,5 @@ namespace IRaCIS.Core.Domain.Models
|
||||
|
||||
public Guid UserTypeId { get; set; }
|
||||
public Guid MenuId { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user