默认值遗漏
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-09-07 00:46:08 +08:00
parent 6e2a58c3d7
commit 243fae4b19
70 changed files with 323 additions and 325 deletions

View File

@ -46,7 +46,7 @@ namespace IRaCIS.Core.Domain.Models
public bool IsEnable { get; set; }
public string Note { get; set; }
public string Note { get; set; }=string.Empty;
public Guid TrialReadingCriterionId { get; set; }

View File

@ -15,9 +15,9 @@ namespace IRaCIS.Core.Domain.Models
{
public class OSSImageInfo
{
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
public string ImagePath { get; set; }
public string ImagePath { get; set; } = string.Empty;
}
///<summary>
///TaskMedicalReview

View File

@ -26,7 +26,7 @@ namespace IRaCIS.Core.Domain.Models
public bool IsEnable { get; set; }
public string Note { get; set; }
public string Note { get; set; } = string.Empty;
public Guid TrialId { get; set; }

View File

@ -23,7 +23,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid TrialId { get; set; }
public string VirturalSiteCode { get; set; }
public string VirturalSiteCode { get; set; } = string.Empty;

View File

@ -17,8 +17,8 @@ namespace IRaCIS.Core.Domain.BaseModel
public class FailedDomainEvent
{
public Guid Id { get; set; }
public string EventType { get; set; }
public string EventData { get; set; }
public string EventType { get; set; } = string.Empty;
public string EventData { get; set; } = string.Empty;
public DateTime FailedAt { get; set; }
}
}

View File

