CostCalculationItem/IRaCIS.Core.Domain.Share/StudyStatus.cs

39 lines
798 B
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.

namespace IRaCIS.Core.Domain.Share
{
public enum StudyStatus
{
Uploaded = 5,//已上传
QAing = 10,//QA中-->(QA完成就到 需要重传就到)
NeedReupload = 15,//需要重传15
Abandon = 16,//废弃16
QAReuploaded = 20,//QA没通过后重新上传完成
QAFinish = 25,//QA完成25合格
QAFInishNotPass = 26, //QA结束不合格
Anonymize = 28,//匿名化完成
Distributed = 30,//已分配读片任务
//Distributed2 = 32,
Reading = 40,//都片中,未提交读片报告之前
NeedAd = 45,
AdDistributed = 50,
AdReading = 60,
Review = 80,//待审核
Archived = 100,//流程结束,归档锁库
}
}