修改一版

This commit is contained in:
he
2022-06-08 16:16:36 +08:00
parent 9c634f8a61
commit 5c4485a3f0
4 changed files with 62 additions and 6 deletions
@@ -87,6 +87,25 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 创建人
/// </summary>
public Guid CreateUserId { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool IsEnable { get; set; }
/// <summary>
/// 是否勾选
/// </summary>
public bool IsCheck { get; set; }
/// <summary>
/// 是否来自于系统数据
/// </summary>
public bool IsFromSystemData {
get {
return this.SystemClinicalDataSetId == null ? false : true;
}
}
}
public class ClinicalDataInDto