@ -104,7 +104,7 @@ namespace IRaCIS.Core.Domain.Models
public abstract class BaseAddAuditEntityWithUserName : Entity, IAuditAddWithUserName
{
public string CreateUser { get; set; }
public string CreateUser { get; set; } = string.Empty;
public Guid CreateUserId { get; set; }
public DateTime CreateTime { get; set; }

View File

@ -46,7 +46,7 @@ namespace IRaCIS.Core.Domain.Models
public int ShowOrder { get; set; }
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
public Guid? ParentId { get; set; }

View File

@ -115,7 +115,7 @@ namespace IRaCIS.Core.Domain.Models
public string DataType { get; set; } = String.Empty;
// 后端翻译的类型 对应前端界面 "",Dictionary,Date
public string EnumType { get; set; }
public string EnumType { get; set; } = String.Empty;
@ -163,11 +163,11 @@ namespace IRaCIS.Core.Domain.Models
/// 是否为特殊类型
/// </summary>
public bool IsSpecialType { get; set; }
public string DictionaryKey { get; set; }
public string DictionaryKey { get; set; } = string.Empty;
public bool IsShowByTrialConfig { get; set; }
public string TrialConfigRelyFieldName { get; set; }
public string TrialConfigRelyFieldName { get; set; } = string.Empty;
#endregion
@ -180,7 +180,7 @@ namespace IRaCIS.Core.Domain.Models
{
public bool IsRoute { get; set; }
public string RoutePath { get; set; }
public string RoutePath { get; set; } = string.Empty;
public bool IsHaveParameters { get; set; }

View File

@ -17,11 +17,11 @@ namespace IRaCIS.Core.Domain.Models
{
public string Version { get; set; }
public string Version { get; set; } = string.Empty;
public DateTime? PublishTime { get; set; }
public string UpdateContent { get; set; }
public string UpdateContent { get; set; } = string.Empty;
//0 开发中 ,已发布
public int State { get; set; }

View File

@ -33,7 +33,7 @@ namespace IRaCIS.Core.Domain.Models
public int ShowOrder { get; set; }
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
public Guid? ParentId { get; set; }

View File

@ -21,7 +21,7 @@ namespace IRaCIS.Core.Domain.Models
public Doctor Doctor { get; set; }
public Guid DoctorId { get; set; }
public string Type { get; set; }
public string Type { get; set; } = string.Empty;
public bool IsOfficial { get; set; } = false;
public string Path { get; set; } = string.Empty;
public string Code { get; set; } = string.Empty;

View File

@ -58,7 +58,7 @@ namespace IRaCIS.Core.Domain.Models
[StringLength(100)]
public string Password { get; set; }
public string Password { get; set; } = string.Empty;
[StringLength(50)]

View File

@ -23,12 +23,12 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 文件名称
/// </summary>
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
/// <summary>
/// 文件路径
/// </summary>
public string FilePath { get; set; }
public string FilePath { get; set; } = string.Empty;
/// <summary>
/// 标准类型
@ -43,7 +43,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
public string Remark { get; set; } = string.Empty;
/// <summary>
/// 文件类型
@ -59,7 +59,7 @@ namespace IRaCIS.Core.Domain.Models
public string CriterionName { get; set; }
public string CriterionName { get; set; } = string.Empty;
public Guid? TrialReadingCriterionId { get; set; }
public Guid? TrialId { get; set; }

View File

@ -41,7 +41,7 @@ namespace IRaCIS.Core.Domain.Models
public int CreateUserType { get; set; }
[Required]
public string YearMonth { get; set; }
public string YearMonth { get; set; } = string.Empty;
public bool IsLock { get; set; } = false;

View File

@ -22,7 +22,7 @@ namespace IRaCIS.Core.Domain.Models
public Dictionary Phase { get; set; }
[StringLength(512)]
public string EvaluationContent { get; set; }
public string EvaluationContent { get; set; } = string.Empty;
public int VisitReadingCount { get; set; }

View File

@ -84,8 +84,8 @@ namespace IRaCIS.Core.Domain.Models
public string Description { get; set; } = string.Empty;
public string AttachName { get; set; }
public string AttachNameCN { get; set; }
public string AttachName { get; set; } = string.Empty;
public string AttachNameCN { get; set; } = string.Empty;
public string EmailHtmlContent { get; set; } = string.Empty;

View File

@ -10,7 +10,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid ReviewerId { get; set; }
[Required]
public string YearMonth { get; set; }
public string YearMonth { get; set; } = string.Empty;
public bool IsLock { get; set; }
}
}

View File

@ -6,7 +6,7 @@ namespace IRaCIS.Core.Domain.Models
[Table("ExchangeRate")]
public class ExchangeRate : BaseFullAuditEntity
{
public string YearMonth { get; set; }
public string YearMonth { get; set; } = string.Empty;
[Column(TypeName = "decimal(18,2)")]
public decimal Rate { get; set; }

View File

@ -9,7 +9,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid ReviewerId { get; set; }
public DateTime YearMonthDate { get; set; }
public string YearMonth { get; set; }
public string YearMonth { get; set; } = string.Empty;
[Column(TypeName = "decimal(18,2)")]
public decimal AdjustmentUSD { get; set; }

View File

@ -9,14 +9,14 @@ namespace IRaCIS.Core.Domain.Models
{
public Guid PaymentId { get; set; }
public Guid DoctorId { get; set; }
public string YearMonth { get; set; }
public string YearMonth { get; set; } = string.Empty;
public Guid TrialId { get; set; }
[StringLength(50)]
public string TrialCode { get; set; }
public string TrialCode { get; set; } = string.Empty;
[StringLength(50)]
public string PaymentType { get; set; }
public string PaymentType { get; set; } = string.Empty;
public int Count { get; set; }
[Column(TypeName = "decimal(18,2)")]

View File

@ -8,7 +8,7 @@ namespace IRaCIS.Core.Domain.Models
public partial class RankPrice : BaseFullAuditEntity
{
[StringLength(200)]
public string RankName { get; set; }
public string RankName { get; set; } = string.Empty;
[Column(TypeName = "decimal(18,2)")]
public decimal Timepoint { get; set; }

View File

@ -9,16 +9,16 @@ namespace IRaCIS.Core.Domain.Models
{
public Guid DoctorId { get; set; }
[StringLength(200)]
public string DoctorNameInBank { get; set; }
public string DoctorNameInBank { get; set; } = string.Empty;
[StringLength(100)]
public string IDCard { get; set; }
public string IDCard { get; set; } = string.Empty;
[StringLength(100)]
public string BankCardNumber { get; set; }
public string BankCardNumber { get; set; } = string.Empty;
[StringLength(200)]
public string BankName { get; set; }
public string BankName { get; set; } = string.Empty;
public Guid RankId { get; set; }
[Column(TypeName = "decimal(18,2)")]

View File

@ -8,7 +8,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid ReviewerId { get; set; }
public string YearMonth { get; set; }
public string YearMonth { get; set; } = string.Empty;
public bool Training { get; set; } = false;

View File

@ -13,7 +13,7 @@ namespace IRaCIS.Core.Domain.Models
public DateTime ExpireTime { get; set; }
public string Password { get; set; }
public string Password { get; set; } = string.Empty;
}
}

View File

@ -30,12 +30,12 @@ namespace IRaCIS.Core.Domain.Models
public Guid NoneDicomStudyId { get; set; }
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
public string FileType { get; set; }
public string FileType { get; set; } = string.Empty;
public long? FileSize { get; set; }

View File

@ -25,7 +25,7 @@ namespace IRaCIS.Core.Domain.Models
public string TagDescription { get; set; } = String.Empty;
public string TagDescriptionCN { get; set; }
public string TagDescriptionCN { get; set; } = string.Empty;
public string ReplaceValue { get; set; } = String.Empty;

View File

@ -23,7 +23,7 @@ namespace IRaCIS.Core.Domain.Models
public string CalledAE { get; set; } = string.Empty;
public string IP { get; set; }
public string IP { get; set; } = string.Empty;
public int Port { get; set; }
@ -32,7 +32,7 @@ namespace IRaCIS.Core.Domain.Models
public string Modality { get; set; } = string.Empty;
public string Description { get; set; }=string.Empty;
public string Description { get; set; } = string.Empty;
public DateTime? LatestTestTime { get; set; }

View File

@ -11,7 +11,7 @@ namespace IRaCIS.Core.Domain.Models
#endregion
public string CROName { get; set; } = string.Empty;
public string CRONameCN { get; set; } = string.Empty;
public string CROCode { get; set; }
public string CROCode { get; set; } = string.Empty;
public bool IsTrialLevel { get; set; }

View File

@ -18,7 +18,7 @@ namespace IRaCIS.Core.Domain.Models
public string SiteName { get; set; } = string.Empty;
public string SiteNameCN{ get; set; } = string.Empty;
public string AliasName { get; set; } = string.Empty;
public string SiteCode { get; set; }
public string SiteCode { get; set; } = string.Empty;
public int Code { get; set; }
@ -31,7 +31,7 @@ namespace IRaCIS.Core.Domain.Models
public string UniqueCode { get; set; } = string.Empty;
public string Address { get; set; }
public string Address { get; set; } = string.Empty;
public string DirectorName { get; set; } = string.Empty;
public string DirectorPhone { get; set; } = string.Empty;

View File

@ -30,7 +30,7 @@ namespace IRaCIS.Core.Domain.Models
public string NoticeContent { get; set; }
public string NoticeContent { get; set; } = string.Empty;
public SystemNotice_NoticeTypeEnum NoticeTypeEnum { get; set; }
@ -46,9 +46,9 @@ namespace IRaCIS.Core.Domain.Models
public DateTime? EndDate { get; set; }
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public Guid? PublishedUserId { get; set; }

View File

@ -47,7 +47,7 @@ namespace IRaCIS.Core.Domain.Models
public int QuestionType { get; set; }
public string QuestionDescription { get; set; }
public string QuestionDescription { get; set; } = string.Empty;
@ -61,7 +61,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid? TrialId { get; set; }
public string ScreenshotListStr { get; set; }
public string ScreenshotListStr { get; set; } = string.Empty;

View File

@ -27,7 +27,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 密码
/// </summary>
public string PassWord { get; set; }
public string PassWord { get; set; } = string.Empty;

View File

@ -22,9 +22,9 @@ namespace IRaCIS.Core.Domain.Models
#endregion
public UserTypeEnum UserTypeEnum { get; set; }
public string UserTypeName { get; set; }
public string UserTypeName { get; set; } = string.Empty;
public string Description { get; set; }
public string Description { get; set; } = string.Empty;
public int Order { get; set; }
@ -33,7 +33,7 @@ namespace IRaCIS.Core.Domain.Models
public bool IsEnable { get; set; } = true;
public string PermissionStr { get; set; }
public string PermissionStr { get; set; } = string.Empty;

View File

@ -24,9 +24,9 @@ namespace IRaCIS.Core.Domain.Models
public Guid SubjectVisitId { get; set; }
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
public bool? IsVisist { get; set; }

View File

@ -37,7 +37,7 @@ namespace IRaCIS.Core.Domain.Models
public string TypeValue { get; set; } = string.Empty;
public string ParentTriggerValue { get; set; }
public string ParentTriggerValue { get; set; } = string.Empty;
public Guid? ParentId { get; set; }

View File

@ -49,10 +49,10 @@ namespace IRaCIS.Core.Domain.Models
public Guid? ParentId { get; set; }
public string TypeValue { get; set; }
public string TypeValue { get; set; } = string.Empty;
public string ParentTriggerValue { get; set; }
public string ParentTriggerValue { get; set; } = string.Empty;
public int ShowOrder { get; set; }

View File

@ -23,7 +23,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid TrialId { get; set; }
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;
public TrialQCProcess QCProcessEnum { get; set; }

View File

@ -32,7 +32,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid? VisitTaskId { get; set; }
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;
/// <summary>
/// 附加评估答案翻译字典
@ -50,13 +50,13 @@ namespace IRaCIS.Core.Domain.Models
/// 最终结果
/// </summary>
public string FinalAnswer { get; set; }
public string FinalAnswer { get; set; } = string.Empty;
/// <summary>
/// 最终结果翻字典
/// </summary>
public string FinalTranslateDictionaryCode { get; set; }
public string FinalTranslateDictionaryCode { get; set; } = string.Empty;
}

View File

@ -1,10 +1,9 @@
using System;
using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
namespace IRaCIS.Core.Domain.Models
@ -27,7 +26,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 名称
/// </summary>
public string ClinicalDataSetName { get; set; }
public string ClinicalDataSetName { get; set; } = string.Empty;
/// <summary>
/// 是否应用
@ -65,20 +64,20 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 模板文件名称
/// </summary>
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
/// <summary>
/// 文件路径
/// </summary>
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public string CriterionEnumListStr { get; set; }=String.Empty;
public string CriterionEnumListStr { get; set; } = String.Empty;
[NotMapped]
public List<int> CriterionEnumList => CriterionEnumListStr.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t) && int.TryParse(t.Trim(),out var s)).Select(t => int.Parse(t.Trim()) ).ToList();
public List<int> CriterionEnumList => CriterionEnumListStr.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t) && int.TryParse(t.Trim(), out var s)).Select(t => int.Parse(t.Trim())).ToList();
//public List<SystemClinicalDataCriterion> SystemClinicalDataCriterionList { get; set; } = new List<SystemClinicalDataCriterion>();

