@@ -1,22 +1,30 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("机构 - CRO")]
|
||||
[Table("CROCompany")]
|
||||
public class CRO : BaseFullAuditEntity
|
||||
{
|
||||
[Table("CROCompany")]
|
||||
public partial class CRO : BaseFullAuditEntity
|
||||
{
|
||||
#region µ¼º½ÊôÐÔ
|
||||
#region 导航属性
|
||||
|
||||
#endregion
|
||||
public string CROName { get; set; } = string.Empty;
|
||||
public string CRONameCN { get; set; } = string.Empty;
|
||||
public string CROCode { get; set; } = string.Empty;
|
||||
#endregion
|
||||
|
||||
public string CROCode { get; set; } = null!;
|
||||
|
||||
public bool IsTrialLevel { get; set; }
|
||||
[StringLength(1000)]
|
||||
public string CROName { get; set; } = null!;
|
||||
|
||||
[StringLength(1000)]
|
||||
public string CRONameCN { get; set; } = null!;
|
||||
|
||||
public Guid? TrialId { get; set; }
|
||||
}
|
||||
[Comment(" 是否是项目级别")]
|
||||
public bool IsTrialLevel { get; set; }
|
||||
|
||||
public Guid? TrialId { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user