38 lines
502 B
C#
38 lines
502 B
C#
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,
|
||
|
||
USAndCN=2,
|
||
}
|
||
} |