修改接口

This commit is contained in:
2022-12-09 15:24:02 +08:00
parent 14b429a2a8
commit d88ab99adb
8 changed files with 47 additions and 28 deletions
-1
View File
@@ -16,7 +16,6 @@ namespace IRaCIS.Core.Domain.Models
public List<SystemDocConfirmedUser> SystemDocConfirmedList { get; set; }
public List<UserDoctor> UserDoctors { get; set; } = new List<UserDoctor>();
public List<UserRole> UserRoleList { get; set; } = new List<UserRole>();
public List<TrialUser> UserTrials { get; set; } = new List<TrialUser>();
public List<VisitTask> VisitTaskList { get; set; }
-15
View File
@@ -1,15 +0,0 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("UserRole")]
public partial class UserRole : Entity
{
public Role Role { get; set; }
public User User { get; set; }
public Guid UserId { get; set; }
public Guid RoleId { get; set; }
}
}