View File

@ -39,7 +39,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 名称
/// </summary>
public string ClinicalDataSetName { get; set; }
public string ClinicalDataSetName { get; set; }=string.Empty;
/// <summary>
/// 英文名称
@ -87,12 +87,12 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 模板文件名称
/// </summary>
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
/// <summary>
/// 文件路径
/// </summary>
public string Path { get; set; }
public string Path { get; set; } = string.Empty;

View File

@ -24,15 +24,15 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid ReadingClinicalDataId { get; set; }
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
public int Size { get; set; } = 0;
public string Type { get; set; }
public string Type { get; set; } = string.Empty;
}

View File

@ -24,17 +24,17 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid ReadingConsistentClinicalDataId { get; set; }
public string Path { get; set; }
public string Path { get; set; } = string.Empty;
public string FileName { get; set; }
public string FileName { get; set; } = string.Empty;
public int Size { get; set; } = 0;
/// <summary>
/// 文件类型
/// </summary>
public string Type { get; set; }
public string Type { get; set; } = string.Empty;
}

View File

@ -64,7 +64,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 临床问题类型(分组,单选。)
/// </summary>
public string ClinicalQuestionType { get; set; }
public string ClinicalQuestionType { get; set; } = string.Empty;
/// <summary>
/// 问题标识

