Test.EIImageViewer
parent
626b83850b
commit
e6056623f8
|
@ -146,6 +146,27 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
/// 器官类型
|
/// 器官类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public OrganType OrganType { get; set; }
|
public OrganType OrganType { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 部位 英文
|
||||||
|
/// </summary>
|
||||||
|
public string PartEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TULOC 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULOCEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 位置 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULATEN { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class GetTrialSelectOrganListInDto
|
public class GetTrialSelectOrganListInDto
|
||||||
|
@ -230,6 +251,25 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IsLymph IsLymphNodes { get; set; }
|
public IsLymph IsLymphNodes { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 部位 英文
|
||||||
|
/// </summary>
|
||||||
|
public string PartEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TULOC 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULOCEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 位置 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULATEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///<summary>OrganInfoQuery 列表查询参数模型</summary>
|
///<summary>OrganInfoQuery 列表查询参数模型</summary>
|
||||||
|
@ -290,6 +330,27 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
|
|
||||||
public DateTime CreateTime { get; set; }
|
public DateTime CreateTime { get; set; }
|
||||||
public Guid CreateUserId { get; set; }
|
public Guid CreateUserId { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 部位 英文
|
||||||
|
/// </summary>
|
||||||
|
public string PartEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TULOC 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULOCEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 位置 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULATEN { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -268,6 +268,9 @@ namespace IRaCIS.Core.Application.Service
|
||||||
IsCanEditPosition=data.IsCanEditPosition,
|
IsCanEditPosition=data.IsCanEditPosition,
|
||||||
IsEnable = trialData.IsEnable,
|
IsEnable = trialData.IsEnable,
|
||||||
OrganType = data.OrganType,
|
OrganType = data.OrganType,
|
||||||
|
PartEN=data.PartEN,
|
||||||
|
TULATEN=data.TULATEN,
|
||||||
|
TULOCEN=data.TULOCEN,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -21,17 +21,33 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// 部位
|
/// 部位
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Part { get; set; }
|
public string Part { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// TULOC
|
/// 部位 英文
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
public string PartEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TULOC
|
||||||
|
/// </summary>
|
||||||
public string TULOC { get; set; }
|
public string TULOC { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 位置
|
/// TULOC 英文
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
public string TULOCEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 位置
|
||||||
|
/// </summary>
|
||||||
public string TULAT { get; set; }
|
public string TULAT { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 位置 英文
|
||||||
|
/// </summary>
|
||||||
|
public string TULATEN { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 备注
|
/// 备注
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue