2025-11-27 08:49:09 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
|
|
|
|
|
|
namespace Erp.Platform.Entities;
|
|
|
|
|
|
2025-12-11 13:59:44 +00:00
|
|
|
public class Risk : FullAuditedEntity<string>, IMultiTenant
|
2025-11-27 08:49:09 +00:00
|
|
|
{
|
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
|
|
|
|
|
public ICollection<ProjectPhase> ProjectPhases { get; set; }
|
2025-11-27 21:00:02 +00:00
|
|
|
public ICollection<ProjectRisk> ProjectRisks { get; set; }
|
2025-12-11 13:59:44 +00:00
|
|
|
|
|
|
|
|
public Risk(string id)
|
|
|
|
|
{
|
|
|
|
|
Id = id;
|
|
|
|
|
}
|
2025-11-27 08:49:09 +00:00
|
|
|
}
|
|
|
|
|
|