View File

@ -37,7 +37,7 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid QuestionId { get; set; }
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;
public Guid ClinicalDataTrialSetId { get; set; }

View File

@ -30,7 +30,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid RowId { get; set; }
public string Answer { get; set; }
public string Answer { get; set; }=string.Empty;
public Guid TableQuestionId { get; set; }

View File

@ -33,7 +33,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid VisitTaskId { get; set; }
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;

View File

@ -32,7 +32,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
public string Type { get; set; } = string.Empty;
/// <summary>
/// 父问题触发
@ -42,7 +42,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 问题名称
/// </summary>
public string QuestionName { get; set; }
public string QuestionName { get; set; } = string.Empty;
/// <summary>
/// 语言类型
@ -69,7 +69,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 类型值
/// </summary>
public string TypeValue { get; set; }
public string TypeValue { get; set; } = string.Empty;

View File

@ -25,7 +25,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
public string Type { get; set; } = string.Empty;
/// <summary>
/// 父问题触发值
@ -35,7 +35,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 问题名称
/// </summary>
public string QuestionName { get; set; }
public string QuestionName { get; set; } = string.Empty;
/// <summary>
/// 语言类型
@ -47,7 +47,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 类型值
/// </summary>
public string TypeValue { get; set; }
public string TypeValue { get; set; } = string.Empty;
/// <summary>

