16 lines
327 B
C#
16 lines
327 B
C#
namespace IRaCIS.Core.Domain.Share
|
|
{
|
|
public enum WorkloadStatus
|
|
{
|
|
ToBeAllocated=0,//待分配
|
|
|
|
Distributed = 30,//已分配
|
|
|
|
Reading = 40,//都片中,未提交读片报告之前
|
|
|
|
ReviewFinish = 80,//读片完成
|
|
|
|
//Archived=100,//流程结束,归档锁库
|
|
}
|
|
}
|