修改上传监控
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-12 14:00:50 +08:00
parent 4048be622f
commit d600862fb0
13 changed files with 105 additions and 50 deletions
@@ -151,16 +151,21 @@ namespace IRaCIS.Core.Test.CodeFirstTest.MSSQL
#region
#endregion
#region ef知道外键关系
public class Project : BaseFullAuditEntity
{
}
public class ProjectUser: BaseFullAuditEntity
public class ProjectUser : BaseFullAuditEntity
{
//外键
public Guid ProjectId { get; set; }
public Project Project { get; set; }
}
#endregion
}