精简实体修改
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-22 18:10:29 +08:00
parent f0943ca9a4
commit 4319982be9
159 changed files with 520 additions and 2225 deletions
+1 -3
View File
@@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("EnrollDetail")]
public partial class EnrollDetail : Entity, IAuditAdd
public partial class EnrollDetail : BaseAuditAddEntity
{
[JsonIgnore]
public virtual TrialStatusDetail TrialDetail { get; set; }
@@ -15,9 +15,7 @@ namespace IRaCIS.Core.Domain.Models
public EnrollStatus EnrollStatus { get; set; }
public Guid? EnrollId { get; set; }
public string Memo { get; set; } = string.Empty;
public Guid CreateUserId { get; set; }
public int OptUserType { get; set; }
public DateTime CreateTime { get; set; }
public Guid TrialDetailId { get; set; }