This commit is contained in:
@@ -240,6 +240,29 @@ namespace IRaCIS.Core.Domain.Models
|
||||
public List<SubjectCriteriaEvaluationVisitFilter> SubjectCriteriaEvaluationVisitFilterList { get; set; }
|
||||
public ReadingStatusEnum ReadingStatus { get; set; }
|
||||
|
||||
public string VisitImageZipPath { get; set; } = string.Empty;
|
||||
|
||||
public PackState PackState { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// 影像下载打包状态
|
||||
/// </summary>
|
||||
public enum PackState
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 待打包
|
||||
/// </summary>
|
||||
WaitPack = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 打包中
|
||||
/// </summary>
|
||||
Packing = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 打包完成
|
||||
/// </summary>
|
||||
Packed = 2
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user