irc-netcore-api/IRaCIS.Core.Domain.Share/Trial/TrialExpedited.cs

88 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.Collections.Generic;
namespace IRaCIS.Core.Domain.Share
{
public enum TrialExpedited
{
All = -1,
None = 0,
ExpeditedIn24H = 1,
ExpeditedIn48H = 2
}
public enum TrialType
{
//正式项目
OfficialTrial = 1,
NoneOfficial = 0,
Training = 2
}
public enum AttendedReviewerType
{
//0全部中国医生 1美国医生 2既有中国医生也有美国医生
CN = 0,
US = 1,
EU = 2,
Other = 3
}
public class TrialExtraConfig
{
#region MyRegion
//QC质控
public bool IsSupportQCDownloadImage { get; set; } = false;
#endregion
#region 中心调研
public List<string> NotShowFieldList { get; set; } = new List<string>();
public List<SiteSurveyModifyFiled> ModifyFiledList { get; set; } = new List<SiteSurveyModifyFiled>();
#endregion
}
public class SiteSurveyModifyFiled
{
public string NeedModifyFiled { get; set; }
public string ReplaceContent { get; set; }
public string ReplaceContentCN { get; set; }
}
public enum DeclarationType
{
Other = 3,
US = 1,
CN = 0,
EU = 2,
JP = 4
}
}