优化数据库表
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-19 16:40:17 +08:00
parent 4e7ce826c8
commit b98df9dae8
23 changed files with 876 additions and 971 deletions
+20 -12
View File
@@ -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; }
}