View File

@ -29,7 +29,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 分页名称
/// </summary>
public string PageName { get; set; }
public string PageName { get; set; } = string.Empty;
/// <summary>
/// 是否启用

View File

@ -50,7 +50,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 标准
/// </summary>
public string CriterionName { get; set; }
public string CriterionName { get; set; } = string.Empty;
/// <summary>
/// 是否启用

View File

@ -21,7 +21,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid SystemCriterionId { get; set; }
public string Code { get; set; }
public string Code { get; set; } = string.Empty;

View File

@ -24,7 +24,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid TrialCriterionId { get; set; }
public string Code { get; set; }
public string Code { get; set; } = string.Empty;

View File

@ -99,17 +99,17 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
public string Type { get; set; } = string.Empty;
/// <summary>
/// 父问题触发
/// </summary>
public string ParentTriggerValue { get; set; }
public string ParentTriggerValue { get; set; } = string.Empty;
/// <summary>
/// 问题名称
/// </summary>
public string QuestionName { get; set; }
public string QuestionName { get; set; } = string.Empty;
/// <summary>
/// 是否是必须
@ -129,7 +129,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 类型值
/// </summary>
public string TypeValue { get; set; }
public string TypeValue { get; set; } = string.Empty;
/// <summary>
/// 是否启用
@ -145,7 +145,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
public string Remark { get; set; } = string.Empty;
/// <summary>
/// 关联ID
@ -160,7 +160,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 分组
/// </summary>
public string GroupName { get; set; }
public string GroupName { get; set; } = string.Empty;
/// <summary>
/// 图片数量

View File

@ -28,7 +28,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid? InstanceId { get; set; }
public string MeasureData { get; set; }
public string MeasureData { get; set; } = string.Empty;
public int? NumberOfFrames { get; set; }

View File

@ -46,7 +46,7 @@ namespace IRaCIS.Core.Domain.Models
/// 问题答案
/// </summary>
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;
public Guid TrialId { get; set; }

View File

@ -38,12 +38,12 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 结果
/// </summary>
public string EvaluationResult { get; set; }
public string EvaluationResult { get; set; } = string.Empty;
/// <summary>
/// 原因
/// </summary>
public string EvaluationReason { get; set; }
public string EvaluationReason { get; set; } = string.Empty;
/// <summary>

View File

@ -55,7 +55,7 @@ namespace IRaCIS.Core.Domain.Models
public decimal RowIndex { get; set; }
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;
public Guid RowId { get; set; }

View File

@ -70,7 +70,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 模块名称
/// </summary>
public string ModuleName { get; set; }
public string ModuleName { get; set; } = string.Empty;
/// <summary>
/// 是否加急

View File

@ -38,7 +38,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 阅片期名称
/// </summary>
public string ReadingPeriodName { get; set; }
public string ReadingPeriodName { get; set; } = string.Empty;
/// <summary>
/// 阅片范围

View File

@ -44,7 +44,7 @@ namespace IRaCIS.Core.Domain.Models
public bool MetaKey { get; set; } = false;
public string Text { get; set; }
public string Text { get; set; } = string.Empty;
public string Code { get; set; } = string.Empty;

View File

@ -19,7 +19,7 @@ namespace IRaCIS.Core.Domain.Models
#endregion
public string TemplateName { get; set; }
public string TemplateName { get; set; } = string.Empty;
public Guid UserId { get; set; }

View File

@ -277,7 +277,6 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>time
public TrialType TrialType { get; set; }
//public string TempCode { get; set; }
public int PlanSiteCount { get; set; }

View File

@ -23,13 +23,13 @@ namespace IRaCIS.Core.Domain.Models
#endregion
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
public string Name { get; set; }
public string Name { get; set; } = string.Empty;
public string NameCN { get; set; }
public string NameCN { get; set; } = string.Empty;

View File

@ -22,12 +22,12 @@ namespace IRaCIS.Core.Domain.Models
public Guid OptUserId { get; set; }
public string OptUser { get; set; }
public string OptUser { get; set; } = string.Empty;
public DateTime OptTime { get; set; }=DateTime.Now;
public string Note { get; set; }
public string Note { get; set; } = string.Empty;
public string Detail { get; set; }
public string Detail { get; set; } = string.Empty;
}

View File

@ -28,16 +28,16 @@ namespace IRaCIS.Core.Domain.Models
public Guid TrialSiteId { get; set; }
public string CallingAE { get; set; }
public string CallingAE { get; set; } = string.Empty;
public string IP { get; set; }
public string IP { get; set; } = string.Empty;
public string Port { get; set; }
public string Port { get; set; } = string.Empty;
public string Description { get; set; }
public string Description { get; set; } = string.Empty;

View File

@ -33,7 +33,7 @@ namespace IRaCIS.Core.Domain.Models
public DateTime? JoinTime { get; set; }
public string RejectReason { get; set; }
public string RejectReason { get; set; } = string.Empty;

View File

@ -69,7 +69,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid TrialSiteId { get; set; }
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public int? Age { get; set; }

View File

@ -33,15 +33,15 @@ namespace IRaCIS.Core.Domain.Models
public bool IsDicomStudy { get; set; }
public string Modality { get; set; }
public string Modality { get; set; } = string.Empty;
public bool IsOverWindowNowNotOverWindow { get; set; }
public DateTime? StudyTime { get; set; }
public string HistoryWindow { get; set; }
public string HistoryWindow { get; set; } = string.Empty;
public string NowWindow { get; set; }
public string NowWindow { get; set; } = string.Empty;
public Guid VisitPlanInfluenceStatId { get; set; }

View File

@ -53,27 +53,27 @@ namespace IRaCIS.Core.Domain.Share
{
public int Port { get; set; }
public string Host { get; set; }
public string Host { get; set; } = string.Empty;
public string FromEmail { get; set; }
public string FromEmail { get; set; } = string.Empty;
public string FromName { get; set; }
public string FromName { get; set; } = string.Empty;
public string AuthorizationCode { get; set; }
public string AuthorizationCode { get; set; } = string.Empty;
public string SiteUrl { get; set; }
public string SiteUrl { get; set; } = string.Empty;
public string OrganizationName { get; set; }
public string OrganizationNameCN { get; set; }
public string OrganizationName { get; set; } = string.Empty;
public string OrganizationNameCN { get; set; } = string.Empty;
public string CompanyName { get; set; }
public string CompanyName { get; set; } = string.Empty;
public string CompanyNameCN { get; set; }
public string CompanyNameCN { get; set; } = string.Empty;
public string CompanyShortName { get; set; }
public string CompanyShortName { get; set; } = string.Empty;
public string CompanyShortNameCN { get; set; }
public string CompanyShortNameCN { get; set; } = string.Empty;
}
@ -82,7 +82,7 @@ namespace IRaCIS.Core.Domain.Share
{
public int Port { get; set; }
public string IP { get; set; }
public string IP { get; set; }=string.Empty;
}